diff --git a/Makefile b/Makefile
index 1cecee621..3cfe664be 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
@@ -35,24 +35,26 @@ 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/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}
@@ -82,20 +84,13 @@ ${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}
-${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'
@@ -111,12 +106,24 @@ ${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'
+ @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}
+
${n_sentinel} : package.json
npm install
touch ${n_sentinel}
@@ -124,13 +131,13 @@ ${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:
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/README.md b/README.md
index 9f06a4614..98a9559c8 100644
--- a/README.md
+++ b/README.md
@@ -43,4 +43,4 @@ To contribute, please make a fork, and in your fork branch off from master to so

-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.
+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
diff --git a/build/3dmark-parse.js b/build/3dmark-parse.js
index 80589d5e1..c39853d5e 100644
--- 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 b5c74906c..68e65066b 100644
--- a/build/combine-util.js
+++ b/build/combine-util.js
@@ -85,23 +85,76 @@ const combineUtil = {
hints.type = hints.type.toLowerCase();
}
+
+
const series = [
+ // Intel Arc
+ {
+ nameTest: /^(\(R\).)?Arc(\(TM\))?.A[0-9]{3}(.Graphics)?$/i,
+ brand: 'intel',
+ type: 'gpu',
+ parser: () => {
+ return hints.cleanName.replace('(R)-','').replace('(TM)','').replace('-Graphics','');
+ },
+ // Intel(R) Arc(TM) A770 Graphics
+ },
// RX
{
- nameTest: /^R[579X]-\d\d\d(?!.*[Ll]aptop)/,
+ nameTest: /(\(TM\)-)?(Pro.)?RX-(\(TM\)-)?\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)?$`)
- );
+ if(hints.cleanName.includes("Radeon")){
+ return hints.cleanName;
}
+ return `Radeon-${hints.cleanName}`;
+ },
+ },
+ // RTX / GTX
+ {
+ 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: () => {
+ 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: () => {
+ 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
@@ -116,6 +169,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,
@@ -126,7 +192,7 @@ const combineUtil = {
},
// HD
{
- nameTest: /HD-.*\d{4}(-|$)/,
+ nameTest: /^(Radeon.)?HD-.*\d{4}(-|$)/,
brand: 'amd',
type: 'gpu',
parser: () => {
@@ -163,9 +229,18 @@ 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)/,
+ nameTest: /^(Pentium|Core|Xeon|Celeron|Atom|core)/,
brand: 'intel',
type: 'cpu',
parser: () => {
diff --git a/build/geekbench-parse.js b/build/geekbench-parse.js
index b06ddddfa..2c7e0054c 100644
--- a/build/geekbench-parse.js
+++ b/build/geekbench-parse.js
@@ -3,20 +3,26 @@ 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);
-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 +33,62 @@ 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, '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())
+}
+
+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, '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).concat(
+ gpuParse2(gpuPath2)
+ )
+ )
+);
diff --git a/build/intel-config.js b/build/intel-config.js
deleted file mode 100644
index 22bb87bc1..000000000
--- 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 0172fd6d9..000000000
--- 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);
diff --git a/build/passmark-parse.js b/build/passmark-parse.js
new file mode 100644
index 000000000..d74d3780f
--- /dev/null
+++ b/build/passmark-parse.js
@@ -0,0 +1,53 @@
+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(',',''));
+ 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);
+util.writeJSON(outPath,
+ (
+ parse(gpuPath, 'gpu', 'Graphics')
+ )
+);
diff --git a/specs/.gitignore b/specs/.gitignore
new file mode 100644
index 000000000..04ecdf159
--- /dev/null
+++ b/specs/.gitignore
@@ -0,0 +1,2 @@
+MISSINGCPUS.yaml
+MISSINGCPUS/*
\ 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 000000000..9fef96b22
--- /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: 16-28 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-CONSOLE/AMD/GCN-1.0/AeroBox-GPU.yaml b/specs/GPUs-CONSOLE/AMD/GCN-1.0/AeroBox-GPU.yaml
new file mode 100644
index 000000000..f08f0de18
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/GCN-1.0/AeroBox-GPU.yaml
@@ -0,0 +1,34 @@
+name: AeroBox-GPU
+humanName: AeroBox GPU
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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
+ Market: Console
diff --git a/specs/GPUs-CONSOLE/AMD/GCN-1.0/Xbox-One-GPU.yaml b/specs/GPUs-CONSOLE/AMD/GCN-1.0/Xbox-One-GPU.yaml
new file mode 100644
index 000000000..178c12d36
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/GCN-1.0/Xbox-One-GPU.yaml
@@ -0,0 +1,33 @@
+name: Xbox-One-GPU
+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'
+ Vulkan Support: '1.1'
+ 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 GiB
+ 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
+ Market: Console
diff --git a/specs/GPUs-CONSOLE/AMD/GCN-1.0/Xbox-One-S-GPU.yaml b/specs/GPUs-CONSOLE/AMD/GCN-1.0/Xbox-One-S-GPU.yaml
new file mode 100644
index 000000000..8b471bd8d
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/GCN-1.0/Xbox-One-S-GPU.yaml
@@ -0,0 +1,33 @@
+name: Xbox-One-S-GPU
+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'
+ Vulkan Support: '1.1'
+ 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 GiB
+ 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
+ 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 000000000..2e106fda6
--- /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: 16-28 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-CONSOLE/AMD/GCN-2.0/Playstation-4-GPU.yaml b/specs/GPUs-CONSOLE/AMD/GCN-2.0/Playstation-4-GPU.yaml
new file mode 100644
index 000000000..a554c492b
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/GCN-2.0/Playstation-4-GPU.yaml
@@ -0,0 +1,33 @@
+name: Playstation-4-GPU
+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*'
+ Vulkan Support: '1.1'
+ 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 GiB
+ 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
+ Market: Console
diff --git a/specs/GPUs-CONSOLE/AMD/GCN-2.0/Playstation-4-Pro-GPU.yaml b/specs/GPUs-CONSOLE/AMD/GCN-2.0/Playstation-4-Pro-GPU.yaml
new file mode 100644
index 000000000..7c4c16f8e
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/GCN-2.0/Playstation-4-Pro-GPU.yaml
@@ -0,0 +1,32 @@
+name: Playstation-4-Pro-GPU
+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'
+ 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 GiB
+ 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
+ Market: Console
diff --git a/specs/GPUs-CONSOLE/AMD/GCN-2.0/Playstation-4-Slim-GPU.yaml b/specs/GPUs-CONSOLE/AMD/GCN-2.0/Playstation-4-Slim-GPU.yaml
new file mode 100644
index 000000000..12ae6939a
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/GCN-2.0/Playstation-4-Slim-GPU.yaml
@@ -0,0 +1,33 @@
+name: Playstation-4-Slim-GPU
+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*'
+ Vulkan Support: '1.1'
+ 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 GiB
+ 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
+ Market: Console
diff --git a/specs/GPUs-CONSOLE/AMD/GCN-2.0/Xbox-One-X-GPU.yaml b/specs/GPUs-CONSOLE/AMD/GCN-2.0/Xbox-One-X-GPU.yaml
new file mode 100644
index 000000000..86df1b696
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/GCN-2.0/Xbox-One-X-GPU.yaml
@@ -0,0 +1,32 @@
+name: Xbox-One-X-GPU
+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'
+ Vulkan Support: '1.1'
+ 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 GiB
+ 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
+ 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 000000000..606639a7a
--- /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-CONSOLE/AMD/GCN-5.0/Atari-VCS-400-GPU.yaml b/specs/GPUs-CONSOLE/AMD/GCN-5.0/Atari-VCS-400-GPU.yaml
new file mode 100644
index 000000000..a54f014e9
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/GCN-5.0/Atari-VCS-400-GPU.yaml
@@ -0,0 +1,34 @@
+name: Atari-VCS-400-GPU
+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'
+ 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 GiB
+ 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
+ Market: Console
diff --git a/specs/GPUs-CONSOLE/AMD/GCN-5.0/Atari-VCS-800-GPU.yaml b/specs/GPUs-CONSOLE/AMD/GCN-5.0/Atari-VCS-800-GPU.yaml
new file mode 100644
index 000000000..0e38f4aa9
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/GCN-5.0/Atari-VCS-800-GPU.yaml
@@ -0,0 +1,34 @@
+name: Atari-VCS-800-GPU
+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'
+ 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 GiB
+ 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
+ Market: Console
diff --git a/specs/GPUs-CONSOLE/AMD/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml b/specs/GPUs-CONSOLE/AMD/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml
new file mode 100644
index 000000000..e97a9cd88
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/GCN-5.0/Zhongshan-Subor-Z+-GPU.yaml
@@ -0,0 +1,31 @@
+name: Zhongshan-Subor-Z+-GPU
+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'
+ Vulkan Support: '1.2'
+ 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 GiB
+ 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
+ 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 000000000..b18819aec
--- /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: 6-7 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-CONSOLE/AMD/RDNA-2.0/Playstation-5-GPU.yaml b/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Playstation-5-GPU.yaml
new file mode 100644
index 000000000..bf4d3e95a
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Playstation-5-GPU.yaml
@@ -0,0 +1,35 @@
+name: Playstation-5-GPU
+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'
+ 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 GiB
+ 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
+ Market: Console
diff --git a/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Steam-Deck-GPU.yaml b/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Steam-Deck-GPU.yaml
new file mode 100644
index 000000000..f7f871daf
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Steam-Deck-GPU.yaml
@@ -0,0 +1,36 @@
+name: Steam-Deck-GPU
+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'
+ 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 GiB
+ 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
+ Market: Console
diff --git a/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Steam-Deck-OLED-GPU.yaml b/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Steam-Deck-OLED-GPU.yaml
new file mode 100644
index 000000000..8b8d1e68c
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Steam-Deck-OLED-GPU.yaml
@@ -0,0 +1,35 @@
+name: Steam-Deck-OLED-GPU
+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'
+ 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 GiB
+ 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
+ Market: Console
diff --git a/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Xbox-Series-S-GPU.yaml b/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Xbox-Series-S-GPU.yaml
new file mode 100644
index 000000000..ce32b4a8c
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Xbox-Series-S-GPU.yaml
@@ -0,0 +1,33 @@
+name: Xbox-Series-S-GPU
+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'
+ Vulkan Support: '1.2'
+ 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 GiB
+ 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
+ Market: Console
diff --git a/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Xbox-Series-X-GPU.yaml b/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Xbox-Series-X-GPU.yaml
new file mode 100644
index 000000000..3f75ff102
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/RDNA-2.0/Xbox-Series-X-GPU.yaml
@@ -0,0 +1,33 @@
+name: Xbox-Series-X-GPU
+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'
+ Vulkan Support: '1.2'
+ 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 GiB
+ 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
+ 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 000000000..c541237c9
--- /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: 4 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-CONSOLE/AMD/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml b/specs/GPUs-CONSOLE/AMD/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml
new file mode 100644
index 000000000..c579a8595
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/RDNA-3.0/ROG-Ally-Extreme-GPU.yaml
@@ -0,0 +1,36 @@
+name: ROG-Ally-Extreme-GPU
+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'
+ 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 GiB
+ 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
+ Market: Console
diff --git a/specs/GPUs-CONSOLE/AMD/RDNA-3.0/ROG-Ally-GPU.yaml b/specs/GPUs-CONSOLE/AMD/RDNA-3.0/ROG-Ally-GPU.yaml
new file mode 100644
index 000000000..7ff47933a
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/RDNA-3.0/ROG-Ally-GPU.yaml
@@ -0,0 +1,36 @@
+name: ROG-Ally-GPU
+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'
+ 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 GiB
+ 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
+ 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 000000000..030b8dd22
--- /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: 40 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-CONSOLE/AMD/TeraScale-2/Wii-U-GPU.yaml b/specs/GPUs-CONSOLE/AMD/TeraScale-2/Wii-U-GPU.yaml
new file mode 100644
index 000000000..991a938d7
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/TeraScale-2/Wii-U-GPU.yaml
@@ -0,0 +1,31 @@
+name: Wii-U-GPU
+humanName: Wii U GPU
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: TeraScale 2
+ Lithography: 40 nm
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market: Console
diff --git a/specs/GPUs-CONSOLE/AMD/TeraScale.yaml b/specs/GPUs-CONSOLE/AMD/TeraScale.yaml
new file mode 100644
index 000000000..c95bffaad
--- /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: 45-80 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-CONSOLE/AMD/TeraScale/Xbox-360-E-GPU.yaml b/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-E-GPU.yaml
new file mode 100644
index 000000000..dfcf21452
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-E-GPU.yaml
@@ -0,0 +1,33 @@
+name: Xbox-360-E-GPU
+humanName: Xbox 360 E GPU
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market: Console
diff --git a/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-GPU-65nm.yaml b/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-GPU-65nm.yaml
new file mode 100644
index 000000000..28c890919
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-GPU-65nm.yaml
@@ -0,0 +1,33 @@
+name: Xbox-360-GPU-65nm
+humanName: Xbox 360 GPU 65nm
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market: Console
diff --git a/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-GPU-80nm.yaml b/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-GPU-80nm.yaml
new file mode 100644
index 000000000..e5e2f4ce6
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-GPU-80nm.yaml
@@ -0,0 +1,33 @@
+name: Xbox-360-GPU-80nm
+humanName: Xbox 360 GPU 80nm
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market: Console
diff --git a/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-GPU-90nm.yaml b/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-GPU-90nm.yaml
new file mode 100644
index 000000000..a2f3d130a
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-GPU-90nm.yaml
@@ -0,0 +1,33 @@
+name: Xbox-360-GPU-90nm
+humanName: Xbox 360 GPU 90nm
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market: Console
diff --git a/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-S-GPU.yaml b/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-S-GPU.yaml
new file mode 100644
index 000000000..00bf290b1
--- /dev/null
+++ b/specs/GPUs-CONSOLE/AMD/TeraScale/Xbox-360-S-GPU.yaml
@@ -0,0 +1,33 @@
+name: Xbox-360-S-GPU
+humanName: Xbox 360 S GPU
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market: Console
diff --git a/specs/GPUs-CONSOLE/ATI/Rage-5.yaml b/specs/GPUs-CONSOLE/ATI/Rage-5.yaml
new file mode 100644
index 000000000..0093f3bea
--- /dev/null
+++ b/specs/GPUs-CONSOLE/ATI/Rage-5.yaml
@@ -0,0 +1,15 @@
+name: Rage-5-Console
+humanName: Rage 5
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 180 nm
+ DirectX Support: '6.0+'
+ Vulkan Support: 'N/A'
+ Release Date: '2000-08-24'
+ Manufacturer: ATI
+sections:
+ - header: WHOLE RANGE
+ members:
+ - GameCube-GPU
diff --git a/specs/GPUs-CONSOLE/ATI/Rage-5/GameCube-GPU.yaml b/specs/GPUs-CONSOLE/ATI/Rage-5/GameCube-GPU.yaml
new file mode 100644
index 000000000..ccc3bd9b0
--- /dev/null
+++ b/specs/GPUs-CONSOLE/ATI/Rage-5/GameCube-GPU.yaml
@@ -0,0 +1,32 @@
+name: GameCube-GPU
+humanName: GameCube GPU
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 162 MHz
+ VRAM Frequency: 162 MHz
+ VRAM Bandwidth: 1.296 GB/s
+ VRAM Capacity: 16 MiB
+ VRAM Type: SDR
+ 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
+ Outputs: No outputs
+ Length: 150 mm
+ Width: 161 mm
+ Height: 110 mm
+ Market: Console
+ Pixel Shaders: 4
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 000000000..c21d85d43
--- /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: 90 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-CONSOLE/ATI/Ultra-Threaded-SE/Wii-GPU.yaml b/specs/GPUs-CONSOLE/ATI/Ultra-Threaded-SE/Wii-GPU.yaml
new file mode 100644
index 000000000..6dd21c4b9
--- /dev/null
+++ b/specs/GPUs-CONSOLE/ATI/Ultra-Threaded-SE/Wii-GPU.yaml
@@ -0,0 +1,31 @@
+name: Wii-GPU
+humanName: Wii GPU
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ Architecture: Ultra-Threaded SE
+ Lithography: 90 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ Outputs: No outputs
+ Length: 157 mm
+ Width: 197 mm
+ Height: 60 mm
+ Market: Console
+ Pixel Shaders: 4
diff --git a/specs/GPUs-CONSOLE/GPUS-CONSOLE-AMD.yaml b/specs/GPUs-CONSOLE/GPUS-CONSOLE-AMD.yaml
new file mode 100644
index 000000000..b47be5f53
--- /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 000000000..cb44af4f0
--- /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 000000000..fa54cf274
--- /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 000000000..087ae2ed1
--- /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 000000000..1c7b2002a
--- /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: 90-28 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-CONSOLE/Nvidia/Curie/Playstation-3-GPU-28nm.yaml b/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-28nm.yaml
new file mode 100644
index 000000000..2dfe380c4
--- /dev/null
+++ b/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-28nm.yaml
@@ -0,0 +1,32 @@
+name: Playstation-3-GPU-28nm
+humanName: Playstation 3 GPU 28nm
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Curie
+ Lithography: 28 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 21 W
+ Outputs: 1x HDMI 1.3
+ Length: 290 mm
+ 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
new file mode 100644
index 000000000..5c93c7800
--- /dev/null
+++ b/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-40nm.yaml
@@ -0,0 +1,32 @@
+name: Playstation-3-GPU-40nm
+humanName: Playstation 3 GPU 40nm
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Curie
+ Lithography: 40 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 35 W
+ Outputs: 1x HDMI 1.3
+ Length: 290 mm
+ 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
new file mode 100644
index 000000000..2d05da458
--- /dev/null
+++ b/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-65nm.yaml
@@ -0,0 +1,32 @@
+name: Playstation-3-GPU-65nm
+humanName: Playstation 3 GPU 65nm
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Curie
+ Lithography: 65 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 58 W
+ Outputs: 1x HDMI 1.3
+ Length: 325 mm
+ 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
new file mode 100644
index 000000000..d96808efb
--- /dev/null
+++ b/specs/GPUs-CONSOLE/Nvidia/Curie/Playstation-3-GPU-90nm.yaml
@@ -0,0 +1,32 @@
+name: Playstation-3-GPU-90nm
+humanName: Playstation 3 GPU 90nm
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Curie
+ Lithography: 90 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 80 W
+ Outputs: 1x HDMI 1.3
+ Length: 325 mm
+ Width: 98 mm
+ Height: 274 mm
+ Market: Console
+ Pixel Shaders: 24
diff --git a/specs/GPUs-CONSOLE/Nvidia/Kelvin.yaml b/specs/GPUs-CONSOLE/Nvidia/Kelvin.yaml
new file mode 100644
index 000000000..09b235336
--- /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: 150 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-CONSOLE/Nvidia/Kelvin/Xbox-GPU.yaml b/specs/GPUs-CONSOLE/Nvidia/Kelvin/Xbox-GPU.yaml
new file mode 100644
index 000000000..a22b195a5
--- /dev/null
+++ b/specs/GPUs-CONSOLE/Nvidia/Kelvin/Xbox-GPU.yaml
@@ -0,0 +1,33 @@
+name: Xbox-GPU
+humanName: Xbox GPU
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 233 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: No outputs
+ Length: 320 mm
+ Width: 100 mm
+ Height: 260 mm
+ Market: Console
+ Pixel Shaders: 4
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 000000000..4703eb0ea
--- /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: 16-20 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-CONSOLE/Nvidia/Maxwell-2.0/Switch-GPU-16nm.yaml b/specs/GPUs-CONSOLE/Nvidia/Maxwell-2.0/Switch-GPU-16nm.yaml
new file mode 100644
index 000000000..79ce6ce66
--- /dev/null
+++ b/specs/GPUs-CONSOLE/Nvidia/Maxwell-2.0/Switch-GPU-16nm.yaml
@@ -0,0 +1,35 @@
+name: Switch-GPU-16nm
+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'
+ 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 GiB
+ 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
+ Market: Console
diff --git a/specs/GPUs-CONSOLE/Nvidia/Maxwell-2.0/Switch-GPU-20nm.yaml b/specs/GPUs-CONSOLE/Nvidia/Maxwell-2.0/Switch-GPU-20nm.yaml
new file mode 100644
index 000000000..3a6f3a617
--- /dev/null
+++ b/specs/GPUs-CONSOLE/Nvidia/Maxwell-2.0/Switch-GPU-20nm.yaml
@@ -0,0 +1,35 @@
+name: Switch-GPU-20nm
+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'
+ 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 GiB
+ 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
+ Market: Console
diff --git a/specs/GPUs-CONSUMER.yaml b/specs/GPUs-CONSUMER.yaml
deleted file mode 100644
index 0c31aa23d..000000000
--- a/specs/GPUs-CONSUMER.yaml
+++ /dev/null
@@ -1,23 +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
diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable.yaml
new file mode 100644
index 000000000..cef10627f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable.yaml
@@ -0,0 +1,31 @@
+name: Voodoo-Scalable
+humanName: Voodoo Scalable
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 250 - 180 nm
+ DirectX Support: '6.0'
+ Vulkan Support: 'N/A'
+ Release Date: '2000-06-22'
+ Manufacturer: 3dfx
+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/3dfx/Voodoo-Scalable/Spectre-1000.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-1000.yaml
new file mode 100644
index 000000000..ed3bf1098
--- /dev/null
+++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-1000.yaml
@@ -0,0 +1,32 @@
+name: Spectre-1000
+humanName: Spectre 1000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: 3dfx
+ Vendor: 3dfx
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: 1x Molex
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-2000.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-2000.yaml
new file mode 100644
index 000000000..abcbf24c0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-2000.yaml
@@ -0,0 +1,34 @@
+name: Spectre-2000
+humanName: Spectre 2000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: 3dfx
+ Vendor: 3dfx
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-3000.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-3000.yaml
new file mode 100644
index 000000000..cf17dfe84
--- /dev/null
+++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Spectre-3000.yaml
@@ -0,0 +1,34 @@
+name: Spectre-3000
+humanName: Spectre 3000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: 3dfx
+ Vendor: 3dfx
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..86f6a7db2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4000-AGP.yaml
@@ -0,0 +1,33 @@
+name: Voodoo4-2-4000-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ TDP: 15 W
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..8c6578b9a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-AGP.yaml
@@ -0,0 +1,35 @@
+name: Voodoo4-2-4200-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 15 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..90cd6ca08
--- /dev/null
+++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-16-MB.yaml
@@ -0,0 +1,35 @@
+name: Voodoo4-2-4200-PCI-16-MB
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 15 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..f1a7082b6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4200-PCI-32-MB.yaml
@@ -0,0 +1,35 @@
+name: Voodoo4-2-4200-PCI-32-MB
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 15 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..0958f4926
--- /dev/null
+++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-2-4800-AGP.yaml
@@ -0,0 +1,33 @@
+name: Voodoo4-2-4800-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ TDP: 15 W
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4000-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4000-AGP.yaml
new file mode 100644
index 000000000..3c89f4e81
--- /dev/null
+++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4000-AGP.yaml
@@ -0,0 +1,32 @@
+name: Voodoo4-4000-AGP
+humanName: Voodoo4 4000 AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: 3dfx
+ Vendor: 3dfx
+ 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'
+ GPU Base Frequency: 166 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 16 MiB
+ VRAM Type: SDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-AGP.yaml
new file mode 100644
index 000000000..03ba9be76
--- /dev/null
+++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-AGP.yaml
@@ -0,0 +1,33 @@
+name: Voodoo4-4500-AGP
+humanName: Voodoo4 4500 AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: 3dfx
+ Vendor: 3dfx
+ 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'
+ GPU Base Frequency: 166 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ TDP: 15 W
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-PCI.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-PCI.yaml
new file mode 100644
index 000000000..ebcf56aa3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4500-PCI.yaml
@@ -0,0 +1,33 @@
+name: Voodoo4-4500-PCI
+humanName: Voodoo4 4500 PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: 3dfx
+ Vendor: 3dfx
+ 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'
+ GPU Base Frequency: 166 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ TDP: 15 W
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4800-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4800-AGP.yaml
new file mode 100644
index 000000000..331d04b76
--- /dev/null
+++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo4-4800-AGP.yaml
@@ -0,0 +1,33 @@
+name: Voodoo4-4800-AGP
+humanName: Voodoo4 4800 AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: 3dfx
+ Vendor: 3dfx
+ 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'
+ GPU Base Frequency: 166 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: SDR
+ 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
+ TDP: 15 W
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-AGP.yaml
new file mode 100644
index 000000000..a0fe69d9e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-AGP.yaml
@@ -0,0 +1,33 @@
+name: Voodoo5-5000-AGP
+humanName: Voodoo5 5000 AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: 3dfx
+ Vendor: 3dfx
+ 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'
+ GPU Base Frequency: 166 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 16 MiB
+ VRAM Type: SDR
+ 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
+ TDP: 30 W
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: 1x Molex
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-PCI.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-PCI.yaml
new file mode 100644
index 000000000..b10fe0176
--- /dev/null
+++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5000-PCI.yaml
@@ -0,0 +1,33 @@
+name: Voodoo5-5000-PCI
+humanName: Voodoo5 5000 PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: 3dfx
+ Vendor: 3dfx
+ 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'
+ GPU Base Frequency: 166 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 16 MiB
+ VRAM Type: SDR
+ 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
+ TDP: 30 W
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: 1x Molex
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-AGP.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-AGP.yaml
new file mode 100644
index 000000000..b882b7111
--- /dev/null
+++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-AGP.yaml
@@ -0,0 +1,33 @@
+name: Voodoo5-5500-AGP
+humanName: Voodoo5 5500 AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: 3dfx
+ Vendor: 3dfx
+ 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'
+ GPU Base Frequency: 166 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ TDP: 30 W
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: 1x Molex
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-PCI.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-PCI.yaml
new file mode 100644
index 000000000..16b13a437
--- /dev/null
+++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-5500-PCI.yaml
@@ -0,0 +1,33 @@
+name: Voodoo5-5500-PCI
+humanName: Voodoo5 5500 PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: 3dfx
+ Vendor: 3dfx
+ 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'
+ GPU Base Frequency: 166 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ TDP: 30 W
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: 1x Molex
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-6000.yaml b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-6000.yaml
new file mode 100644
index 000000000..d97de39a9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/3dfx/Voodoo-Scalable/Voodoo5-6000.yaml
@@ -0,0 +1,33 @@
+name: Voodoo5-6000
+humanName: Voodoo5 6000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: 3dfx
+ Vendor: 3dfx
+ 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'
+ GPU Base Frequency: 166 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ TDP: 60 W
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0.yaml
new file mode 100644
index 000000000..bb7bf358c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0.yaml
@@ -0,0 +1,187 @@
+name: GCN-1.0
+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: 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
+ - FirePro-D700
+ - FirePro-M3100
+ - FirePro-M4000
+ - FirePro-M4100
+ - FirePro-M4150
+ - FirePro-M4170
+ - FirePro-M5100
+ - FirePro-M6000
+ - 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
+ - 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-E8860
+ - 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-330-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
+ - 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
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D300.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D300.yaml
new file mode 100644
index 000000000..1212cd431
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D300.yaml
@@ -0,0 +1,33 @@
+name: FirePro-D300
+humanName: FirePro D300
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 850 MHz
+ VRAM Frequency: 1270 MHz
+ VRAM Bandwidth: 162.6 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/GCN-1.0/FirePro-D500.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D500.yaml
new file mode 100644
index 000000000..0b65e7482
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D500.yaml
@@ -0,0 +1,35 @@
+name: FirePro-D500
+humanName: FirePro D500
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 725 MHz
+ VRAM Frequency: 1270 MHz
+ VRAM Bandwidth: 243.8 GB/s
+ VRAM Capacity: 3 GiB
+ 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/AMD/GCN-1.0/FirePro-D700.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D700.yaml
new file mode 100644
index 000000000..5531b81ed
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-D700.yaml
@@ -0,0 +1,35 @@
+name: FirePro-D700
+humanName: FirePro D700
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 850 MHz
+ VRAM Frequency: 1370 MHz
+ VRAM Bandwidth: 263.0 GB/s
+ VRAM Capacity: 6 GiB
+ 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/AMD/GCN-1.0/FirePro-M3100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M3100.yaml
new file mode 100644
index 000000000..3865e8693
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M3100.yaml
@@ -0,0 +1,31 @@
+name: FirePro-M3100
+humanName: FirePro M3100
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 MiB
+ 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/AMD/GCN-1.0/FirePro-M4000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4000.yaml
new file mode 100644
index 000000000..7e3323540
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4000.yaml
@@ -0,0 +1,33 @@
+name: FirePro-M4000
+humanName: FirePro M4000
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 675 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/AMD/GCN-1.0/FirePro-M4100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4100.yaml
new file mode 100644
index 000000000..492045f4d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4100.yaml
@@ -0,0 +1,32 @@
+name: FirePro-M4100
+humanName: FirePro M4100
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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: 670 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/GCN-1.0/FirePro-M4150.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4150.yaml
new file mode 100644
index 000000000..58d8e7dbf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4150.yaml
@@ -0,0 +1,31 @@
+name: FirePro-M4150
+humanName: FirePro M4150
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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: 715 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/AMD/GCN-1.0/FirePro-M4170.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4170.yaml
new file mode 100644
index 000000000..87dc58b25
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M4170.yaml
@@ -0,0 +1,33 @@
+name: FirePro-M4170
+humanName: FirePro M4170
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 MiB
+ 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/AMD/GCN-1.0/FirePro-M5100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M5100.yaml
new file mode 100644
index 000000000..ca2769ac9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M5100.yaml
@@ -0,0 +1,33 @@
+name: FirePro-M5100
+humanName: FirePro M5100
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-1.0/FirePro-M6000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M6000.yaml
new file mode 100644
index 000000000..df0ad91ae
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-M6000.yaml
@@ -0,0 +1,33 @@
+name: FirePro-M6000
+humanName: FirePro M6000
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 800 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/GCN-1.0/FirePro-W2100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W2100.yaml
new file mode 100644
index 000000000..00dc1c273
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W2100.yaml
@@ -0,0 +1,35 @@
+name: FirePro-W2100
+humanName: FirePro W2100
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-1.0/FirePro-W4000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4000.yaml
new file mode 100644
index 000000000..f69317e66
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4000.yaml
@@ -0,0 +1,37 @@
+name: FirePro-W4000
+humanName: FirePro W4000
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 825 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 102.4 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/GCN-1.0/FirePro-W4100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4100.yaml
new file mode 100644
index 000000000..6c205543d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4100.yaml
@@ -0,0 +1,35 @@
+name: FirePro-W4100
+humanName: FirePro W4100
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 630 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/GCN-1.0/FirePro-W4130M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4130M.yaml
new file mode 100644
index 000000000..7d954eab1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4130M.yaml
@@ -0,0 +1,32 @@
+name: FirePro-W4130M
+humanName: FirePro W4130M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 MiB
+ 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/AMD/GCN-1.0/FirePro-W4150M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4150M.yaml
new file mode 100644
index 000000000..d189098e4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4150M.yaml
@@ -0,0 +1,32 @@
+name: FirePro-W4150M
+humanName: FirePro W4150M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 MiB
+ 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/AMD/GCN-1.0/FirePro-W4170M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4170M.yaml
new file mode 100644
index 000000000..fdf5827bd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4170M.yaml
@@ -0,0 +1,34 @@
+name: FirePro-W4170M
+humanName: FirePro W4170M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-1.0/FirePro-W4190M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4190M.yaml
new file mode 100644
index 000000000..6fcba5482
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W4190M.yaml
@@ -0,0 +1,33 @@
+name: FirePro-W4190M
+humanName: FirePro W4190M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-1.0/FirePro-W5000-DVI.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000-DVI.yaml
new file mode 100644
index 000000000..f2cb6429b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000-DVI.yaml
@@ -0,0 +1,35 @@
+name: FirePro-W5000-DVI
+humanName: FirePro W5000 DVI
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 825 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 102.4 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/GCN-1.0/FirePro-W5000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000.yaml
new file mode 100644
index 000000000..f79deb783
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5000.yaml
@@ -0,0 +1,37 @@
+name: FirePro-W5000
+humanName: FirePro W5000
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 825 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 102.4 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/GCN-1.0/FirePro-W5130M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5130M.yaml
new file mode 100644
index 000000000..635c83575
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5130M.yaml
@@ -0,0 +1,32 @@
+name: FirePro-W5130M
+humanName: FirePro W5130M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-1.0/FirePro-W5170M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5170M.yaml
new file mode 100644
index 000000000..612d0a310
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W5170M.yaml
@@ -0,0 +1,34 @@
+name: FirePro-W5170M
+humanName: FirePro W5170M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-1.0/FirePro-W600.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W600.yaml
new file mode 100644
index 000000000..3552c77d0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W600.yaml
@@ -0,0 +1,36 @@
+name: FirePro-W600
+humanName: FirePro W600
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 750 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/GCN-1.0/FirePro-W7000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W7000.yaml
new file mode 100644
index 000000000..4322152fe
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W7000.yaml
@@ -0,0 +1,35 @@
+name: FirePro-W7000
+humanName: FirePro W7000
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 950 MHz
+ VRAM Frequency: 1200 MHz
+ VRAM Bandwidth: 153.6 GB/s
+ VRAM Capacity: 4 GiB
+ 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/AMD/GCN-1.0/FirePro-W8000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W8000.yaml
new file mode 100644
index 000000000..bb0d7b955
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W8000.yaml
@@ -0,0 +1,37 @@
+name: FirePro-W8000
+humanName: FirePro W8000
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 900 MHz
+ VRAM Frequency: 1375 MHz
+ VRAM Bandwidth: 176.0 GB/s
+ VRAM Capacity: 4 GiB
+ 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/AMD/GCN-1.0/FirePro-W9000-X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000-X2.yaml
new file mode 100644
index 000000000..d85d20f56
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000-X2.yaml
@@ -0,0 +1,38 @@
+name: FirePro-W9000-X2
+humanName: FirePro W9000 X2
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-1.0/FirePro-W9000.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000.yaml
new file mode 100644
index 000000000..ecc0cdf49
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/FirePro-W9000.yaml
@@ -0,0 +1,37 @@
+name: FirePro-W9000
+humanName: FirePro W9000
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 975 MHz
+ VRAM Frequency: 1375 MHz
+ VRAM Bandwidth: 264.0 GB/s
+ VRAM Capacity: 6 GiB
+ 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/AMD/GCN-1.0/Radeon-520-Mobile-DDR3.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-Mobile-DDR3.yaml
new file mode 100644
index 000000000..6f25ac4b3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-Mobile-DDR3.yaml
@@ -0,0 +1,34 @@
+name: Radeon-520-Mobile-DDR3
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..004ffe09b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-Mobile-GDDR5.yaml
@@ -0,0 +1,34 @@
+name: Radeon-520-Mobile-GDDR5
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..33be58529
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-520-OEM.yaml
@@ -0,0 +1,32 @@
+name: Radeon-520-OEM
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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/AMD/GCN-1.0/Radeon-610-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-610-Mobile.yaml
new file mode 100644
index 000000000..87eed0a27
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-610-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Radeon-610-Mobile
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-E8860.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-E8860.yaml
new file mode 100644
index 000000000..09a2893e0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-E8860.yaml
@@ -0,0 +1,35 @@
+name: Radeon-E8860
+humanName: Radeon E8860
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..bee1a1a86
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7730.yaml
@@ -0,0 +1,37 @@
+name: Radeon-HD-7730
+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'
+ Vulkan Support: '1.2.170'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..7de6c39dd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7730M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-7730M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..898eff24f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7750.yaml
@@ -0,0 +1,37 @@
+name: Radeon-HD-7750
+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'
+ Vulkan Support: '1.2.170'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..cad4833ad
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7750M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-7750M
+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'
+ 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
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..7531f7949
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7770-GHz-Edition.yaml
@@ -0,0 +1,37 @@
+name: Radeon-HD-7770-GHz-Edition
+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'
+ Vulkan Support: '1.2.170'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..e568da8e6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7770M.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-7770M
+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'
+ Vulkan Support: '1.2.170'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..6a40af6af
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7850.yaml
@@ -0,0 +1,37 @@
+name: Radeon-HD-7850
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..6db20e31d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7850M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-7850M
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..ff886c445
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870-GHz-Edition.yaml
@@ -0,0 +1,37 @@
+name: Radeon-HD-7870-GHz-Edition
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..00237160f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870-XT.yaml
@@ -0,0 +1,38 @@
+name: Radeon-HD-7870-XT
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..4322cf996
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7870M.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-7870M
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..62c0aa690
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Boost.yaml
@@ -0,0 +1,40 @@
+name: Radeon-HD-7950-Boost
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..57021875f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Mac-Edition.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-7950-Mac-Edition
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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/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
new file mode 100644
index 000000000..ee1246d19
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Monica-BIOS-1.yaml
@@ -0,0 +1,38 @@
+name: Radeon-HD-7950-Monica-BIOS-1
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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.4a
+ - 2x mini-DisplayPort 1.2
+ Power Connectors: 1x 6-pin + 1x 8-pin
+ Length: 267 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..74b7e9fb0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950-Monica-BIOS-2.yaml
@@ -0,0 +1,38 @@
+name: Radeon-HD-7950-Monica-BIOS-2
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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.4a
+ - 2x mini-DisplayPort 1.2
+ Power Connectors: 1x 6-pin + 1x 8-pin
+ Length: 267 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..3cf7b6a47
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950.yaml
@@ -0,0 +1,39 @@
+name: Radeon-HD-7950
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..8a2359852
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7950M.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-7950M
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..abcb2038f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970-GHz-Edition.yaml
@@ -0,0 +1,40 @@
+name: Radeon-HD-7970-GHz-Edition
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..fd619ac4a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970-X2.yaml
@@ -0,0 +1,39 @@
+name: Radeon-HD-7970-X2
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..3b090cc69
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970.yaml
@@ -0,0 +1,39 @@
+name: Radeon-HD-7970
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..2d5140e1c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970M-X2.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-7970M-X2
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..9e5aaa5cc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7970M.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-7970M
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..617201461
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-7990.yaml
@@ -0,0 +1,40 @@
+name: Radeon-HD-7990
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..77c059895
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8530M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-8530M
+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'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..0c1fe648a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8550M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-8550M
+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'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..62399ae56
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570-OEM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-8570-OEM
+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'
+ 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 GiB
+ 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/AMD/GCN-1.0/Radeon-HD-8570A.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570A.yaml
new file mode 100644
index 000000000..0466ef2a6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570A.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-8570A
+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'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..33c9c0185
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8570M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-8570M
+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'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..f758bc128
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8590M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-8590M
+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'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..3aec14713
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670-OEM.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-8670-OEM
+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'
+ 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 GiB
+ 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/AMD/GCN-1.0/Radeon-HD-8670A.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670A.yaml
new file mode 100644
index 000000000..ed38f7f1b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670A.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-8670A
+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'
+ Vulkan Support: '1.2.170'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..5a201cbcc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8670M.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-8670M
+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'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..7a6a4df23
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8690M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-8690M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..520433a33
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730-OEM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-8730-OEM
+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'
+ Vulkan Support: '1.2.170'
+ 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 MiB
+ 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/AMD/GCN-1.0/Radeon-HD-8730A.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730A.yaml
new file mode 100644
index 000000000..d56c5fcb4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730A.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-8730A
+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'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..30436a81a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8730M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-8730M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..f8f69184a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8740-OEM.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-8740-OEM
+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'
+ Vulkan Support: '1.2.170'
+ 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 MiB
+ 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/AMD/GCN-1.0/Radeon-HD-8750A.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8750A.yaml
new file mode 100644
index 000000000..e20fc57f8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8750A.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-8750A
+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'
+ Vulkan Support: '1.2.170'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..d1a1290fd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8750M.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-8750M
+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'
+ Vulkan Support: '1.2.170'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..2bf932a73
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8760-OEM.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-8760-OEM
+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'
+ 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
+ VRAM Frequency: 1125 MHz
+ VRAM Bandwidth: 72.00 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/GCN-1.0/Radeon-HD-8770M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8770M.yaml
new file mode 100644
index 000000000..4f9efaea9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8770M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-8770M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..570b65975
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8790M.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-8790M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..f0eb9dec9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8830M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-8830M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..a713c8e27
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8850M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-8850M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..1fa8e7903
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8860-OEM.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-8860-OEM
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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/AMD/GCN-1.0/Radeon-HD-8870-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8870-OEM.yaml
new file mode 100644
index 000000000..a4a3c7eea
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8870-OEM.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-8870-OEM
+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'
+ 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
+ VRAM Frequency: 1200 MHz
+ VRAM Bandwidth: 153.6 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/GCN-1.0/Radeon-HD-8870M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8870M.yaml
new file mode 100644
index 000000000..8dec71975
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8870M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-8870M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..65b9e92c7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8950-OEM.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-8950-OEM
+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'
+ 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 GiB
+ 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/AMD/GCN-1.0/Radeon-HD-8970-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8970-OEM.yaml
new file mode 100644
index 000000000..25c579b80
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8970-OEM.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-8970-OEM
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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/AMD/GCN-1.0/Radeon-HD-8970M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8970M.yaml
new file mode 100644
index 000000000..4589bd8eb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8970M.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-8970M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..c85b2c4f8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-HD-8990-OEM.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-8990-OEM
+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'
+ 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 GiB
+ 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/AMD/GCN-1.0/Radeon-R5-240-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-240-OEM.yaml
new file mode 100644
index 000000000..82e7f29ff
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-240-OEM.yaml
@@ -0,0 +1,35 @@
+name: Radeon-R5-240-OEM
+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'
+ 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 GiB
+ 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/AMD/GCN-1.0/Radeon-R5-330-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-330-OEM.yaml
new file mode 100644
index 000000000..2a864be44
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-330-OEM.yaml
@@ -0,0 +1,32 @@
+name: Radeon-R5-330-OEM
+humanName: Radeon R5 330 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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: 830 MHz
+ GPU Boost Frequency: 855 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 2 GiB
+ 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 UL
+ TDP: 50 W
+ FP32 Compute: 547.2 GFLOPS
+ Slot Width: Single-slot
+ Outputs: No outputs
+ Power Connectors: None
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
new file mode 100644
index 000000000..b30aba187
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-340-OEM.yaml
@@ -0,0 +1,36 @@
+name: Radeon-R5-340-OEM
+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'
+ 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 MiB
+ 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/AMD/GCN-1.0/Radeon-R5-340X-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-340X-OEM.yaml
new file mode 100644
index 000000000..70089ebb3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-340X-OEM.yaml
@@ -0,0 +1,35 @@
+name: Radeon-R5-340X-OEM
+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'
+ 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
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 16.00 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/GCN-1.0/Radeon-R5-430-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-430-OEM.yaml
new file mode 100644
index 000000000..f7d982f6e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-430-OEM.yaml
@@ -0,0 +1,35 @@
+name: Radeon-R5-430-OEM
+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'
+ 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 GiB
+ 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/AMD/GCN-1.0/Radeon-R5-435-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-435-OEM.yaml
new file mode 100644
index 000000000..715591957
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-435-OEM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R5-435-OEM
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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/AMD/GCN-1.0/Radeon-R5-A230.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A230.yaml
new file mode 100644
index 000000000..f6e77b550
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A230.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R5-A230
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..eebb248cc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A240.yaml
@@ -0,0 +1,36 @@
+name: Radeon-R5-A240
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..6feea58a4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A320.yaml
@@ -0,0 +1,32 @@
+name: Radeon-R5-A320
+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'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..a6a1e8966
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A330.yaml
@@ -0,0 +1,31 @@
+name: Radeon-R5-A330
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..0b3ea9448
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-A335.yaml
@@ -0,0 +1,31 @@
+name: Radeon-R5-A335
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..b3d9d495e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M230-Rebrand.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R5-M230-Rebrand
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..a02fc7149
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M230.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R5-M230
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..b1998117d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M240-Rebrand.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R5-M240-Rebrand
+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'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..7e2592104
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M240.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R5-M240
+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'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..c1796ad2d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M320.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R5-M320
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..737dfa32a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M330.yaml
@@ -0,0 +1,35 @@
+name: Radeon-R5-M330
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..3bbaf1f05
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M335.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R5-M335
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..f37934c3b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M420.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R5-M420
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..ccb620999
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M430.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R5-M430
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..9e7cd755e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R5-M435.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R5-M435
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R6-M340DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R6-M340DX.yaml
new file mode 100644
index 000000000..81b18b15e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R6-M340DX.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R6-M340DX
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R6-M435DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R6-M435DX.yaml
new file mode 100644
index 000000000..d07453060
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R6-M435DX.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R6-M435DX
+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'
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..d99d111d2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-240-OEM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R7-240-OEM
+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'
+ 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 GiB
+ 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/AMD/GCN-1.0/Radeon-R7-240.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-240.yaml
new file mode 100644
index 000000000..f0723818f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-240.yaml
@@ -0,0 +1,38 @@
+name: Radeon-R7-240
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..0d76fa5c5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250-OEM.yaml
@@ -0,0 +1,35 @@
+name: Radeon-R7-250-OEM
+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'
+ 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 GiB
+ 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/AMD/GCN-1.0/Radeon-R7-250.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250.yaml
new file mode 100644
index 000000000..f6b04e91f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250.yaml
@@ -0,0 +1,37 @@
+name: Radeon-R7-250
+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'
+ Vulkan Support: '1.2.170'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..0589bdd1c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250E.yaml
@@ -0,0 +1,37 @@
+name: Radeon-R7-250E
+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'
+ Vulkan Support: '1.2.170'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..6925653f9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250X.yaml
@@ -0,0 +1,37 @@
+name: Radeon-R7-250X
+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'
+ Vulkan Support: '1.2.170'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..598675894
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-250XE.yaml
@@ -0,0 +1,36 @@
+name: Radeon-R7-250XE
+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'
+ Vulkan Support: '1.2.170'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..920f3b9bc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-265.yaml
@@ -0,0 +1,38 @@
+name: Radeon-R7-265
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..e0be0dd50
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-265X-OEM.yaml
@@ -0,0 +1,36 @@
+name: Radeon-R7-265X-OEM
+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'
+ 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 GiB
+ 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/AMD/GCN-1.0/Radeon-R7-340-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-340-OEM.yaml
new file mode 100644
index 000000000..dd5bb21e0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-340-OEM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R7-340-OEM
+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'
+ 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 GiB
+ 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/AMD/GCN-1.0/Radeon-R7-350-640SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-640SP.yaml
new file mode 100644
index 000000000..3bb9b565f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-640SP.yaml
@@ -0,0 +1,37 @@
+name: Radeon-R7-350-640SP
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..4b86d46da
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-Fake-Card.yaml
@@ -0,0 +1,35 @@
+name: Radeon-R7-350-Fake-Card
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..506504e66
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350-OEM.yaml
@@ -0,0 +1,35 @@
+name: Radeon-R7-350-OEM
+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'
+ 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 GiB
+ 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/AMD/GCN-1.0/Radeon-R7-350X-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350X-OEM.yaml
new file mode 100644
index 000000000..54aca1ce0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-350X-OEM.yaml
@@ -0,0 +1,35 @@
+name: Radeon-R7-350X-OEM
+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'
+ 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 GiB
+ 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/AMD/GCN-1.0/Radeon-R7-370.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-370.yaml
new file mode 100644
index 000000000..12779a0a2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-370.yaml
@@ -0,0 +1,38 @@
+name: Radeon-R7-370
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..22da7cc08
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-430-OEM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R7-430-OEM
+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'
+ 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 GiB
+ 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/AMD/GCN-1.0/Radeon-R7-435-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-435-OEM.yaml
new file mode 100644
index 000000000..737e42e4a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-435-OEM.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R7-435-OEM
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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/AMD/GCN-1.0/Radeon-R7-450-OEM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-450-OEM.yaml
new file mode 100644
index 000000000..9c4ec9beb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-450-OEM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R7-450-OEM
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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/AMD/GCN-1.0/Radeon-R7-A265.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-A265.yaml
new file mode 100644
index 000000000..81afc67f5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-A265.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R7-A265
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M260DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M260DX.yaml
new file mode 100644
index 000000000..429cb5355
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M260DX.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R7-M260DX
+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'
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..b37f70b9d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M260X.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R7-M260X
+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'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M265DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M265DX.yaml
new file mode 100644
index 000000000..7fca9f83f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M265DX.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R7-M265DX
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M270DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M270DX.yaml
new file mode 100644
index 000000000..7b32f69a1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M270DX.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R7-M270DX
+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'
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..74d5b596e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M340.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R7-M340
+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'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..73bccf036
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M365X.yaml
@@ -0,0 +1,32 @@
+name: Radeon-R7-M365X
+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'
+ Vulkan Support: '1.2.170'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..15ac830ab
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M370.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R7-M370
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..d406fd01b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M380.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R7-M380
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..2aae8affa
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M465.yaml
@@ -0,0 +1,32 @@
+name: Radeon-R7-M465
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..2bd4cecd4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R7-M465X.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R7-M465X
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R8-M350DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R8-M350DX.yaml
new file mode 100644
index 000000000..aa938d719
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R8-M350DX.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R8-M350DX
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R8-M435DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R8-M435DX.yaml
new file mode 100644
index 000000000..b75e1cfd9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R8-M435DX.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R8-M435DX
+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'
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..1b57d8452
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-255-OEM.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R9-255-OEM
+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'
+ 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 GiB
+ 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/AMD/GCN-1.0/Radeon-R9-270-1024SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270-1024SP.yaml
new file mode 100644
index 000000000..887ffb886
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270-1024SP.yaml
@@ -0,0 +1,37 @@
+name: Radeon-R9-270-1024SP
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..e5f983ce6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270.yaml
@@ -0,0 +1,38 @@
+name: Radeon-R9-270
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..774b981f1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-270X.yaml
@@ -0,0 +1,40 @@
+name: Radeon-R9-270X
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..6119ed019
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280.yaml
@@ -0,0 +1,40 @@
+name: Radeon-R9-280
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..b7c1bc8df
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280X.yaml
@@ -0,0 +1,40 @@
+name: Radeon-R9-280X
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..7ef367cdb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-280X2.yaml
@@ -0,0 +1,36 @@
+name: Radeon-R9-280X2
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..818f678c1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370-1024SP.yaml
@@ -0,0 +1,39 @@
+name: Radeon-R9-370-1024SP
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..009bbff2f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370.yaml
@@ -0,0 +1,39 @@
+name: Radeon-R9-370
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..30d83d6c7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-370X.yaml
@@ -0,0 +1,39 @@
+name: Radeon-R9-370X
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..fab0d6667
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-A375.yaml
@@ -0,0 +1,31 @@
+name: Radeon-R9-A375
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..1415e8d90
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M275.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R9-M275
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..f7e3188e1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M275X.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R9-M275X
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..b86d3f522
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M290X-Mac-Edition.yaml
@@ -0,0 +1,35 @@
+name: Radeon-R9-M290X-Mac-Edition
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..a65a0c5c3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M290X.yaml
@@ -0,0 +1,35 @@
+name: Radeon-R9-M290X
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..73de3298d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M360.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R9-M360
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..874dff5b9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M365X.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R9-M365X
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..59185a699
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M370X-Mac-Edition.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R9-M370X-Mac-Edition
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..31ba16e82
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M375.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R9-M375
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..d9b3be5e0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M375X.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R9-M375X
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..c14f67ec0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-1.0/Radeon-R9-M390-Mac-Edition.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R9-M390-Mac-Edition
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0.yaml
new file mode 100644
index 000000000..df91c7449
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0.yaml
@@ -0,0 +1,82 @@
+name: GCN-2.0
+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: 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-W4300
+ - FirePro-W6150M
+ - FirePro-W6170M
+ - FirePro-W8100
+ - FirePro-W9100
+ - FirePro-W5100
+ - header: Mobile
+ members:
+ - Radeon-E8870-PCIe
+ - 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-8240-Mobile-IGP
+ - Radeon-HD-8250-IGP
+ - Radeon-HD-8280-IGP
+ - Radeon-HD-8280-Mobile-IGP
+ - Radeon-HD-8330-Mobile-IGP
+ - Radeon-HD-8400-IGP
+ - Radeon-HD-8400-Mobile-IGP
+ - header: OEM
+ members:
+ - Radeon-HD-8770-OEM
+ - Radeon-R9-260-OEM
+ - Radeon-R9-360-OEM
+ - Radeon-R9-M380-Mac-Edition
+ - Radeon-RX-455-OEM
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-M6100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-M6100.yaml
new file mode 100644
index 000000000..245a96d9d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-M6100.yaml
@@ -0,0 +1,33 @@
+name: FirePro-M6100
+humanName: FirePro M6100
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 1100 MHz
+ VRAM Frequency: 1500 MHz
+ VRAM Bandwidth: 96.00 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/GCN-2.0/FirePro-W4300.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W4300.yaml
new file mode 100644
index 000000000..f970a2456
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W4300.yaml
@@ -0,0 +1,35 @@
+name: FirePro-W4300
+humanName: FirePro W4300
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 930 MHz
+ VRAM Frequency: 1500 MHz
+ VRAM Bandwidth: 96.00 GB/s
+ VRAM Capacity: 4 GiB
+ 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/AMD/GCN-2.0/FirePro-W5100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W5100.yaml
new file mode 100644
index 000000000..9592190fd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W5100.yaml
@@ -0,0 +1,35 @@
+name: FirePro-W5100
+humanName: FirePro W5100
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 930 MHz
+ VRAM Frequency: 1500 MHz
+ VRAM Bandwidth: 96.00 GB/s
+ VRAM Capacity: 4 GiB
+ 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/AMD/GCN-2.0/FirePro-W6150M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6150M.yaml
new file mode 100644
index 000000000..944fb95fd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6150M.yaml
@@ -0,0 +1,33 @@
+name: FirePro-W6150M
+humanName: FirePro W6150M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 1075 MHz
+ VRAM Frequency: 1375 MHz
+ VRAM Bandwidth: 88.00 GB/s
+ VRAM Capacity: 4 GiB
+ 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/AMD/GCN-2.0/FirePro-W6170M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6170M.yaml
new file mode 100644
index 000000000..c39bbbace
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W6170M.yaml
@@ -0,0 +1,33 @@
+name: FirePro-W6170M
+humanName: FirePro W6170M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 1100 MHz
+ VRAM Frequency: 1500 MHz
+ VRAM Bandwidth: 96.00 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/GCN-2.0/FirePro-W8100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W8100.yaml
new file mode 100644
index 000000000..cc62bc82a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W8100.yaml
@@ -0,0 +1,37 @@
+name: FirePro-W8100
+humanName: FirePro W8100
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 824 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 320.0 GB/s
+ VRAM Capacity: 8 GiB
+ 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/AMD/GCN-2.0/FirePro-W9100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W9100.yaml
new file mode 100644
index 000000000..e28454d6a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/FirePro-W9100.yaml
@@ -0,0 +1,37 @@
+name: FirePro-W9100
+humanName: FirePro W9100
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 930 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 320.0 GB/s
+ VRAM Capacity: 16 GiB
+ 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/AMD/GCN-2.0/Radeon-E8870-MXM.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-E8870-MXM.yaml
new file mode 100644
index 000000000..49b84d10a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-E8870-MXM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-E8870-MXM
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..b160ede2a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-E8870-PCIe.yaml
@@ -0,0 +1,34 @@
+name: Radeon-E8870-PCIe
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..9fa7e313b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-7790.yaml
@@ -0,0 +1,37 @@
+name: Radeon-HD-7790
+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'
+ Vulkan Support: '1.2.170'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8180-IGP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8180-IGP.yaml
new file mode 100644
index 000000000..1334b0035
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8180-IGP.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-8180-IGP
+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'
+ Vulkan Support: '1.2.170'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8210-IGP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8210-IGP.yaml
new file mode 100644
index 000000000..8916bad7b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8210-IGP.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-8210-IGP
+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'
+ Vulkan Support: '1.2.170'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8210E.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8210E.yaml
new file mode 100644
index 000000000..4f8c5000b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8210E.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-8210E
+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'
+ Vulkan Support: '1.2.170'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8240-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8240-Mobile-IGP.yaml
new file mode 100644
index 000000000..6a484037a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8240-Mobile-IGP.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-8240-Mobile-IGP
+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'
+ Vulkan Support: '1.2.170'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8250-IGP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8250-IGP.yaml
new file mode 100644
index 000000000..62ea65987
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8250-IGP.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-8250-IGP
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8280-IGP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8280-IGP.yaml
new file mode 100644
index 000000000..16010ee5a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8280-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-8280-IGP
+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'
+ Vulkan Support: '1.2.170'
+ 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
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8280-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8280-Mobile-IGP.yaml
new file mode 100644
index 000000000..70a902312
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8280-Mobile-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-8280-Mobile-IGP
+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'
+ Vulkan Support: '1.2.170'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8280E.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8280E.yaml
new file mode 100644
index 000000000..2d5b7fe58
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8280E.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-8280E
+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'
+ Vulkan Support: '1.2.170'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8330-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8330-Mobile-IGP.yaml
new file mode 100644
index 000000000..c22a3d5d3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8330-Mobile-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-8330-Mobile-IGP
+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'
+ Vulkan Support: '1.2.170'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8330E.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8330E.yaml
new file mode 100644
index 000000000..6e69a5847
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8330E.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-8330E
+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'
+ Vulkan Support: '1.2.170'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8400-IGP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8400-IGP.yaml
new file mode 100644
index 000000000..05e2c262f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8400-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-8400-IGP
+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'
+ Vulkan Support: '1.2.170'
+ 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
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8400-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8400-Mobile-IGP.yaml
new file mode 100644
index 000000000..e24629a2f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8400-Mobile-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-8400-Mobile-IGP
+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'
+ Vulkan Support: '1.2.170'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8400E.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8400E.yaml
new file mode 100644
index 000000000..11695673d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8400E.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-8400E
+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'
+ Vulkan Support: '1.2.170'
+ 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
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..7350f13e2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8770-OEM.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-8770-OEM
+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'
+ Vulkan Support: '1.2.170'
+ 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 MiB
+ 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/AMD/GCN-2.0/Radeon-HD-8950M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8950M.yaml
new file mode 100644
index 000000000..72b15c6b6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-HD-8950M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-8950M
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R1E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R1E-Mobile-Graphics.yaml
new file mode 100644
index 000000000..3a57949b7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R1E-Mobile-Graphics.yaml
@@ -0,0 +1,32 @@
+name: Radeon-R1E-Mobile-Graphics
+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'
+ Vulkan Support: '1.2.170'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R2-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R2-Mobile-Graphics.yaml
new file mode 100644
index 000000000..2f25d51bd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R2-Mobile-Graphics.yaml
@@ -0,0 +1,32 @@
+name: Radeon-R2-Mobile-Graphics
+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'
+ Vulkan Support: '1.2.170'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R2E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R2E-Mobile-Graphics.yaml
new file mode 100644
index 000000000..4a2734d4b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R2E-Mobile-Graphics.yaml
@@ -0,0 +1,32 @@
+name: Radeon-R2E-Mobile-Graphics
+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'
+ Vulkan Support: '1.2.170'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R3-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R3-Mobile-Graphics.yaml
new file mode 100644
index 000000000..2d87ea146
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R3-Mobile-Graphics.yaml
@@ -0,0 +1,32 @@
+name: Radeon-R3-Mobile-Graphics
+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'
+ Vulkan Support: '1.2.170'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R3E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R3E-Mobile-Graphics.yaml
new file mode 100644
index 000000000..aa27e42e9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R3E-Mobile-Graphics.yaml
@@ -0,0 +1,32 @@
+name: Radeon-R3E-Mobile-Graphics
+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'
+ Vulkan Support: '1.2.170'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R4E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R4E-Mobile-Graphics.yaml
new file mode 100644
index 000000000..5e4a7a6fb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R4E-Mobile-Graphics.yaml
@@ -0,0 +1,32 @@
+name: Radeon-R4E-Mobile-Graphics
+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'
+ Vulkan Support: '1.2.170'
+ 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
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..2657f45fb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-260.yaml
@@ -0,0 +1,37 @@
+name: Radeon-R7-260
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..db1daafe5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-260X.yaml
@@ -0,0 +1,37 @@
+name: Radeon-R7-260X
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..75477bcde
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360-896SP.yaml
@@ -0,0 +1,37 @@
+name: Radeon-R7-360-896SP
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..de434ad60
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360.yaml
@@ -0,0 +1,38 @@
+name: Radeon-R7-360
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..51b9c72c2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-360E.yaml
@@ -0,0 +1,36 @@
+name: Radeon-R7-360E
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-Graphics.yaml
new file mode 100644
index 000000000..42eb705fe
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-Graphics.yaml
@@ -0,0 +1,32 @@
+name: Radeon-R7-Graphics
+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'
+ Vulkan Support: '1.2.170'
+ 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
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-Mobile-Graphics.yaml
new file mode 100644
index 000000000..eaee95686
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R7-Mobile-Graphics.yaml
@@ -0,0 +1,32 @@
+name: Radeon-R7-Mobile-Graphics
+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'
+ Vulkan Support: '1.2.170'
+ 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
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..75837967b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-260-OEM.yaml
@@ -0,0 +1,35 @@
+name: Radeon-R9-260-OEM
+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'
+ Vulkan Support: '1.2.170'
+ 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 MiB
+ 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/AMD/GCN-2.0/Radeon-R9-290.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290.yaml
new file mode 100644
index 000000000..a95c705f0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290.yaml
@@ -0,0 +1,39 @@
+name: Radeon-R9-290
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..60f037535
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290X.yaml
@@ -0,0 +1,39 @@
+name: Radeon-R9-290X
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..e45b7c42c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-290X2.yaml
@@ -0,0 +1,36 @@
+name: Radeon-R9-290X2
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..04c4852df
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-295X2.yaml
@@ -0,0 +1,39 @@
+name: Radeon-R9-295X2
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..cff2aaeb4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-360-OEM.yaml
@@ -0,0 +1,37 @@
+name: Radeon-R9-360-OEM
+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'
+ 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 GiB
+ 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/AMD/GCN-2.0/Radeon-R9-390-X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390-X2.yaml
new file mode 100644
index 000000000..a7b03a8fd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390-X2.yaml
@@ -0,0 +1,36 @@
+name: Radeon-R9-390-X2
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..c0959c779
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390.yaml
@@ -0,0 +1,39 @@
+name: Radeon-R9-390
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..54d7d9f91
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-390X.yaml
@@ -0,0 +1,39 @@
+name: Radeon-R9-390X
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..2a1b50a9a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M270X.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R9-M270X
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..1213f2e6f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M280X.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R9-M280X
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..2b4a2be33
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M380-Mac-Edition.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R9-M380-Mac-Edition
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..99c194e84
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M380.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R9-M380
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..ad760123f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M385.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R9-M385
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..54182b57c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M385X.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R9-M385X
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..c922d73ec
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M470.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R9-M470
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..8738cb05d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-R9-M470X.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R9-M470X
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..b5e5b8e62
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-2.0/Radeon-RX-455-OEM.yaml
@@ -0,0 +1,35 @@
+name: Radeon-RX-455-OEM
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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/AMD/GCN-3.0.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0.yaml
new file mode 100644
index 000000000..0a0974cc0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0.yaml
@@ -0,0 +1,67 @@
+name: GCN-3.0
+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: WHOLE RANGE
+ members:
+ - 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-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/AMD/GCN-3.0/FirePro-W7100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7100.yaml
new file mode 100644
index 000000000..8134ba7e9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7100.yaml
@@ -0,0 +1,35 @@
+name: FirePro-W7100
+humanName: FirePro W7100
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 920 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 160.0 GB/s
+ VRAM Capacity: 8 GiB
+ 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/AMD/GCN-3.0/FirePro-W7170M.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7170M.yaml
new file mode 100644
index 000000000..f08d21491
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/FirePro-W7170M.yaml
@@ -0,0 +1,33 @@
+name: FirePro-W7170M
+humanName: FirePro W7170M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 723 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 160.0 GB/s
+ VRAM Capacity: 4 GiB
+ 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/AMD/GCN-3.0/Radeon-530-Mobile-DDR3.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530-Mobile-DDR3.yaml
new file mode 100644
index 000000000..1547f1d03
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530-Mobile-DDR3.yaml
@@ -0,0 +1,35 @@
+name: Radeon-530-Mobile-DDR3
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..48546c546
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530-Mobile-GDDR5.yaml
@@ -0,0 +1,35 @@
+name: Radeon-530-Mobile-GDDR5
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..84383a4b3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-530X-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Radeon-530X-Mobile
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..5aa80b619
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-535-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Radeon-535-Mobile
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..28c4da856
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-620-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Radeon-620-Mobile
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..544ec4d9c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-625-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Radeon-625-Mobile
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..0b8ffeeb8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-625-OEM.yaml
@@ -0,0 +1,32 @@
+name: Radeon-625-OEM
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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/AMD/GCN-3.0/Radeon-E8950.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-E8950.yaml
new file mode 100644
index 000000000..a273811db
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-E8950.yaml
@@ -0,0 +1,35 @@
+name: Radeon-E8950
+humanName: Radeon E8950
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..e3b6b313a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Pro-Duo.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Pro-Duo
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..0ba380c2b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-Pro-SSG.yaml
@@ -0,0 +1,37 @@
+name: Radeon-Pro-SSG
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R4-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R4-Mobile-Graphics.yaml
new file mode 100644
index 000000000..994fb8426
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R4-Mobile-Graphics.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R4-Mobile-Graphics
+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'
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..9c5cc0770
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-A255.yaml
@@ -0,0 +1,32 @@
+name: Radeon-R5-A255
+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'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-Graphics.yaml
new file mode 100644
index 000000000..55bde7fa4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-Graphics.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R5-Graphics
+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'
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..129492723
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M255.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R5-M255
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..f38cd0b39
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M315.yaml
@@ -0,0 +1,32 @@
+name: Radeon-R5-M315
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..03a61f706
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M445.yaml
@@ -0,0 +1,31 @@
+name: Radeon-R5-M445
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..4ee5d04a8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-M465.yaml
@@ -0,0 +1,32 @@
+name: Radeon-R5-M465
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-Mobile-Graphics.yaml
new file mode 100644
index 000000000..d8300e266
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5-Mobile-Graphics.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R5-Mobile-Graphics
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5E-Mobile-Graphics.yaml
new file mode 100644
index 000000000..8a319f723
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R5E-Mobile-Graphics.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R5E-Mobile-Graphics
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R6-M255DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R6-M255DX.yaml
new file mode 100644
index 000000000..fa66c0150
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R6-M255DX.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R6-M255DX
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R6-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R6-Mobile-Graphics.yaml
new file mode 100644
index 000000000..3b8b886d6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R6-Mobile-Graphics.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R6-Mobile-Graphics
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R6E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R6E-Mobile-Graphics.yaml
new file mode 100644
index 000000000..11b7a8c1e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R6E-Mobile-Graphics.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R6E-Mobile-Graphics
+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'
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..5fa36d902
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-A260.yaml
@@ -0,0 +1,32 @@
+name: Radeon-R7-A260
+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'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..bd73c32f0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-A360.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R7-A360
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..2411b6ef6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M260.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R7-M260
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..1cb6c99d0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M265.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R7-M265
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..6b7223b5b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M350.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R7-M350
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..3898f0fcc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M360.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R7-M360
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..ada0e4500
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M440.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R7-M440
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..78795e81b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M445.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R7-M445
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..63459c722
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7-M460.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R7-M460
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7E-Mobile-Graphics.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7E-Mobile-Graphics.yaml
new file mode 100644
index 000000000..7d572941c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R7E-Mobile-Graphics.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R7E-Mobile-Graphics
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R8-M365DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R8-M365DX.yaml
new file mode 100644
index 000000000..3148612bf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R8-M365DX.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R8-M365DX
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R8-M445DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R8-M445DX.yaml
new file mode 100644
index 000000000..1fe8bd235
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R8-M445DX.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R8-M445DX
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R8-M535DX.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R8-M535DX.yaml
new file mode 100644
index 000000000..a6dd013e1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R8-M535DX.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R8-M535DX
+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'
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..3d8a20d3f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-285.yaml
@@ -0,0 +1,39 @@
+name: Radeon-R9-285
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..056c3941f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-285X.yaml
@@ -0,0 +1,36 @@
+name: Radeon-R9-285X
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..45cf1a622
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380-OEM.yaml
@@ -0,0 +1,36 @@
+name: Radeon-R9-380-OEM
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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/AMD/GCN-3.0/Radeon-R9-380.yaml b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380.yaml
new file mode 100644
index 000000000..5626ea07f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380.yaml
@@ -0,0 +1,38 @@
+name: Radeon-R9-380
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..75c1abe83
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-380X.yaml
@@ -0,0 +1,38 @@
+name: Radeon-R9-380X
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..b5c3fd1f6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY-X.yaml
@@ -0,0 +1,37 @@
+name: Radeon-R9-FURY-X
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..a286580e1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY-X2.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R9-FURY-X2
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..430504676
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-FURY.yaml
@@ -0,0 +1,37 @@
+name: Radeon-R9-FURY
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..2322b0eb6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M295X-Mac-Edition.yaml
@@ -0,0 +1,33 @@
+name: Radeon-R9-M295X-Mac-Edition
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..bb5e569a1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M295X.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R9-M295X
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..62c0dbbf5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M390X.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R9-M390X
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..5b69758db
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395-Mac-Edition.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R9-M395-Mac-Edition
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..e04380353
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395X-Mac-Edition.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R9-M395X-Mac-Edition
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..a8f8729a1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M395X.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R9-M395X
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..92c61f2e2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-M485X.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R9-M485X
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..f492fa74b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-3.0/Radeon-R9-Nano.yaml
@@ -0,0 +1,37 @@
+name: Radeon-R9-Nano
+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'
+ Vulkan Support: '1.2.170'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0.yaml
new file mode 100644
index 000000000..75817ae95
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/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'
+ Manufacturer: AMD
+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-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/AMD/GCN-4.0/P30PH.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/P30PH.yaml
new file mode 100644
index 000000000..82d02dae5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/P30PH.yaml
@@ -0,0 +1,35 @@
+name: P30PH
+humanName: P30PH
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..04282a8f1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-540-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Radeon-540-Mobile
+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'
+ Vulkan Support: '1.3'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..56f4d23dc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-540X-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Radeon-540X-Mobile
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550.yaml
new file mode 100644
index 000000000..635e71d22
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550.yaml
@@ -0,0 +1,38 @@
+name: Radeon-550
+humanName: Radeon 550
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..1d1a6f796
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X-640SP.yaml
@@ -0,0 +1,37 @@
+name: Radeon-550X-640SP
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..8db843fea
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Radeon-550X-Mobile
+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'
+ Vulkan Support: '1.3'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X.yaml
new file mode 100644
index 000000000..e9a15e913
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-550X.yaml
@@ -0,0 +1,38 @@
+name: Radeon-550X
+humanName: Radeon 550X
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..41fa37208
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-630-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Radeon-630-Mobile
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..7edb53acb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9171-MCM.yaml
@@ -0,0 +1,35 @@
+name: Radeon-E9171-MCM
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..a2c06a44a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9172-MXM.yaml
@@ -0,0 +1,35 @@
+name: Radeon-E9172-MXM
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..895a3c96c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9173-PCIe.yaml
@@ -0,0 +1,35 @@
+name: Radeon-E9173-PCIe
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..d2a38d516
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9174-MXM.yaml
@@ -0,0 +1,35 @@
+name: Radeon-E9174-MXM
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..79d053e76
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9175-PCIe.yaml
@@ -0,0 +1,35 @@
+name: Radeon-E9175-PCIe
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..0ecbe5428
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9260-MXM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-E9260-MXM
+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'
+ Vulkan Support: '1.3'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..7c982e242
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9260-PCIe.yaml
@@ -0,0 +1,37 @@
+name: Radeon-E9260-PCIe
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..1c83dd7f9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9390-PCIe.yaml
@@ -0,0 +1,35 @@
+name: Radeon-E9390-PCIe
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..71ef60710
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9550-MXM.yaml
@@ -0,0 +1,37 @@
+name: Radeon-E9550-MXM
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: None
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..34e2a05fd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-E9560-PCIe.yaml
@@ -0,0 +1,35 @@
+name: Radeon-E9560-PCIe
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..4b2094332
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-450.yaml
@@ -0,0 +1,32 @@
+name: Radeon-Pro-450
+humanName: Radeon Pro 450
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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: 800 MHz
+ VRAM Frequency: 1270 MHz
+ VRAM Bandwidth: 81.28 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-455.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-455.yaml
new file mode 100644
index 000000000..39c761d6e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-455.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Pro-455
+humanName: Radeon Pro 455
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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: 855 MHz
+ VRAM Frequency: 1270 MHz
+ VRAM Bandwidth: 81.28 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-460.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-460.yaml
new file mode 100644
index 000000000..9a441b2c0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-460.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Pro-460
+humanName: Radeon Pro 460
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-555.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555.yaml
new file mode 100644
index 000000000..9f4b4aa87
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Pro-555
+humanName: Radeon Pro 555
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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: 850 MHz
+ VRAM Frequency: 1275 MHz
+ VRAM Bandwidth: 81.60 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-555X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555X.yaml
new file mode 100644
index 000000000..d831d6175
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-555X.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Pro-555X
+humanName: Radeon Pro 555X
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 907 MHz
+ VRAM Frequency: 1470 MHz
+ VRAM Bandwidth: 94.08 GB/s
+ VRAM Capacity: 4 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-560.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560.yaml
new file mode 100644
index 000000000..509d7f355
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Pro-560
+humanName: Radeon Pro 560
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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: 907 MHz
+ VRAM Frequency: 1270 MHz
+ VRAM Bandwidth: 81.28 GB/s
+ VRAM Capacity: 4 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-560X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560X.yaml
new file mode 100644
index 000000000..3de987e8c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-560X.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Pro-560X
+humanName: Radeon Pro 560X
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 1004 MHz
+ VRAM Frequency: 1470 MHz
+ VRAM Bandwidth: 94.08 GB/s
+ VRAM Capacity: 4 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-570.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570.yaml
new file mode 100644
index 000000000..92b4e68fe
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Pro-570
+humanName: Radeon Pro 570
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-570X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570X.yaml
new file mode 100644
index 000000000..8154b2191
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-570X.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Pro-570X
+humanName: Radeon Pro 570X
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-575.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575.yaml
new file mode 100644
index 000000000..7cb6d5aa1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Pro-575
+humanName: Radeon Pro 575
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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: 1096 MHz
+ VRAM Frequency: 1695 MHz
+ VRAM Bandwidth: 217.0 GB/s
+ VRAM Capacity: 4 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-575X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575X.yaml
new file mode 100644
index 000000000..eeb5e85c8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-575X.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Pro-575X
+humanName: Radeon Pro 575X
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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: 1096 MHz
+ VRAM Frequency: 1695 MHz
+ VRAM Bandwidth: 217.0 GB/s
+ VRAM Capacity: 4 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-580.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580.yaml
new file mode 100644
index 000000000..8aed63dfc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Pro-580
+humanName: Radeon Pro 580
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-580X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580X.yaml
new file mode 100644
index 000000000..30c605061
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-580X.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Pro-580X
+humanName: Radeon Pro 580X
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml
new file mode 100644
index 000000000..72179f040
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-Duo-Polaris.yaml
@@ -0,0 +1,37 @@
+name: Radeon-Pro-Duo-Polaris
+humanName: Radeon Pro Duo Polaris
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 1243 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 224.0 GB/s
+ VRAM Capacity: 16 GiB
+ 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.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-Pro-V5300X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V5300X.yaml
new file mode 100644
index 000000000..386e08c53
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V5300X.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Pro-V5300X
+humanName: Radeon Pro V5300X
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-V7300X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7300X.yaml
new file mode 100644
index 000000000..df99a272f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7300X.yaml
@@ -0,0 +1,35 @@
+name: Radeon-Pro-V7300X
+humanName: Radeon Pro V7300X
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-V7350X2.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7350X2.yaml
new file mode 100644
index 000000000..e10f7d50f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-V7350X2.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Pro-V7350X2
+humanName: Radeon Pro V7350X2
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-WX-2100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-2100.yaml
new file mode 100644
index 000000000..fbd156ca0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-2100.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Pro-WX-2100
+humanName: Radeon Pro WX 2100
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-WX-3100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3100.yaml
new file mode 100644
index 000000000..874d4e805
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3100.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Pro-WX-3100
+humanName: Radeon Pro WX 3100
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml
new file mode 100644
index 000000000..899434644
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Pro-WX-3200-Mobile
+humanName: Radeon Pro WX 3200 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 1082 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 4 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-WX-3200.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200.yaml
new file mode 100644
index 000000000..ac9af0c6d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-3200.yaml
@@ -0,0 +1,35 @@
+name: Radeon-Pro-WX-3200
+humanName: Radeon Pro WX 3200
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 1295 MHz
+ VRAM Frequency: 1500 MHz
+ VRAM Bandwidth: 96.00 GB/s
+ VRAM Capacity: 4 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-WX-4100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4100.yaml
new file mode 100644
index 000000000..eaa11894b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4100.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Pro-WX-4100
+humanName: Radeon Pro WX 4100
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml
new file mode 100644
index 000000000..e612afff6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4130-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Pro-WX-4130-Mobile
+humanName: Radeon Pro WX 4130 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml
new file mode 100644
index 000000000..d5b11dc56
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4150-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Pro-WX-4150-Mobile
+humanName: Radeon Pro WX 4150 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml
new file mode 100644
index 000000000..d2c4b0c4c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-4170-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Pro-WX-4170-Mobile
+humanName: Radeon Pro WX 4170 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-WX-5100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-5100.yaml
new file mode 100644
index 000000000..3ff7bf48b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-5100.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Pro-WX-5100
+humanName: Radeon Pro WX 5100
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml
new file mode 100644
index 000000000..84fcca6b2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Radeon-Pro-WX-7100-Mobile
+humanName: Radeon Pro WX 7100 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-WX-7100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100.yaml
new file mode 100644
index 000000000..e6e8a4c05
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7100.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Pro-WX-7100
+humanName: Radeon Pro WX 7100
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml
new file mode 100644
index 000000000..5d374cfa0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-7130-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Radeon-Pro-WX-7130-Mobile
+humanName: Radeon Pro WX 7130 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/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
new file mode 100644
index 000000000..8383cf8b1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-Pro-WX-Vega-M-GL.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Pro-WX-Vega-M-GL
+humanName: Radeon Pro WX Vega M GL
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-4.0/Radeon-RX-460-1024SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460-1024SP.yaml
new file mode 100644
index 000000000..430fb1d93
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460-1024SP.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-460-1024SP
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..55660a5a4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Radeon-RX-460-Mobile
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..8c2040c70
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-460.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-460
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..c0c767587
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Radeon-RX-470-Mobile
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..af39600f0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470.yaml
@@ -0,0 +1,40 @@
+name: Radeon-RX-470
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 1x 6-pin
+ Length: 240 mm
+ Width: 95 mm
+ Height: 35 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..fead2bf9f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-470D.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-470D
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 1x 6-pin
+ Length: 241 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..f9a05230d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-480-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Radeon-RX-480-Mobile
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..8987296ba
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-480.yaml
@@ -0,0 +1,40 @@
+name: Radeon-RX-480
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 1x 6-pin
+ Length: 240 mm
+ Width: 95 mm
+ Height: 35 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..8bc9f685b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-540-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Radeon-RX-540-Mobile
+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'
+ Vulkan Support: '1.3'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..0a142f1ec
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-540X-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Radeon-RX-540X-Mobile
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..99ba38207
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-512SP.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-550-512SP
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..a685a55a7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-640SP.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-550-640SP
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..bc2d49258
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Radeon-RX-550-Mobile
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..dc94c5897
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-550
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..0aa851809
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X-640SP.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-550X-640SP
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..ef588cf98
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Radeon-RX-550X-Mobile
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..46ba71860
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-550X.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-550X
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..67577db4c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-896SP.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-560-896SP
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..406d56404
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Radeon-RX-560-Mobile
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..9e2c352be
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560-XT.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-560-XT
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 1x 6-pin
+ Length: 241 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..fe43199ff
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-560
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..2092ebcd7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560D.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-560D
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..61777a15a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560DX.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-560DX
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..6d5007380
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560X-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Radeon-RX-560X-Mobile
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..d696697b6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-560X.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-560X
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..bfa68ec7e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Radeon-RX-570-Mobile
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..78aa17353
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570-X2.yaml
@@ -0,0 +1,36 @@
+name: Radeon-RX-570-X2
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..2c35095af
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570.yaml
@@ -0,0 +1,40 @@
+name: Radeon-RX-570
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 1x 6-pin
+ Length: 241 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..505d842dc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-570X.yaml
@@ -0,0 +1,40 @@
+name: Radeon-RX-570X
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 1x 6-pin
+ Length: 241 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..a80134207
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-2048SP.yaml
@@ -0,0 +1,40 @@
+name: Radeon-RX-580-2048SP
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 1x 8-pin
+ Length: 241 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..36d6497d5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Radeon-RX-580-Mobile
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..99bf0288d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580-OEM.yaml
@@ -0,0 +1,36 @@
+name: Radeon-RX-580-OEM
+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'
+ 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 GiB
+ 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.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
new file mode 100644
index 000000000..bf9619986
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-580
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 1x 8-pin
+ Length: 241 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..401fe5e61
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580G.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-580G
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 1x 8-pin
+ Length: 241 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..cf7e28340
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580X-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Radeon-RX-580X-Mobile
+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'
+ Vulkan Support: '1.3'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..d55e9fab7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-580X.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-580X
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 1x 8-pin
+ Length: 241 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..0274d949a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590-GME.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-590-GME
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 1x 8-pin
+ Length: 241 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..48f176144
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-590.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-590
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 1x 8-pin
+ Length: 241 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..b762ddb96
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-640-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Radeon-RX-640-Mobile
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..4c660f24e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-640-OEM.yaml
@@ -0,0 +1,32 @@
+name: Radeon-RX-640-OEM
+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'
+ Vulkan Support: '1.3'
+ 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 GiB
+ 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/AMD/GCN-4.0/Radeon-RX-Vega-M-GH.yaml b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-Vega-M-GH.yaml
new file mode 100644
index 000000000..e51c54eb6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-Vega-M-GH.yaml
@@ -0,0 +1,34 @@
+name: Radeon-RX-Vega-M-GH
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..6d0aaa9be
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-4.0/Radeon-RX-Vega-M-GL.yaml
@@ -0,0 +1,34 @@
+name: Radeon-RX-Vega-M-GL
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml
new file mode 100644
index 000000000..98f209c09
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0.yaml
@@ -0,0 +1,58 @@
+name: GCN-5.0
+humanName: GCN 5.0
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 14-12 nm
+ DirectX Support: '12.1'
+ Vulkan Support: '1.3'
+ 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: Pro Vega (workstation)
+ members:
+ - Radeon-Pro-WX-9100
+ - Radeon-Pro-WX-8200
+ - Radeon-Pro-WX-8100
+ - header: Pro Vega Mobile (workstation)
+ members:
+ - Radeon-Pro-Vega-64X
+ - 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-9-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.0/Radeon-Pro-Vega-16.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-16.yaml
new file mode 100644
index 000000000..44b8d9cd3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-16.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Pro-Vega-16
+humanName: Radeon Pro Vega 16
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-5.0/Radeon-Pro-Vega-20.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-20.yaml
new file mode 100644
index 000000000..9d85e67b9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-20.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Pro-Vega-20
+humanName: Radeon Pro Vega 20
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-5.0/Radeon-Pro-Vega-48.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-48.yaml
new file mode 100644
index 000000000..09680a70e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-48.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Pro-Vega-48
+humanName: Radeon Pro Vega 48
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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: 1200 MHz
+ VRAM Frequency: 786 MHz
+ VRAM Bandwidth: 402.4 GB/s
+ VRAM Capacity: 8 GiB
+ 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/AMD/GCN-5.0/Radeon-Pro-Vega-56.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-56.yaml
new file mode 100644
index 000000000..a42f7b7f1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-56.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Pro-Vega-56
+humanName: Radeon Pro Vega 56
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: None
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
new file mode 100644
index 000000000..2dba62622
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Pro-Vega-64
+humanName: Radeon Pro Vega 64
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-5.0/Radeon-Pro-Vega-64X.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64X.yaml
new file mode 100644
index 000000000..92fb24218
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-Vega-64X.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Pro-Vega-64X
+humanName: Radeon Pro Vega 64X
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-5.0/Radeon-Pro-WX-8100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8100.yaml
new file mode 100644
index 000000000..1cb0bc861
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8100.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Pro-WX-8100
+humanName: Radeon Pro WX 8100
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-5.0/Radeon-Pro-WX-8200.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8200.yaml
new file mode 100644
index 000000000..67c9fc979
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-8200.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Pro-WX-8200
+humanName: Radeon Pro WX 8200
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-5.0/Radeon-Pro-WX-9100.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-9100.yaml
new file mode 100644
index 000000000..2f800a21b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Pro-WX-9100.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Pro-WX-9100
+humanName: Radeon Pro WX 9100
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-5.0/Radeon-RX-Vega-10-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-10-Mobile.yaml
new file mode 100644
index 000000000..0b8dc2f76
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-10-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Radeon-RX-Vega-10-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-11-Embedded.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-11-Embedded.yaml
new file mode 100644
index 000000000..3fb6a47b4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-11-Embedded.yaml
@@ -0,0 +1,34 @@
+name: Radeon-RX-Vega-11-Embedded
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-11-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-11-Mobile.yaml
new file mode 100644
index 000000000..df2a38b8a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-11-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Radeon-RX-Vega-11-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-11.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-11.yaml
new file mode 100644
index 000000000..16d944671
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-11.yaml
@@ -0,0 +1,34 @@
+name: Radeon-RX-Vega-11
+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'
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..51868ebe8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56-Mobile.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-Vega-56-Mobile
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: None
+ Length: 105 mm
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..58f453dd2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-56.yaml
@@ -0,0 +1,40 @@
+name: Radeon-RX-Vega-56
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 2x 8-pin
+ Length: 280 mm
+ Width: 111 mm
+ Height: 40 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..8c98de864
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64-Limited-Edition.yaml
@@ -0,0 +1,40 @@
+name: Radeon-RX-Vega-64-Limited-Edition
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 2x 8-pin
+ Length: 272 mm
+ Width: 112 mm
+ Height: 40 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..ef9f019d2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64-Liquid-Cooling.yaml
@@ -0,0 +1,40 @@
+name: Radeon-RX-Vega-64-Liquid-Cooling
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 2x 8-pin
+ Length: 272 mm
+ Width: 112 mm
+ Height: 40 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..6a044e4fb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-64.yaml
@@ -0,0 +1,40 @@
+name: Radeon-RX-Vega-64
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 2x 8-pin
+ Length: 280 mm
+ Width: 111 mm
+ Height: 40 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..32d704237
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-RX-Vega-Nano.yaml
@@ -0,0 +1,39 @@
+name: Radeon-RX-Vega-Nano
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 1x 8-pin
+ Length: 152 mm
+ Width: 111 mm
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-10-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-10-Mobile.yaml
new file mode 100644
index 000000000..1c0021106
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-10-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Vega-10-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-11-Embedded.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-11-Embedded.yaml
new file mode 100644
index 000000000..198e9d526
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-11-Embedded.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Vega-11-Embedded
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-11.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-11.yaml
new file mode 100644
index 000000000..3afccd694
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-11.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Vega-11
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-3-Embedded.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-3-Embedded.yaml
new file mode 100644
index 000000000..462f0ce94
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-3-Embedded.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Vega-3-Embedded
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-3-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-3-Mobile.yaml
new file mode 100644
index 000000000..52a66de6c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-3-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Vega-3-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-3.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-3.yaml
new file mode 100644
index 000000000..455941935
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-3.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Vega-3
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-6-Embedded.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-6-Embedded.yaml
new file mode 100644
index 000000000..4bdc90e7f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-6-Embedded.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Vega-6-Embedded
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-6-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-6-Mobile.yaml
new file mode 100644
index 000000000..33167609d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-6-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Vega-6-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-8-Embedded.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-8-Embedded.yaml
new file mode 100644
index 000000000..a9355601d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-8-Embedded.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Vega-8-Embedded
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-8-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-8-Mobile.yaml
new file mode 100644
index 000000000..c13af7674
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-8-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Vega-8-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-8.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-8.yaml
new file mode 100644
index 000000000..7f0ea826b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-8.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Vega-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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-9-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-9-Mobile.yaml
new file mode 100644
index 000000000..6b23ffa4d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-9-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Vega-9-Mobile
+humanName: Radeon Vega 9 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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: 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: 36
+ Shader Processor Count: 576
+ Die Size: 210 mm²
+ GPU: Picasso-M
+ TDP: 15 W
+ FP32 Compute: 1,498 GFLOPS
+ FP64 Compute: 93.60 GFLOPS (1:16)
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..8e264c65b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition-Watercooled.yaml
@@ -0,0 +1,39 @@
+name: Radeon-Vega-Frontier-Edition-Watercooled
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 2x 8-pin
+ Length: 267 mm
+ Width: 111 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..cd91684d5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.0/Radeon-Vega-Frontier-Edition.yaml
@@ -0,0 +1,39 @@
+name: Radeon-Vega-Frontier-Edition
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 2x 8-pin
+ Length: 267 mm
+ Width: 111 mm
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1.yaml
new file mode 100644
index 000000000..be52c179d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1.yaml
@@ -0,0 +1,26 @@
+name: GCN-5.1
+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: 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-Pro-V420
+ - Radeon-Pro-Vega-II
+ - Radeon-Pro-Vega-II-Duo
+ - Radeon-Pro-VII
+ - Radeon-VII
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-320SP-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-320SP-Mobile.yaml
new file mode 100644
index 000000000..25b8c6eb1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-320SP-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Graphics-320SP-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-384SP-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-384SP-Mobile.yaml
new file mode 100644
index 000000000..7908f78a5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-384SP-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Graphics-384SP-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-384SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-384SP.yaml
new file mode 100644
index 000000000..1527f4a73
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-384SP.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Graphics-384SP
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-448SP-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-448SP-Mobile.yaml
new file mode 100644
index 000000000..a08a5a19a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-448SP-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Graphics-448SP-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-448SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-448SP.yaml
new file mode 100644
index 000000000..94365a43f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-448SP.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Graphics-448SP
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-512SP-Mobile.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-512SP-Mobile.yaml
new file mode 100644
index 000000000..c4e2ee380
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-512SP-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Graphics-512SP-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-512SP.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-512SP.yaml
new file mode 100644
index 000000000..f6314703c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Graphics-512SP.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Graphics-512SP
+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'
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..e3542e0a6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-V420.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Pro-V420
+humanName: Radeon Pro V420
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-5.1/Radeon-Pro-VII.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-VII.yaml
new file mode 100644
index 000000000..e1f5d51fd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-VII.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Pro-VII
+humanName: Radeon Pro VII
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml
new file mode 100644
index 000000000..6dc395b10
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II-Duo.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Pro-Vega-II-Duo
+humanName: Radeon Pro Vega II Duo
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-5.1/Radeon-Pro-Vega-II.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II.yaml
new file mode 100644
index 000000000..b843a3fb0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-Pro-Vega-II.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Pro-Vega-II
+humanName: Radeon Pro Vega II
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/GCN-5.1/Radeon-VII.yaml b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-VII.yaml
new file mode 100644
index 000000000..ce7d50c60
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/GCN-5.1/Radeon-VII.yaml
@@ -0,0 +1,40 @@
+name: Radeon-VII
+humanName: Radeon VII
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 2x 8-pin
+ Length: 280 mm
+ Width: 125 mm
+ Height: 40 mm
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/Mach.yaml b/specs/GPUs-CONSUMER/AMD/Mach.yaml
new file mode 100644
index 000000000..04ff34398
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach.yaml
@@ -0,0 +1,36 @@
+name: Mach
+humanName: Mach
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 600-500 nm
+ DirectX Support: ''
+ Vulkan Support: 'N/A'
+ Release Date: '1992'
+ Manufacturer: AMD
+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/AMD/Mach/3D-Rage-II+-DVD.yaml b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II+-DVD.yaml
new file mode 100644
index 000000000..247b52964
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II+-DVD.yaml
@@ -0,0 +1,32 @@
+name: 3D-Rage-II+-DVD
+humanName: 3D Rage II+ DVD
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 60 MHz
+ VRAM Frequency: 83 MHz
+ VRAM Bandwidth: 664.0 MB/s
+ VRAM Capacity: 4 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA1x S-Video
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II.yaml b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II.yaml
new file mode 100644
index 000000000..4ec1d8c2e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage-II.yaml
@@ -0,0 +1,32 @@
+name: 3D-Rage-II
+humanName: 3D Rage II
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 60 MHz
+ VRAM Frequency: 83 MHz
+ VRAM Bandwidth: 664.0 MB/s
+ VRAM Capacity: 4 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage.yaml b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage.yaml
new file mode 100644
index 000000000..ba89e5c01
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach/3D-Rage.yaml
@@ -0,0 +1,32 @@
+name: 3D-Rage
+humanName: 3D Rage
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 44 MHz
+ VRAM Frequency: 66 MHz
+ VRAM Bandwidth: 528.0 MB/s
+ VRAM Capacity: 2 MiB
+ VRAM Type: EDO
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/Mach/8514-Ultra.yaml b/specs/GPUs-CONSUMER/AMD/Mach/8514-Ultra.yaml
new file mode 100644
index 000000000..ffea21929
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach/8514-Ultra.yaml
@@ -0,0 +1,32 @@
+name: 8514-Ultra
+humanName: 8514-Ultra
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: Mach
+ Lithography: 800 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: VRAM
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: No outputs
+ Power Connectors: None
+ Pixel Shaders: 1
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..2acc7c5ad
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach/All-In-Wonder-3D-Rage-II+-DVD.yaml
@@ -0,0 +1,32 @@
+name: All-In-Wonder-3D-Rage-II+-DVD
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Pro-Turbo.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Pro-Turbo.yaml
new file mode 100644
index 000000000..17468faaa
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Pro-Turbo.yaml
@@ -0,0 +1,31 @@
+name: Graphics-Pro-Turbo
+humanName: Graphics Pro Turbo
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: Mach
+ Lithography: 600 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: VRAM
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-ISA.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-ISA.yaml
new file mode 100644
index 000000000..0abff7db3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-ISA.yaml
@@ -0,0 +1,31 @@
+name: Graphics-Ultra-Pro-ISA
+humanName: Graphics Ultra Pro ISA
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: Mach
+ Lithography: 700 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DRAM
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-PCI.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-PCI.yaml
new file mode 100644
index 000000000..ececf94d9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-PCI.yaml
@@ -0,0 +1,31 @@
+name: Graphics-Ultra-Pro-PCI
+humanName: Graphics Ultra Pro PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: Mach
+ Lithography: 700 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DRAM
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-VLB.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-VLB.yaml
new file mode 100644
index 000000000..db8247756
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-Pro-VLB.yaml
@@ -0,0 +1,31 @@
+name: Graphics-Ultra-Pro-VLB
+humanName: Graphics Ultra Pro VLB
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: Mach
+ Lithography: 700 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: VRAM
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-XLR-VLB.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-XLR-VLB.yaml
new file mode 100644
index 000000000..b79ff8c92
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra-XLR-VLB.yaml
@@ -0,0 +1,31 @@
+name: Graphics-Ultra-XLR-VLB
+humanName: Graphics Ultra XLR VLB
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: Mach
+ Lithography: 700 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: VRAM
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra.yaml
new file mode 100644
index 000000000..d85a730a3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Ultra.yaml
@@ -0,0 +1,32 @@
+name: Graphics-Ultra
+humanName: Graphics Ultra
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: Mach
+ Lithography: 800 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: VRAM
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Vantage.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Vantage.yaml
new file mode 100644
index 000000000..e6e856352
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Vantage.yaml
@@ -0,0 +1,31 @@
+name: Graphics-Vantage
+humanName: Graphics Vantage
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: Mach
+ Lithography: 800 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DRAM
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-PCI.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-PCI.yaml
new file mode 100644
index 000000000..0e62a3735
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-PCI.yaml
@@ -0,0 +1,31 @@
+name: Graphics-Wonder-PCI
+humanName: Graphics Wonder PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: Mach
+ Lithography: 700 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DRAM
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-VLB.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-VLB.yaml
new file mode 100644
index 000000000..8c691748e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Wonder-VLB.yaml
@@ -0,0 +1,31 @@
+name: Graphics-Wonder-VLB
+humanName: Graphics Wonder VLB
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: Mach
+ Lithography: 700 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DRAM
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression-ISA.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression-ISA.yaml
new file mode 100644
index 000000000..9105d5c9a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression-ISA.yaml
@@ -0,0 +1,31 @@
+name: Graphics-Xpression-ISA
+humanName: Graphics Xpression ISA
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: Mach
+ Lithography: 600 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DRAM
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression.yaml
new file mode 100644
index 000000000..2bc758c96
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach/Graphics-Xpression.yaml
@@ -0,0 +1,31 @@
+name: Graphics-Xpression
+humanName: Graphics Xpression
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: Mach
+ Lithography: 600 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: EDO
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Rage-LT-PRO-AGP.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Rage-LT-PRO-AGP.yaml
new file mode 100644
index 000000000..38be5e11e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach/Rage-LT-PRO-AGP.yaml
@@ -0,0 +1,33 @@
+name: Rage-LT-PRO-AGP
+humanName: Rage LT PRO AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 75 MHz
+ VRAM Frequency: 100 MHz
+ VRAM Bandwidth: 800.0 MB/s
+ VRAM Capacity: 8 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 1
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression+.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression+.yaml
new file mode 100644
index 000000000..87dabd176
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression+.yaml
@@ -0,0 +1,31 @@
+name: Video-Xpression+
+humanName: Video Xpression+
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: Mach
+ Lithography: 600 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: EDO
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression.yaml b/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression.yaml
new file mode 100644
index 000000000..5087db363
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach/Video-Xpression.yaml
@@ -0,0 +1,31 @@
+name: Video-Xpression
+humanName: Video Xpression
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: Mach
+ Lithography: 600 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: EDO
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/Mach/WinBoost.yaml b/specs/GPUs-CONSUMER/AMD/Mach/WinBoost.yaml
new file mode 100644
index 000000000..da57c0fb6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach/WinBoost.yaml
@@ -0,0 +1,31 @@
+name: WinBoost
+humanName: WinBoost
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: Mach
+ Lithography: 600 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: EDO
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/Mach/WinCharger.yaml b/specs/GPUs-CONSUMER/AMD/Mach/WinCharger.yaml
new file mode 100644
index 000000000..745bce670
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach/WinCharger.yaml
@@ -0,0 +1,31 @@
+name: WinCharger
+humanName: WinCharger
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: Mach
+ Lithography: 600 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: EDO
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/Mach/WinTurbo.yaml b/specs/GPUs-CONSUMER/AMD/Mach/WinTurbo.yaml
new file mode 100644
index 000000000..55f3472a9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/Mach/WinTurbo.yaml
@@ -0,0 +1,31 @@
+name: WinTurbo
+humanName: WinTurbo
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: Mach
+ Lithography: 600 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: VRAM
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-1.0.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0.yaml
new file mode 100644
index 000000000..e6a0f0c38
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0.yaml
@@ -0,0 +1,48 @@
+name: RDNA-1.0
+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: 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-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-W5300M
+ - Radeon-Pro-5600M
+ - Radeon-Pro-5500M
+ - Radeon-Pro-5300M
+ - header: OEM
+ members:
+ - Radeon-RX-5600-OEM
+ - Radeon-RX-5500-OEM
+ - Radeon-RX-5300-XT-OEM
+ - Radeon-RX-5300-OEM
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
new file mode 100644
index 000000000..5456b6950
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Pro-5300
+humanName: Radeon Pro 5300
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-1.0/Radeon-Pro-5300M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300M.yaml
new file mode 100644
index 000000000..f9a8c10ab
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5300M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Pro-5300M
+humanName: Radeon Pro 5300M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-1.0/Radeon-Pro-5500-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500-XT.yaml
new file mode 100644
index 000000000..54111860e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500-XT.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Pro-5500-XT
+humanName: Radeon Pro 5500 XT
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-1.0/Radeon-Pro-5500M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500M.yaml
new file mode 100644
index 000000000..14b4ba918
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5500M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Pro-5500M
+humanName: Radeon Pro 5500M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-1.0/Radeon-Pro-5600M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5600M.yaml
new file mode 100644
index 000000000..27bc0f4af
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5600M.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Pro-5600M
+humanName: Radeon Pro 5600M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-1.0/Radeon-Pro-5700-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700-XT.yaml
new file mode 100644
index 000000000..766c9ce5b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700-XT.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Pro-5700-XT
+humanName: Radeon Pro 5700 XT
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-1.0/Radeon-Pro-5700.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700.yaml
new file mode 100644
index 000000000..8fdb684d7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-5700.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Pro-5700
+humanName: Radeon Pro 5700
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-1.0/Radeon-Pro-W5300M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5300M.yaml
new file mode 100644
index 000000000..96817c02a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5300M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Pro-W5300M
+humanName: Radeon Pro W5300M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-1.0/Radeon-Pro-W5500.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500.yaml
new file mode 100644
index 000000000..b72d64b6c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Pro-W5500
+humanName: Radeon Pro W5500
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-1.0/Radeon-Pro-W5500M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500M.yaml
new file mode 100644
index 000000000..aedff9c77
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Pro-W5500M
+humanName: Radeon Pro W5500M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-1.0/Radeon-Pro-W5500X.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500X.yaml
new file mode 100644
index 000000000..3fe83a53e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5500X.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Pro-W5500X
+humanName: Radeon Pro W5500X
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-1.0/Radeon-Pro-W5700.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700.yaml
new file mode 100644
index 000000000..4f0c040bf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700.yaml
@@ -0,0 +1,35 @@
+name: Radeon-Pro-W5700
+humanName: Radeon Pro W5700
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-1.0/Radeon-Pro-W5700X.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700X.yaml
new file mode 100644
index 000000000..5c67645dc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-Pro-W5700X.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Pro-W5700X
+humanName: Radeon Pro W5700X
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-1.0/Radeon-RX-5300-OEM.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-OEM.yaml
new file mode 100644
index 000000000..11e6d6d6b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-OEM.yaml
@@ -0,0 +1,36 @@
+name: Radeon-RX-5300-OEM
+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'
+ 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 GiB
+ 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.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
new file mode 100644
index 000000000..4c03f505d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300-XT-OEM.yaml
@@ -0,0 +1,36 @@
+name: Radeon-RX-5300-XT-OEM
+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'
+ 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 GiB
+ 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.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-5300M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300M.yaml
new file mode 100644
index 000000000..17e65429a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5300M.yaml
@@ -0,0 +1,34 @@
+name: Radeon-RX-5300M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..37add05af
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-OEM.yaml
@@ -0,0 +1,37 @@
+name: Radeon-RX-5500-OEM
+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'
+ 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 GiB
+ 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.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
new file mode 100644
index 000000000..82ed29173
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500-XT.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-5500-XT
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 1x 8-pin
+ Length: 180 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..f0c43c5f7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5500M.yaml
@@ -0,0 +1,34 @@
+name: Radeon-RX-5500M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..65c01898c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-OEM.yaml
@@ -0,0 +1,35 @@
+name: Radeon-RX-5600-OEM
+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'
+ 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 GiB
+ 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.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
new file mode 100644
index 000000000..8ca8fc0bb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600-XT.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-5600-XT
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 1x 8-pin
+ Length: 267 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..a7a6f3ff5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5600M.yaml
@@ -0,0 +1,35 @@
+name: Radeon-RX-5600M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..fb4d81a02
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT-50th-Anniversary.yaml
@@ -0,0 +1,40 @@
+name: Radeon-RX-5700-XT-50th-Anniversary
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 1x 6-pin + 1x 8-pin
+ Length: 272 mm
+ Width: 111 mm
+ Height: 40 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..f99a2c59f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700-XT.yaml
@@ -0,0 +1,40 @@
+name: Radeon-RX-5700-XT
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 1x 6-pin + 1x 8-pin
+ Length: 272 mm
+ Width: 111 mm
+ Height: 36 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..476400209
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700.yaml
@@ -0,0 +1,40 @@
+name: Radeon-RX-5700
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 1x 6-pin + 1x 8-pin
+ Length: 268 mm
+ Width: 111 mm
+ Height: 36 mm
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..16f4628f6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-1.0/Radeon-RX-5700M.yaml
@@ -0,0 +1,36 @@
+name: Radeon-RX-5700M
+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'
+ 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 GiB
+ 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.0b
+ - 3x DisplayPort 1.4a
+ Power Connectors: 1x 6-pin + 1x 8-pin
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml
new file mode 100644
index 000000000..0980b8335
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0.yaml
@@ -0,0 +1,67 @@
+name: RDNA-2.0
+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: Consumer RX
+ members:
+ - Radeon-RX-6950-XT
+ - Radeon-RX-6900-XTX
+ - Radeon-RX-6900-XT
+ - Radeon-RX-6850M-XT
+ - 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-6700-XT
+ - Radeon-RX-6700
+ - Radeon-RX-6650M-XT
+ - Radeon-RX-6650-XT
+ - 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-6450M
+ - Radeon-RX-6300M
+ - Radeon-680M
+ - Radeon-660M
+ - Radeon-610M
+ - header: Workstation PRO Desktop
+ members:
+ - Radeon-PRO-W6300
+ - Radeon-PRO-W6400
+ - Radeon-PRO-W6600
+ - 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-2.0/Radeon-610M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-610M.yaml
new file mode 100644
index 000000000..0edba8f8c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-610M.yaml
@@ -0,0 +1,35 @@
+name: Radeon-610M
+humanName: Radeon 610M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-660M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-660M.yaml
new file mode 100644
index 000000000..f90d95580
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-660M.yaml
@@ -0,0 +1,35 @@
+name: Radeon-660M
+humanName: Radeon 660M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-680M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-680M.yaml
new file mode 100644
index 000000000..1631d28f9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-680M.yaml
@@ -0,0 +1,35 @@
+name: Radeon-680M
+humanName: Radeon 680M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Graphics-128SP.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Graphics-128SP.yaml
new file mode 100644
index 000000000..4d797042d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Graphics-128SP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-Graphics-128SP
+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'
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..535d634bb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6300.yaml
@@ -0,0 +1,35 @@
+name: Radeon-PRO-W6300
+humanName: Radeon PRO W6300
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-2.0/Radeon-PRO-W6400.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6400.yaml
new file mode 100644
index 000000000..7960738ed
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6400.yaml
@@ -0,0 +1,35 @@
+name: Radeon-PRO-W6400
+humanName: Radeon PRO W6400
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-2.0/Radeon-PRO-W6600.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6600.yaml
new file mode 100644
index 000000000..78fa84ccd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6600.yaml
@@ -0,0 +1,36 @@
+name: Radeon-PRO-W6600
+humanName: Radeon PRO W6600
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-2.0/Radeon-PRO-W6800.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6800.yaml
new file mode 100644
index 000000000..094c72f10
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-PRO-W6800.yaml
@@ -0,0 +1,38 @@
+name: Radeon-PRO-W6800
+humanName: Radeon PRO W6800
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-2.0/Radeon-Pro-W6300M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6300M.yaml
new file mode 100644
index 000000000..cc60faa28
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6300M.yaml
@@ -0,0 +1,35 @@
+name: Radeon-Pro-W6300M
+humanName: Radeon Pro W6300M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-2.0/Radeon-Pro-W6500M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6500M.yaml
new file mode 100644
index 000000000..f348bce63
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6500M.yaml
@@ -0,0 +1,35 @@
+name: Radeon-Pro-W6500M
+humanName: Radeon Pro W6500M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-2.0/Radeon-Pro-W6600M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600M.yaml
new file mode 100644
index 000000000..cfaf1e4b7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600M.yaml
@@ -0,0 +1,35 @@
+name: Radeon-Pro-W6600M
+humanName: Radeon Pro W6600M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-2.0/Radeon-Pro-W6600X.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600X.yaml
new file mode 100644
index 000000000..594811108
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6600X.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Pro-W6600X
+humanName: Radeon Pro W6600X
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml
new file mode 100644
index 000000000..d9a9275b4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X-Duo.yaml
@@ -0,0 +1,38 @@
+name: Radeon-Pro-W6800X-Duo
+humanName: Radeon Pro W6800X Duo
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-2.0/Radeon-Pro-W6800X.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X.yaml
new file mode 100644
index 000000000..d8c49884b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6800X.yaml
@@ -0,0 +1,39 @@
+name: Radeon-Pro-W6800X
+humanName: Radeon Pro W6800X
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-2.0/Radeon-Pro-W6900X.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6900X.yaml
new file mode 100644
index 000000000..57f7cf786
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-Pro-W6900X.yaml
@@ -0,0 +1,37 @@
+name: Radeon-Pro-W6900X
+humanName: Radeon Pro W6900X
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-2.0/Radeon-RX-6300.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6300.yaml
new file mode 100644
index 000000000..bbcf7e3f2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6300.yaml
@@ -0,0 +1,36 @@
+name: Radeon-RX-6300
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..d8353352f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6300M.yaml
@@ -0,0 +1,36 @@
+name: Radeon-RX-6300M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..c3d7742c8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6400.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-6400
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..cd586f794
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6450M.yaml
@@ -0,0 +1,36 @@
+name: Radeon-RX-6450M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..13091e3c9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6500-XT.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-6500-XT
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..87727c985
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6500M.yaml
@@ -0,0 +1,36 @@
+name: Radeon-RX-6500M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..c3b5fe29a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6550M.yaml
@@ -0,0 +1,36 @@
+name: Radeon-RX-6550M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..8173bf9fc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6550S.yaml
@@ -0,0 +1,36 @@
+name: Radeon-RX-6550S
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..9d5b10530
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600-XT.yaml
@@ -0,0 +1,41 @@
+name: Radeon-RX-6600-XT
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..7c9a6bcc6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600.yaml
@@ -0,0 +1,41 @@
+name: Radeon-RX-6600
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..ceb320268
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600M.yaml
@@ -0,0 +1,35 @@
+name: Radeon-RX-6600M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..a21b5d08c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6600S.yaml
@@ -0,0 +1,35 @@
+name: Radeon-RX-6600S
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..7e0ca3cd6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650-XT.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-6650-XT
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..cd9a44569
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650M-XT.yaml
@@ -0,0 +1,35 @@
+name: Radeon-RX-6650M-XT
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..b0de9b78e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6650M.yaml
@@ -0,0 +1,35 @@
+name: Radeon-RX-6650M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..74cbc806a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700-XT.yaml
@@ -0,0 +1,41 @@
+name: Radeon-RX-6700-XT
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..fa0a05d6f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700.yaml
@@ -0,0 +1,41 @@
+name: Radeon-RX-6700
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..af2a0b97e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700M.yaml
@@ -0,0 +1,36 @@
+name: Radeon-RX-6700M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..8e8d60c8b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6700S.yaml
@@ -0,0 +1,35 @@
+name: Radeon-RX-6700S
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..5fb7ae070
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-GRE-10-GB.yaml
@@ -0,0 +1,41 @@
+name: Radeon-RX-6750-GRE-10-GB
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..5fc0b4df0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-GRE-12-GB.yaml
@@ -0,0 +1,41 @@
+name: Radeon-RX-6750-GRE-12-GB
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..1953937d4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6750-XT.yaml
@@ -0,0 +1,41 @@
+name: Radeon-RX-6750-XT
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..b9fe0f995
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800-XT.yaml
@@ -0,0 +1,42 @@
+name: Radeon-RX-6800-XT
+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'
+ 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 GiB
+ 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.4a
+ - 1x USB Type-C
+ Power Connectors: 2x 8-pin
+ Length: 267 mm
+ Width: 120 mm
+ Height: 50 mm
+ Ray Tracing Cores: 72
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..3e9410643
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800.yaml
@@ -0,0 +1,42 @@
+name: Radeon-RX-6800
+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'
+ 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 GiB
+ 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.4a
+ - 1x USB Type-C
+ Power Connectors: 2x 8-pin
+ Length: 267 mm
+ Width: 120 mm
+ Height: 40 mm
+ Ray Tracing Cores: 60
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..a8d6101ed
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800M.yaml
@@ -0,0 +1,36 @@
+name: Radeon-RX-6800M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..b0c99947c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6800S.yaml
@@ -0,0 +1,35 @@
+name: Radeon-RX-6800S
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..b07d88bd5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6850M-XT.yaml
@@ -0,0 +1,36 @@
+name: Radeon-RX-6850M-XT
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..940fae84a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XT.yaml
@@ -0,0 +1,42 @@
+name: Radeon-RX-6900-XT
+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'
+ 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 GiB
+ 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.4a
+ - 1x USB Type-C
+ Power Connectors: 2x 8-pin
+ Length: 267 mm
+ Width: 120 mm
+ Height: 50 mm
+ Ray Tracing Cores: 80
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..357389621
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6900-XTX.yaml
@@ -0,0 +1,42 @@
+name: Radeon-RX-6900-XTX
+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'
+ 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 GiB
+ 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.4a
+ - 1x USB Type-C
+ Power Connectors: 2x 8-pin
+ Length: 267 mm
+ Width: 135 mm
+ Height: 50 mm
+ Ray Tracing Cores: 80
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..8abf4ff84
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-2.0/Radeon-RX-6950-XT.yaml
@@ -0,0 +1,41 @@
+name: Radeon-RX-6950-XT
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0.yaml
new file mode 100644
index 000000000..72848f577
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0.yaml
@@ -0,0 +1,47 @@
+name: RDNA-3.0
+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: Consumer RX
+ members:
+ - Radeon-RX-7900-XTX
+ - Radeon-RX-7900-XT
+ - Radeon-RX-7900-GRE
+ - Radeon-RX-7800-XT
+ - Radeon-RX-7700-XT
+ - Radeon-RX-7600-XT
+ - Radeon-RX-7600
+ - header: Workstation PRO
+ members:
+ - Radeon-PRO-W7900
+ - Radeon-PRO-W7800-48-GB
+ - Radeon-PRO-W7800
+ - Radeon-PRO-W7700
+ - Radeon-PRO-W7600
+ - Radeon-PRO-W7500
+ - header: Mobile
+ members:
+ - Radeon-RX-7900M
+ - Radeon-RX-7800M
+ - Radeon-RX-7700S
+ - Radeon-RX-7600M-XT
+ - Radeon-RX-7600M
+ - Radeon-RX-7600S
+ - 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-740M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-740M.yaml
new file mode 100644
index 000000000..8637d6d38
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-740M.yaml
@@ -0,0 +1,34 @@
+name: Radeon-740M
+humanName: Radeon 740M
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: AMD
+ Vendor: AMD
+ 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/AMD/RDNA-3.0/Radeon-760M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-760M.yaml
new file mode 100644
index 000000000..87cb11a49
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-760M.yaml
@@ -0,0 +1,34 @@
+name: Radeon-760M
+humanName: Radeon 760M
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: AMD
+ Vendor: AMD
+ 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/AMD/RDNA-3.0/Radeon-780M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-780M.yaml
new file mode 100644
index 000000000..b55b046e5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-780M.yaml
@@ -0,0 +1,34 @@
+name: Radeon-780M
+humanName: Radeon 780M
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: AMD
+ Vendor: AMD
+ 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/AMD/RDNA-3.0/Radeon-PRO-W7500.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7500.yaml
new file mode 100644
index 000000000..b6d2b4ca9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7500.yaml
@@ -0,0 +1,38 @@
+name: Radeon-PRO-W7500
+humanName: Radeon PRO W7500
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-3.0/Radeon-PRO-W7600.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7600.yaml
new file mode 100644
index 000000000..7365006eb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7600.yaml
@@ -0,0 +1,38 @@
+name: Radeon-PRO-W7600
+humanName: Radeon PRO W7600
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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/AMD/RDNA-3.0/Radeon-PRO-W7700.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7700.yaml
new file mode 100644
index 000000000..3b3e25a1c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7700.yaml
@@ -0,0 +1,38 @@
+name: Radeon-PRO-W7700
+humanName: Radeon PRO W7700
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ 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: '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 GiB
+ 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/AMD/RDNA-3.0/Radeon-PRO-W7800-48-GB.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7800-48-GB.yaml
new file mode 100644
index 000000000..45bb42273
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7800-48-GB.yaml
@@ -0,0 +1,40 @@
+name: Radeon-PRO-W7800-48-GB
+humanName: Radeon PRO W7800 48 GB
+isPart: true
+type: Graphics Card
+data:
+ 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: '2023-04-13'
+ GPU Base Frequency: 1895 MHz
+ GPU Boost Frequency: 2525 MHz
+ VRAM Frequency: 2250 MHz
+ VRAM Bandwidth: 864.0 GB/s
+ VRAM Capacity: 48 GiB
+ VRAM Type: GDDR6
+ VRAM Bus Width: 384 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: 281 W
+ FP32 Compute: 45.25 TFLOPS
+ FP64 Compute: 1,414 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/AMD/RDNA-3.0/Radeon-PRO-W7800.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7800.yaml
new file mode 100644
index 000000000..4bfdd84cc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7800.yaml
@@ -0,0 +1,41 @@
+name: Radeon-PRO-W7800
+humanName: Radeon PRO W7800
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ 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: '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 GiB
+ 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/AMD/RDNA-3.0/Radeon-PRO-W7900.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7900.yaml
new file mode 100644
index 000000000..9d636f576
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-PRO-W7900.yaml
@@ -0,0 +1,41 @@
+name: Radeon-PRO-W7900
+humanName: Radeon PRO W7900
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ 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: '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 GiB
+ 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/AMD/RDNA-3.0/Radeon-RX-7500-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7500-XT.yaml
new file mode 100644
index 000000000..73ba28cd2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7500-XT.yaml
@@ -0,0 +1,40 @@
+name: Radeon-RX-7500-XT
+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'
+ 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 GiB
+ 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.1a
+ - 2x DisplayPort 2.1
+ - 1x USB Type-C
+ Power Connectors: 1x 6-pin
+ Ray Tracing Cores: 16
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..0c43b1845
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600-XT.yaml
@@ -0,0 +1,41 @@
+name: Radeon-RX-7600-XT
+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'
+ 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 GiB
+ 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.1a
+ - 3x DisplayPort 2.1
+ Power Connectors: 1x 8-pin
+ Length: 204 mm
+ Width: 115 mm
+ Ray Tracing Cores: 32
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..b3de2a34f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600.yaml
@@ -0,0 +1,41 @@
+name: Radeon-RX-7600
+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'
+ 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 GiB
+ 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.1a
+ - 3x DisplayPort 2.1
+ Power Connectors: 1x 8-pin
+ Length: 204 mm
+ Width: 115 mm
+ Ray Tracing Cores: 32
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..b1169adba
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600M-XT.yaml
@@ -0,0 +1,37 @@
+name: Radeon-RX-7600M-XT
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..2d8e37df6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600M.yaml
@@ -0,0 +1,37 @@
+name: Radeon-RX-7600M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..4c282046b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7600S.yaml
@@ -0,0 +1,37 @@
+name: Radeon-RX-7600S
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..330e427a8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700-XT.yaml
@@ -0,0 +1,43 @@
+name: Radeon-RX-7700-XT
+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'
+ 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 GiB
+ 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.1a
+ - 2x 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..f4068569f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700.yaml
@@ -0,0 +1,43 @@
+name: Radeon-RX-7700
+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'
+ Vulkan Support: '1.3'
+ OpenGL Support: '4.6'
+ OpenCL Support: '2.2'
+ Release Date: 'Never Released'
+ GPU Base Frequency: 1900 MHz
+ GPU Boost Frequency: 2600 MHz
+ VRAM Frequency: 2250 MHz
+ VRAM Bandwidth: 432.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: 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.1a
+ - 2x 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..39ef3b5c0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7700S.yaml
@@ -0,0 +1,37 @@
+name: Radeon-RX-7700S
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..fb1dde2bd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7800-XT.yaml
@@ -0,0 +1,42 @@
+name: Radeon-RX-7800-XT
+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'
+ 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 GiB
+ 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.1a
+ - 3x DisplayPort 2.1
+ Power Connectors: 2x 8-pin
+ Length: 267 mm
+ Width: 111 mm
+ Height: 50 mm
+ Ray Tracing Cores: 60
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7800M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7800M.yaml
new file mode 100644
index 000000000..48a353083
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7800M.yaml
@@ -0,0 +1,35 @@
+name: Radeon-RX-7800M
+humanName: Radeon RX 7800M
+isPart: true
+type: Graphics Card
+data:
+ 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-09-11'
+ GPU Base Frequency: 1295 MHz
+ GPU Boost Frequency: 2335 MHz
+ VRAM Frequency: 2250 MHz
+ VRAM Bandwidth: 432.0 GB/s
+ VRAM Capacity: 12 GiB
+ VRAM Type: GDDR6
+ VRAM Bus Width: 192 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: 180 W
+ FP32 Compute: 35.87 TFLOPS
+ FP64 Compute: 1,121 GFLOPS (1:32)
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Ray Tracing Cores: 60
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
new file mode 100644
index 000000000..59dcb3329
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-GRE.yaml
@@ -0,0 +1,43 @@
+name: Radeon-RX-7900-GRE
+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'
+ 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 GiB
+ 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.1a
+ - 2x 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..74f3ca124
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XT.yaml
@@ -0,0 +1,43 @@
+name: Radeon-RX-7900-XT
+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'
+ 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 GiB
+ 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.1a
+ - 2x 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..e5a592c8f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900-XTX.yaml
@@ -0,0 +1,43 @@
+name: Radeon-RX-7900-XTX
+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'
+ 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 GiB
+ 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.1a
+ - 2x 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..0e21280f5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7900M.yaml
@@ -0,0 +1,37 @@
+name: Radeon-RX-7900M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..0bafbf720
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XT.yaml
@@ -0,0 +1,43 @@
+name: Radeon-RX-7950-XT
+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'
+ 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 GiB
+ 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.1a
+ - 2x 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..47e4adde9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7950-XTX.yaml
@@ -0,0 +1,43 @@
+name: Radeon-RX-7950-XTX
+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'
+ 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 GiB
+ 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.1a
+ - 2x 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..42c600ac4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.0/Radeon-RX-7990-XTX.yaml
@@ -0,0 +1,43 @@
+name: Radeon-RX-7990-XTX
+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'
+ 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 GiB
+ 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.1a
+ - 2x 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.5.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.5.yaml
new file mode 100644
index 000000000..d9558d3ca
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.5.yaml
@@ -0,0 +1,18 @@
+name: RDNA-3.5
+humanName: RDNA 3.5
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 4 nm
+ DirectX Support: '12.2'
+ Vulkan Support: '1.3'
+ Release Date: '2024-07-15'
+ Manufacturer: AMD
+sections:
+ - header: Mobile
+ members:
+ - Radeon-8060S
+ - Radeon-8050S
+ - Radeon-880M
+ - Radeon-890M
diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.5/Radeon-8050S.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.5/Radeon-8050S.yaml
new file mode 100644
index 000000000..250c51c18
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.5/Radeon-8050S.yaml
@@ -0,0 +1,35 @@
+name: Radeon-8050S
+humanName: Radeon 8050S
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Mobile
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: RDNA 3.5
+ Lithography: 4 nm
+ DirectX Support: '12.2'
+ Vulkan Support: '1.3'
+ OpenGL Support: '4.6'
+ OpenCL Support: '2.1'
+ Release Date: '2025'
+ GPU Base Frequency: 1295 MHz
+ GPU Boost Frequency: 2335 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: 64
+ Texture Mapping Unit Count: 128
+ Shader Processor Count: 2048
+ Die Size: 233 mm²
+ GPU: Strix Point
+ TDP: unknown
+ FP32 Compute: 9.564 TFLOPS
+ FP64 Compute: 298.9 GFLOPS (1:32)
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Ray Tracing Cores: 32
diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.5/Radeon-8060S.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.5/Radeon-8060S.yaml
new file mode 100644
index 000000000..5b54a26ba
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.5/Radeon-8060S.yaml
@@ -0,0 +1,35 @@
+name: Radeon-8060S
+humanName: Radeon 8060S
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Mobile
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: RDNA 3.5
+ Lithography: 4 nm
+ DirectX Support: '12.2'
+ Vulkan Support: '1.3'
+ OpenGL Support: '4.6'
+ OpenCL Support: '2.1'
+ Release Date: '2025'
+ GPU Base Frequency: 1295 MHz
+ GPU Boost Frequency: 2335 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: 64
+ Texture Mapping Unit Count: 160
+ Shader Processor Count: 2560
+ Die Size: 233 mm²
+ GPU: Strix Point
+ TDP: unknown
+ FP32 Compute: 11.96 TFLOPS
+ FP64 Compute: 373.6 GFLOPS (1:32)
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Ray Tracing Cores: 40
diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.5/Radeon-880M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.5/Radeon-880M.yaml
new file mode 100644
index 000000000..1691d263a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.5/Radeon-880M.yaml
@@ -0,0 +1,35 @@
+name: Radeon-880M
+humanName: Radeon 880M
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Mobile
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: RDNA 3.5
+ Lithography: 4 nm
+ DirectX Support: '12.2'
+ Vulkan Support: '1.3'
+ OpenGL Support: '4.6'
+ OpenCL Support: '2.1'
+ Release Date: '2024-07-15'
+ GPU Base Frequency: 400 MHz
+ GPU Boost Frequency: 2900 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: 48
+ Shader Processor Count: 768
+ Die Size: 233 mm²
+ GPU: Strix Point
+ TDP: 15 W
+ FP32 Compute: 4.454 TFLOPS
+ FP64 Compute: 278.4 GFLOPS (1:16)
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Ray Tracing Cores: 12
diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-3.5/Radeon-890M.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-3.5/Radeon-890M.yaml
new file mode 100644
index 000000000..05cdbe17e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-3.5/Radeon-890M.yaml
@@ -0,0 +1,35 @@
+name: Radeon-890M
+humanName: Radeon 890M
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Mobile
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: RDNA 3.5
+ Lithography: 4 nm
+ DirectX Support: '12.2'
+ Vulkan Support: '1.3'
+ OpenGL Support: '4.6'
+ OpenCL Support: '2.1'
+ Release Date: '2024-07-15'
+ GPU Base Frequency: 400 MHz
+ GPU Boost Frequency: 2900 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: 233 mm²
+ GPU: Strix Point
+ TDP: 15 W
+ FP32 Compute: 5.939 TFLOPS
+ FP64 Compute: 371.2 GFLOPS (1:16)
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Ray Tracing Cores: 16
diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-4.0.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-4.0.yaml
new file mode 100644
index 000000000..8de713049
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-4.0.yaml
@@ -0,0 +1,20 @@
+name: RDNA-4.0
+humanName: RDNA 4.0
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ Vulkan Support: '1.3'
+ Release Date: '2025-03-06'
+ Manufacturer: AMD
+sections:
+ - header: Consumer RX
+ members:
+ - Radeon-RX-9070-XT
+ - Radeon-RX-9070
+ - Radeon-RX-9060-XT
+ - header: Workstation PRO
+ members:
+ - Radeon-PRO-W9070
diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-4.0/Radeon-PRO-W9070.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-4.0/Radeon-PRO-W9070.yaml
new file mode 100644
index 000000000..c81ae783e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-4.0/Radeon-PRO-W9070.yaml
@@ -0,0 +1,40 @@
+name: Radeon-PRO-W9070
+humanName: Radeon PRO W9070
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: RDNA 4.0
+ Lithography: 4 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '128'
+ Vulkan Support: '1.3'
+ OpenGL Support: '4.6'
+ OpenCL Support: '2.2'
+ Release Date: 'Unknown'
+ GPU Base Frequency: 1660 MHz
+ GPU Boost Frequency: 2970 MHz
+ VRAM Frequency: 2518 MHz
+ VRAM Bandwidth: 644.6 GB/s
+ VRAM Capacity: 32 GiB
+ VRAM Type: GDDR6
+ VRAM Bus Width: 256 bit
+ Render Output Unit Count: 128
+ Texture Mapping Unit Count: 256
+ Shader Processor Count: 4096
+ Die Size: 357 mm²
+ GPU: Navi 48
+ GPU Variant: Navi 48 XTW
+ TDP: 304 W
+ FP32 Compute: 48.66 TFLOPS
+ FP64 Compute: 1.521 TFLOPS (1:32)
+ Slot Width: Dual-slot
+ Outputs:
+ - 1x HDMI 2.1b
+ - 3x DisplayPort 2.1a
+ Power Connectors: 2x 8-pin
+ Ray Tracing Cores: 64
+ Tensor Cores: 128
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-4.0/Radeon-RX-9060-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-4.0/Radeon-RX-9060-XT.yaml
new file mode 100644
index 000000000..be9a05f33
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-4.0/Radeon-RX-9060-XT.yaml
@@ -0,0 +1,41 @@
+name: Radeon-RX-9060-XT
+humanName: Radeon RX 9060 XT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: RDNA 4.0
+ Lithography: 4 nm
+ DirectX Support: '12.2'
+ Vulkan Support: '1.3'
+ OpenGL Support: '4.6'
+ OpenCL Support: '2.2'
+ Release Date: '2025-05-18'
+ GPU Base Frequency: 2220 MHz
+ GPU Boost Frequency: 3230 MHz
+ VRAM Frequency: 2518 MHz
+ VRAM Bandwidth: 322.3 GB/s
+ VRAM Capacity: 8 GiB
+ VRAM Type: GDDR6
+ VRAM Bus Width: 128 bit
+ Render Output Unit Count: 64
+ Texture Mapping Unit Count: 128
+ Shader Processor Count: 2048
+ Die Size: 153 mm²
+ GPU: Navi 44
+ GPU Variant: Navi 44 XT
+ TDP: 150 W
+ FP32 Compute: 26.46 TFLOPS
+ FP64 Compute: 826.9 GFLOPS (1:32)
+ Slot Width: Dual-slot
+ Outputs:
+ - 1x HDMI 2.1b
+ - 3x DisplayPort 2.1a
+ Power Connectors: 1x 8-pin
+ Length: 267 mm
+ Width: 111 mm
+ Height: 50 mm
+ Ray Tracing Cores: 32
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-4.0/Radeon-RX-9070-XT.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-4.0/Radeon-RX-9070-XT.yaml
new file mode 100644
index 000000000..3bec18b17
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-4.0/Radeon-RX-9070-XT.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-9070-XT
+humanName: Radeon RX 9070 XT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: RDNA 4.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '128'
+ Vulkan Support: '1.3'
+ OpenGL Support: '4.6'
+ OpenCL Support: '2.2'
+ Release Date: '2025-03-06'
+ GPU Base Frequency: 1660 MHz
+ GPU Boost Frequency: 2970 MHz
+ VRAM Frequency: 2518 MHz
+ VRAM Bandwidth: 644.6 GB/s
+ VRAM Capacity: 16 GiB
+ VRAM Type: GDDR6
+ VRAM Bus Width: 256 bit
+ Render Output Unit Count: 128
+ Texture Mapping Unit Count: 256
+ Shader Processor Count: 4096
+ Die Size: 357 mm²
+ GPU: Navi 48
+ GPU Variant: Navi 48 XT
+ TDP: 304 W
+ FP32 Compute: 48.66 TFLOPS
+ FP64 Compute: 1.521 TFLOPS (1:32)
+ Slot Width: Dual-slot
+ Outputs: 1x HDMI 2.1b3x DisplayPort 2.1a
+ Power Connectors: 2x 8-pin
+ Ray Tracing Cores: 64
+ Tensor Cores: 128
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/RDNA-4.0/Radeon-RX-9070.yaml b/specs/GPUs-CONSUMER/AMD/RDNA-4.0/Radeon-RX-9070.yaml
new file mode 100644
index 000000000..d2f498b3a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/RDNA-4.0/Radeon-RX-9070.yaml
@@ -0,0 +1,38 @@
+name: Radeon-RX-9070
+humanName: Radeon RX 9070
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: RDNA 4.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '112'
+ Vulkan Support: '1.3'
+ OpenGL Support: '4.6'
+ OpenCL Support: '2.2'
+ Release Date: '2025-03-06'
+ GPU Base Frequency: 1330 MHz
+ GPU Boost Frequency: 2520 MHz
+ VRAM Frequency: 2518 MHz
+ VRAM Bandwidth: 644.6 GB/s
+ VRAM Capacity: 16 GiB
+ VRAM Type: GDDR6
+ VRAM Bus Width: 256 bit
+ Render Output Unit Count: 128
+ Texture Mapping Unit Count: 224
+ Shader Processor Count: 3584
+ Die Size: 357 mm²
+ GPU: Navi 48
+ GPU Variant: Navi 48 XL
+ TDP: 220 W
+ FP32 Compute: 36.13 TFLOPS
+ FP64 Compute: 1,129 GFLOPS (1:32)
+ Slot Width: Dual-slot
+ Outputs: 1x HDMI 2.1b3x DisplayPort 2.1a
+ Power Connectors: 2x 8-pin
+ Ray Tracing Cores: 56
+ Tensor Cores: 112
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2.yaml
new file mode 100644
index 000000000..51aabff2d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2.yaml
@@ -0,0 +1,202 @@
+name: TeraScale-2
+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: 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
+ - 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
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
new file mode 100644
index 000000000..e5f83c38e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270-PCIe-x1.yaml
@@ -0,0 +1,34 @@
+name: FirePro-2270-PCIe-x1
+humanName: FirePro 2270 PCIe x1
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 9.600 GB/s
+ VRAM Capacity: 512 MiB
+ 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/AMD/TeraScale-2/FirePro-2270.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270.yaml
new file mode 100644
index 000000000..30db65b72
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2270.yaml
@@ -0,0 +1,34 @@
+name: FirePro-2270
+humanName: FirePro 2270
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 9.600 GB/s
+ VRAM Capacity: 512 MiB
+ 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/AMD/TeraScale-2/FirePro-2460-Multi-View.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2460-Multi-View.yaml
new file mode 100644
index 000000000..caf258671
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-2460-Multi-View.yaml
@@ -0,0 +1,34 @@
+name: FirePro-2460-Multi-View
+humanName: FirePro 2460 Multi-View
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 32.00 GB/s
+ VRAM Capacity: 512 MiB
+ 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/AMD/TeraScale-2/FirePro-M2000.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M2000.yaml
new file mode 100644
index 000000000..e2c9d574a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M2000.yaml
@@ -0,0 +1,30 @@
+name: FirePro-M2000
+humanName: FirePro M2000
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/AMD/TeraScale-2/FirePro-M3900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M3900.yaml
new file mode 100644
index 000000000..4539044cf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M3900.yaml
@@ -0,0 +1,30 @@
+name: FirePro-M3900
+humanName: FirePro M3900
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 750 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/AMD/TeraScale-2/FirePro-M5800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5800.yaml
new file mode 100644
index 000000000..668e166f6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5800.yaml
@@ -0,0 +1,30 @@
+name: FirePro-M5800
+humanName: FirePro M5800
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/AMD/TeraScale-2/FirePro-M5950.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5950.yaml
new file mode 100644
index 000000000..5aafa49a6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M5950.yaml
@@ -0,0 +1,31 @@
+name: FirePro-M5950
+humanName: FirePro M5950
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 725 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 57.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/AMD/TeraScale-2/FirePro-M7820.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M7820.yaml
new file mode 100644
index 000000000..0caf55cbb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M7820.yaml
@@ -0,0 +1,32 @@
+name: FirePro-M7820
+humanName: FirePro M7820
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 700 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/AMD/TeraScale-2/FirePro-M8900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M8900.yaml
new file mode 100644
index 000000000..05671e2d9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-M8900.yaml
@@ -0,0 +1,32 @@
+name: FirePro-M8900
+humanName: FirePro M8900
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 680 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 115.2 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/TeraScale-2/FirePro-V3800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3800.yaml
new file mode 100644
index 000000000..0c9433907
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3800.yaml
@@ -0,0 +1,36 @@
+name: FirePro-V3800
+humanName: FirePro V3800
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 512 MiB
+ 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/AMD/TeraScale-2/FirePro-V3900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3900.yaml
new file mode 100644
index 000000000..95a5bcd27
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V3900.yaml
@@ -0,0 +1,36 @@
+name: FirePro-V3900
+humanName: FirePro V3900
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/AMD/TeraScale-2/FirePro-V4800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4800.yaml
new file mode 100644
index 000000000..388a940f5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4800.yaml
@@ -0,0 +1,36 @@
+name: FirePro-V4800
+humanName: FirePro V4800
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 775 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 57.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/AMD/TeraScale-2/FirePro-V4900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4900.yaml
new file mode 100644
index 000000000..c1e4e7093
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V4900.yaml
@@ -0,0 +1,36 @@
+name: FirePro-V4900
+humanName: FirePro V4900
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 800 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/AMD/TeraScale-2/FirePro-V5800-DVI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800-DVI.yaml
new file mode 100644
index 000000000..c32a07125
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800-DVI.yaml
@@ -0,0 +1,34 @@
+name: FirePro-V5800-DVI
+humanName: FirePro V5800 DVI
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 690 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/AMD/TeraScale-2/FirePro-V5800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800.yaml
new file mode 100644
index 000000000..da24b8432
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V5800.yaml
@@ -0,0 +1,36 @@
+name: FirePro-V5800
+humanName: FirePro V5800
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 690 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/AMD/TeraScale-2/FirePro-V7800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800.yaml
new file mode 100644
index 000000000..3dd448d55
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800.yaml
@@ -0,0 +1,36 @@
+name: FirePro-V7800
+humanName: FirePro V7800
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 700 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 128.0 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/TeraScale-2/FirePro-V7800P.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800P.yaml
new file mode 100644
index 000000000..686f2ebef
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V7800P.yaml
@@ -0,0 +1,35 @@
+name: FirePro-V7800P
+humanName: FirePro V7800P
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 700 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 128.0 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/TeraScale-2/FirePro-V8800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V8800.yaml
new file mode 100644
index 000000000..67a1b89e1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V8800.yaml
@@ -0,0 +1,37 @@
+name: FirePro-V8800
+humanName: FirePro V8800
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 825 MHz
+ VRAM Frequency: 1150 MHz
+ VRAM Bandwidth: 147.2 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/TeraScale-2/FirePro-V9800.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800.yaml
new file mode 100644
index 000000000..389a63a08
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800.yaml
@@ -0,0 +1,37 @@
+name: FirePro-V9800
+humanName: FirePro V9800
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 850 MHz
+ VRAM Frequency: 1150 MHz
+ VRAM Bandwidth: 147.2 GB/s
+ VRAM Capacity: 4 GiB
+ 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/AMD/TeraScale-2/FirePro-V9800P.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800P.yaml
new file mode 100644
index 000000000..7f5704772
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/FirePro-V9800P.yaml
@@ -0,0 +1,35 @@
+name: FirePro-V9800P
+humanName: FirePro V9800P
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 850 MHz
+ VRAM Frequency: 1150 MHz
+ VRAM Bandwidth: 147.2 GB/s
+ VRAM Capacity: 4 GiB
+ 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/AMD/TeraScale-2/Mobility-Radeon-HD-5430.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5430.yaml
new file mode 100644
index 000000000..2dc160633
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5430.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-HD-5430
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..003d6a093
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5450.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-5450
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..0c59fe531
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5470.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-HD-5470
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..297296af6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5570.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-5570
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..5e5f32ecc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5650.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-HD-5650
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..6854cce08
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5670-Mac-Edition.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-HD-5670-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..f198ef302
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5730.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-HD-5730
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..77b65c747
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5750.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-HD-5750
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..f0aedd064
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5770.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-HD-5770
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..4c715b8de
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5830.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-HD-5830
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..5209cd464
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5850-Mac-Edition.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-5850-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..0f8bf5e99
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5850.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-HD-5850
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..60b65f063
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Mobility-Radeon-HD-5870.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-5870
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6460.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6460.yaml
new file mode 100644
index 000000000..471f40994
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6460.yaml
@@ -0,0 +1,32 @@
+name: Radeon-E6460
+humanName: Radeon E6460
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6465.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6465.yaml
new file mode 100644
index 000000000..696b64697
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6465.yaml
@@ -0,0 +1,32 @@
+name: Radeon-E6465
+humanName: Radeon E6465
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6760-MXM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6760-MXM.yaml
new file mode 100644
index 000000000..5a661a247
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6760-MXM.yaml
@@ -0,0 +1,32 @@
+name: Radeon-E6760-MXM
+humanName: Radeon E6760 MXM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6760-PCIe.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6760-PCIe.yaml
new file mode 100644
index 000000000..e011bc865
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-E6760-PCIe.yaml
@@ -0,0 +1,33 @@
+name: Radeon-E6760-PCIe
+humanName: Radeon E6760 PCIe
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..075642519
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450-PCI.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-5450-PCI
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..d0cd7d08d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450-PCIe-x1.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-5450-PCIe-x1
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450.yaml
new file mode 100644
index 000000000..873ff27cf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5450.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-5450
+humanName: Radeon HD 5450
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5470.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5470.yaml
new file mode 100644
index 000000000..efea28b2c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5470.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-5470
+humanName: Radeon HD 5470
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5490.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5490.yaml
new file mode 100644
index 000000000..e0f300435
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5490.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-5490
+humanName: Radeon HD 5490
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5530.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5530.yaml
new file mode 100644
index 000000000..a2decbc0a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5530.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-5530
+humanName: Radeon HD 5530
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 9.600 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5550.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5550.yaml
new file mode 100644
index 000000000..3e49d5612
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5550.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-5550
+humanName: Radeon HD 5550
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..72396632a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5570-OEM.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-5570-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-HD-5570.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5570.yaml
new file mode 100644
index 000000000..d73a17231
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5570.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-5570
+humanName: Radeon HD 5570
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5630.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5630.yaml
new file mode 100644
index 000000000..d93fd0555
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5630.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-5630
+humanName: Radeon HD 5630
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 390 MHz
+ VRAM Bandwidth: 12.48 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..dac70d3fc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5670-640SP-Edition.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-5670-640SP-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5670.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5670.yaml
new file mode 100644
index 000000000..ccae500a7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5670.yaml
@@ -0,0 +1,38 @@
+name: Radeon-HD-5670
+humanName: Radeon HD 5670
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 775 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5690.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5690.yaml
new file mode 100644
index 000000000..5aeecf5dc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5690.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-5690
+humanName: Radeon HD 5690
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 775 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 32.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5730.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5730.yaml
new file mode 100644
index 000000000..6837b2fe5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5730.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-5730
+humanName: Radeon HD 5730
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 775 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5750.yaml
new file mode 100644
index 000000000..445330a3f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5750.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-5750
+humanName: Radeon HD 5750
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 700 MHz
+ VRAM Frequency: 1150 MHz
+ VRAM Bandwidth: 73.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..cbd6e68d9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770-Mac-Edition.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-5770-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-HD-5770-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770-X2.yaml
new file mode 100644
index 000000000..411ef0482
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770-X2.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-5770-X2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770.yaml
new file mode 100644
index 000000000..e9754595e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5770.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-5770
+humanName: Radeon HD 5770
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 850 MHz
+ VRAM Frequency: 1200 MHz
+ VRAM Bandwidth: 76.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5830.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5830.yaml
new file mode 100644
index 000000000..21bf7f33d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5830.yaml
@@ -0,0 +1,39 @@
+name: Radeon-HD-5830
+humanName: Radeon HD 5830
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 800 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 128.0 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5850.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5850.yaml
new file mode 100644
index 000000000..b22c7d028
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5850.yaml
@@ -0,0 +1,39 @@
+name: Radeon-HD-5850
+humanName: Radeon HD 5850
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 725 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 128.0 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..9d7a15509
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870-Eyefinity-6.yaml
@@ -0,0 +1,37 @@
+name: Radeon-HD-5870-Eyefinity-6
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..fe5658eaf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870-Mac-Edition.yaml
@@ -0,0 +1,37 @@
+name: Radeon-HD-5870-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-HD-5870.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870.yaml
new file mode 100644
index 000000000..b3b52be8e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5870.yaml
@@ -0,0 +1,39 @@
+name: Radeon-HD-5870
+humanName: Radeon HD 5870
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 850 MHz
+ VRAM Frequency: 1200 MHz
+ VRAM Bandwidth: 153.6 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5950.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5950.yaml
new file mode 100644
index 000000000..55cb2d9bc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5950.yaml
@@ -0,0 +1,38 @@
+name: Radeon-HD-5950
+humanName: Radeon HD 5950
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 725 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 128.0 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5970.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5970.yaml
new file mode 100644
index 000000000..77bdf0fb6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-5970.yaml
@@ -0,0 +1,39 @@
+name: Radeon-HD-5970
+humanName: Radeon HD 5970
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 725 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 128.0 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6230.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6230.yaml
new file mode 100644
index 000000000..72b40b255
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6230.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-6230
+humanName: Radeon HD 6230
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 667 MHz
+ VRAM Bandwidth: 10.67 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6250-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6250-IGP.yaml
new file mode 100644
index 000000000..c57757c77
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6250-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6250-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6250.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6250.yaml
new file mode 100644
index 000000000..5f59385c9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6250.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-6250
+humanName: Radeon HD 6250
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6290-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6290-IGP.yaml
new file mode 100644
index 000000000..f7eb978a0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6290-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6290-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6290.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6290.yaml
new file mode 100644
index 000000000..379271a62
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6290.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-6290
+humanName: Radeon HD 6290
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6310-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6310-IGP.yaml
new file mode 100644
index 000000000..7cb93133b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6310-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6310-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6320-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6320-IGP.yaml
new file mode 100644
index 000000000..cdf89609b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6320-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6320-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6330M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6330M.yaml
new file mode 100644
index 000000000..633397439
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6330M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6330M
+humanName: Radeon HD 6330M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350.yaml
new file mode 100644
index 000000000..4fb550cf2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-6350
+humanName: Radeon HD 6350
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350A.yaml
new file mode 100644
index 000000000..e8daa35dc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350A.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6350A
+humanName: Radeon HD 6350A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350M.yaml
new file mode 100644
index 000000000..45695a9ac
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6350M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6350M
+humanName: Radeon HD 6350M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6370D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6370D-IGP.yaml
new file mode 100644
index 000000000..4e1dcfe6a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6370D-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6370D-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6370M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6370M.yaml
new file mode 100644
index 000000000..1562225a3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6370M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6370M
+humanName: Radeon HD 6370M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 750 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6380G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6380G-IGP.yaml
new file mode 100644
index 000000000..2f79377e9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6380G-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6380G-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6390.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6390.yaml
new file mode 100644
index 000000000..1f39811b0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6390.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-6390
+humanName: Radeon HD 6390
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 16.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6410D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6410D-IGP.yaml
new file mode 100644
index 000000000..fc48089a6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6410D-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6410D-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6430M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6430M.yaml
new file mode 100644
index 000000000..59d4d0e21
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6430M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6430M
+humanName: Radeon HD 6430M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 480 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..5209a3bb0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450-OEM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-6450-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-HD-6450.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450.yaml
new file mode 100644
index 000000000..8189b2d68
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-6450
+humanName: Radeon HD 6450
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450A.yaml
new file mode 100644
index 000000000..2b1b3012c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450A.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6450A
+humanName: Radeon HD 6450A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 533 MHz
+ VRAM Bandwidth: 8.528 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450M.yaml
new file mode 100644
index 000000000..788a6757e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6450M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6450M
+humanName: Radeon HD 6450M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6470M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6470M.yaml
new file mode 100644
index 000000000..c1e74d7f7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6470M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6470M
+humanName: Radeon HD 6470M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 700 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6480G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6480G-IGP.yaml
new file mode 100644
index 000000000..578025254
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6480G-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6480G-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490.yaml
new file mode 100644
index 000000000..66c31a64a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-6490
+humanName: Radeon HD 6490
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 16.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..f6b48254f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490M-Mac-Edition.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6490M-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490M.yaml
new file mode 100644
index 000000000..38fdbf99b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6490M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6490M
+humanName: Radeon HD 6490M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 800 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6510.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6510.yaml
new file mode 100644
index 000000000..bd4ed0f1f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6510.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-6510
+humanName: Radeon HD 6510
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 667 MHz
+ VRAM Bandwidth: 21.34 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6520G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6520G-IGP.yaml
new file mode 100644
index 000000000..05bd6315d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6520G-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6520G-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530.yaml
new file mode 100644
index 000000000..02b2b4e41
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-6530
+humanName: Radeon HD 6530
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 19.20 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530D-IGP.yaml
new file mode 100644
index 000000000..9d8d0c1f5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530D-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6530D-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530M.yaml
new file mode 100644
index 000000000..cfb75e8db
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6530M.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-6530M
+humanName: Radeon HD 6530M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550A.yaml
new file mode 100644
index 000000000..6a1d617ff
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550A.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-6550A
+humanName: Radeon HD 6550A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550D-IGP.yaml
new file mode 100644
index 000000000..d2ba945c6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550D-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6550D-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550M.yaml
new file mode 100644
index 000000000..756eb05a0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6550M.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-6550M
+humanName: Radeon HD 6550M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..d4d2b8a8d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570-OEM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-6570-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-HD-6570.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570.yaml
new file mode 100644
index 000000000..25fe30be2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-6570
+humanName: Radeon HD 6570
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 16.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..d023889c1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570M-Mac-Edition.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-6570M-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570M.yaml
new file mode 100644
index 000000000..38047cf5a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6570M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6570M
+humanName: Radeon HD 6570M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6610.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6610.yaml
new file mode 100644
index 000000000..c9572a50a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6610.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-6610
+humanName: Radeon HD 6610
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6610M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6610M.yaml
new file mode 100644
index 000000000..76caa382d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6610M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6610M
+humanName: Radeon HD 6610M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6620G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6620G-IGP.yaml
new file mode 100644
index 000000000..c04da847c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6620G-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6620G-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6625M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6625M.yaml
new file mode 100644
index 000000000..a4243c0bc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6625M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6625M
+humanName: Radeon HD 6625M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..77e3628d5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6630M-Mac-Edition.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6630M-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6630M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6630M.yaml
new file mode 100644
index 000000000..de8411623
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6630M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6630M
+humanName: Radeon HD 6630M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6650A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6650A.yaml
new file mode 100644
index 000000000..c8332e5fb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6650A.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6650A
+humanName: Radeon HD 6650A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6650M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6650M.yaml
new file mode 100644
index 000000000..e659dac9f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6650M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6650M
+humanName: Radeon HD 6650M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6670.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6670.yaml
new file mode 100644
index 000000000..c33332e0c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6670.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-6670
+humanName: Radeon HD 6670
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 800 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6670A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6670A.yaml
new file mode 100644
index 000000000..68b263f98
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6670A.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-6670A
+humanName: Radeon HD 6670A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6730M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6730M.yaml
new file mode 100644
index 000000000..1bb1a6fd8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6730M.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-6730M
+humanName: Radeon HD 6730M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 725 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750.yaml
new file mode 100644
index 000000000..e178ff8fd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-6750
+humanName: Radeon HD 6750
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 700 MHz
+ VRAM Frequency: 1150 MHz
+ VRAM Bandwidth: 73.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..497fd4c20
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750M-Mac-Edition.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-6750M-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750M.yaml
new file mode 100644
index 000000000..57a4811ae
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6750M.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-6750M
+humanName: Radeon HD 6750M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..8eef24c21
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770-Green-Edition.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-6770-Green-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770.yaml
new file mode 100644
index 000000000..7f5c503d6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-6770
+humanName: Radeon HD 6770
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 850 MHz
+ VRAM Frequency: 1200 MHz
+ VRAM Bandwidth: 76.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..51b92f501
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770M-Mac-Edition.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-6770M-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770M.yaml
new file mode 100644
index 000000000..a03cc7741
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6770M.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-6770M
+humanName: Radeon HD 6770M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 725 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 57.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6790.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6790.yaml
new file mode 100644
index 000000000..205fd3ed2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6790.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-6790
+humanName: Radeon HD 6790
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 840 MHz
+ VRAM Frequency: 1050 MHz
+ VRAM Bandwidth: 134.4 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6830M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6830M.yaml
new file mode 100644
index 000000000..183e5ec43
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6830M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6830M
+humanName: Radeon HD 6830M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 575 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..fd49c9704
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850-1440SP-Edition.yaml
@@ -0,0 +1,37 @@
+name: Radeon-HD-6850-1440SP-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..5fb2e2b30
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850-X2.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-6850-X2
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850.yaml
new file mode 100644
index 000000000..9f516a9ea
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-6850
+humanName: Radeon HD 6850
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 775 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 128.0 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850M.yaml
new file mode 100644
index 000000000..dbc9f2cd6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6850M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-6850M
+humanName: Radeon HD 6850M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 675 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..f0e1e16d8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870-1600SP-Edition.yaml
@@ -0,0 +1,37 @@
+name: Radeon-HD-6870-1600SP-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..2ed306714
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870-X2.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-6870-X2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870.yaml
new file mode 100644
index 000000000..6b316eeed
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870.yaml
@@ -0,0 +1,38 @@
+name: Radeon-HD-6870
+humanName: Radeon HD 6870
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 900 MHz
+ VRAM Frequency: 1050 MHz
+ VRAM Bandwidth: 134.4 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870M.yaml
new file mode 100644
index 000000000..70132ae07
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6870M.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-6870M
+humanName: Radeon HD 6870M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 675 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6950M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6950M.yaml
new file mode 100644
index 000000000..78e2df95a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6950M.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-6950M
+humanName: Radeon HD 6950M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 580 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 115.2 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..50ed43ad5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-Mac-Edition.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-6970M-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..d6a43f70d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-Rebrand.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-6970M-Rebrand
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..8cdb057cd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M-X2.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-6970M-X2
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M.yaml
new file mode 100644
index 000000000..29b87cc72
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6970M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-6970M
+humanName: Radeon HD 6970M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 680 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 115.2 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..8dd27fd91
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6990M-Rebrand.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-6990M-Rebrand
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6990M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6990M.yaml
new file mode 100644
index 000000000..d4299282d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-6990M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-6990M
+humanName: Radeon HD 6990M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 715 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 115.2 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7290-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7290-IGP.yaml
new file mode 100644
index 000000000..c1c7910d8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7290-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7290-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7310-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7310-IGP.yaml
new file mode 100644
index 000000000..3f9def0d2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7310-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7310-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7330M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7330M.yaml
new file mode 100644
index 000000000..d7d2262dc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7330M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7330M
+humanName: Radeon HD 7330M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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: 650 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7340-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7340-IGP.yaml
new file mode 100644
index 000000000..3c518c2b3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7340-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7340-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..c4c628896
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350-OEM-PCI.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-7350-OEM-PCI
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-HD-7350-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350-OEM.yaml
new file mode 100644
index 000000000..3ffd116ce
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350-OEM.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-7350-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-HD-7350M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350M.yaml
new file mode 100644
index 000000000..40df83d4f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7350M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7350M
+humanName: Radeon HD 7350M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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: 650 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7370M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7370M.yaml
new file mode 100644
index 000000000..85b88279c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7370M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7370M
+humanName: Radeon HD 7370M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7410M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7410M.yaml
new file mode 100644
index 000000000..cd73027b6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7410M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7410M
+humanName: Radeon HD 7410M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 480 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7430M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7430M.yaml
new file mode 100644
index 000000000..fd0ea9bd9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7430M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7430M
+humanName: Radeon HD 7430M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..b85e72c06
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450-OEM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-7450-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-HD-7450A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450A.yaml
new file mode 100644
index 000000000..96da1ed6b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450A.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7450A
+humanName: Radeon HD 7450A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450M.yaml
new file mode 100644
index 000000000..c8e2ef777
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7450M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7450M
+humanName: Radeon HD 7450M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..374393944
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470-OEM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-7470-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-HD-7470A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470A.yaml
new file mode 100644
index 000000000..a94116ab6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470A.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7470A
+humanName: Radeon HD 7470A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470M.yaml
new file mode 100644
index 000000000..3aaaa01d9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7470M.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-7470M
+humanName: Radeon HD 7470M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7490M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7490M.yaml
new file mode 100644
index 000000000..214d281cb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7490M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7490M
+humanName: Radeon HD 7490M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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: 800 MHz
+ VRAM Frequency: 950 MHz
+ VRAM Bandwidth: 30.40 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..6431af7c3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7510-OEM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-7510-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-HD-7510M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7510M.yaml
new file mode 100644
index 000000000..bad2f7588
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7510M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7510M
+humanName: Radeon HD 7510M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7530M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7530M.yaml
new file mode 100644
index 000000000..e4bffbffe
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7530M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7530M
+humanName: Radeon HD 7530M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7550M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7550M.yaml
new file mode 100644
index 000000000..9f1de7f95
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7550M.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-7550M
+humanName: Radeon HD 7550M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..a94f1a51f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570-OEM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-7570-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-HD-7570.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570.yaml
new file mode 100644
index 000000000..b119c9a4d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-7570
+humanName: Radeon HD 7570
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570M.yaml
new file mode 100644
index 000000000..e3cc89795
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7570M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7570M
+humanName: Radeon HD 7570M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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: 500 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7590M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7590M.yaml
new file mode 100644
index 000000000..b08d02d9c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7590M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7590M
+humanName: Radeon HD 7590M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7610M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7610M.yaml
new file mode 100644
index 000000000..fdac3e68d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7610M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7610M
+humanName: Radeon HD 7610M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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: 500 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7630M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7630M.yaml
new file mode 100644
index 000000000..6c44d4319
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7630M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7630M
+humanName: Radeon HD 7630M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650A.yaml
new file mode 100644
index 000000000..3ba32930e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650A.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7650A
+humanName: Radeon HD 7650A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..56cf626ab
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650M-Rebrand.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7650M-Rebrand
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650M.yaml
new file mode 100644
index 000000000..acebdf1e4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7650M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7650M
+humanName: Radeon HD 7650M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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: 500 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..495a65b2c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670-OEM.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-7670-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-HD-7670A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670A.yaml
new file mode 100644
index 000000000..5aa292dbe
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670A.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-7670A
+humanName: Radeon HD 7670A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..9fcdd580a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670M-Rebrand.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7670M-Rebrand
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670M.yaml
new file mode 100644
index 000000000..230b1736b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7670M.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7670M
+humanName: Radeon HD 7670M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..1ac181ef0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-Rebrand.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7690M-Rebrand
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..e5a66e0ca
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-XT-Rebrand.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7690M-XT-Rebrand
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..0ea3040ec
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M-XT.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7690M-XT
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M.yaml
new file mode 100644
index 000000000..59fb219d0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7690M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-7690M
+humanName: Radeon HD 7690M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 725 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..92da466c8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-7720-OEM.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-7720-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-HD-8350-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8350-OEM.yaml
new file mode 100644
index 000000000..b59cb23ab
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8350-OEM.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-8350-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-HD-8450-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8450-OEM.yaml
new file mode 100644
index 000000000..f8b172357
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8450-OEM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-8450-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-HD-8470-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8470-OEM.yaml
new file mode 100644
index 000000000..050d147bc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8470-OEM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-8470-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-HD-8490-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8490-OEM.yaml
new file mode 100644
index 000000000..9e4c15c2d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8490-OEM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-8490-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-HD-8510-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8510-OEM.yaml
new file mode 100644
index 000000000..9872c2b39
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8510-OEM.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-8510-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-HD-8550-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8550-OEM.yaml
new file mode 100644
index 000000000..f0bc6c62c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8550-OEM.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-8550-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml
new file mode 100644
index 000000000..2aea99999
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-HD-8570-OEM-Rebrand.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-8570-OEM-Rebrand
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-R5-220-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-220-OEM.yaml
new file mode 100644
index 000000000..93fc862d6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-220-OEM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R5-220-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-R5-230-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-230-OEM.yaml
new file mode 100644
index 000000000..e2807c73b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-230-OEM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R5-230-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-R5-230.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-230.yaml
new file mode 100644
index 000000000..4daa23b9d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-230.yaml
@@ -0,0 +1,36 @@
+name: Radeon-R5-230
+humanName: Radeon R5 230
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 667 MHz
+ VRAM Bandwidth: 10.67 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..32c03f1a6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-235-OEM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R5-235-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-R5-235X-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-235X-OEM.yaml
new file mode 100644
index 000000000..5cb3459db
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-235X-OEM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R5-235X-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale-2/Radeon-R5-310-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-310-OEM.yaml
new file mode 100644
index 000000000..e8e47511e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-310-OEM.yaml
@@ -0,0 +1,34 @@
+name: Radeon-R5-310-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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/AMD/TeraScale-2/Radeon-R5-A220.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-A220.yaml
new file mode 100644
index 000000000..bc5ccc6c9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-2/Radeon-R5-A220.yaml
@@ -0,0 +1,36 @@
+name: Radeon-R5-A220
+humanName: Radeon R5 A220
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 775 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3.yaml
new file mode 100644
index 000000000..7524f91d7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3.yaml
@@ -0,0 +1,50 @@
+name: TeraScale-3
+humanName: TeraScale 3
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 34-40 nm
+ DirectX Support: '11.0'
+ Vulkan Support: 'N/A'
+ Release Date: '2010-12-14'
+ Manufacturer: AMD
+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/AMD/TeraScale-3/FirePro-A300.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-A300.yaml
new file mode 100644
index 000000000..222b48b78
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-A300.yaml
@@ -0,0 +1,32 @@
+name: FirePro-A300
+humanName: FirePro A300
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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/AMD/TeraScale-3/FirePro-A320.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-A320.yaml
new file mode 100644
index 000000000..b536c594d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-A320.yaml
@@ -0,0 +1,32 @@
+name: FirePro-A320
+humanName: FirePro A320
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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/AMD/TeraScale-3/FirePro-V5900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V5900.yaml
new file mode 100644
index 000000000..82189dfd3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V5900.yaml
@@ -0,0 +1,38 @@
+name: FirePro-V5900
+humanName: FirePro V5900
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/TeraScale-3/FirePro-V7900-SDI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900-SDI.yaml
new file mode 100644
index 000000000..4c293fa64
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900-SDI.yaml
@@ -0,0 +1,37 @@
+name: FirePro-V7900-SDI
+humanName: FirePro V7900 SDI
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 725 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 160.0 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/TeraScale-3/FirePro-V7900.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900.yaml
new file mode 100644
index 000000000..9c73482e6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/FirePro-V7900.yaml
@@ -0,0 +1,35 @@
+name: FirePro-V7900
+humanName: FirePro V7900
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 725 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 160.0 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/TeraScale-3/Radeon-HD-6930.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6930.yaml
new file mode 100644
index 000000000..a42d32d7f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6930.yaml
@@ -0,0 +1,37 @@
+name: Radeon-HD-6930
+humanName: Radeon HD 6930
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 750 MHz
+ VRAM Frequency: 1200 MHz
+ VRAM Bandwidth: 153.6 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6950.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6950.yaml
new file mode 100644
index 000000000..6e0382171
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6950.yaml
@@ -0,0 +1,39 @@
+name: Radeon-HD-6950
+humanName: Radeon HD 6950
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 800 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 160.0 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..27465eeba
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6970-X2.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-6970-X2
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6970.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6970.yaml
new file mode 100644
index 000000000..6e20bca3e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6970.yaml
@@ -0,0 +1,39 @@
+name: Radeon-HD-6970
+humanName: Radeon HD 6970
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 880 MHz
+ VRAM Frequency: 1375 MHz
+ VRAM Bandwidth: 176.0 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6990.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6990.yaml
new file mode 100644
index 000000000..875a5c6d1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-6990.yaml
@@ -0,0 +1,39 @@
+name: Radeon-HD-6990
+humanName: Radeon HD 6990
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 830 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 160.0 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7400G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7400G-IGP.yaml
new file mode 100644
index 000000000..e344305fa
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7400G-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-7400G-IGP
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7420G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7420G-IGP.yaml
new file mode 100644
index 000000000..e52c3f824
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7420G-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-7420G-IGP
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7480D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7480D-IGP.yaml
new file mode 100644
index 000000000..88c394185
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7480D-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7480D-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7500G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7500G-IGP.yaml
new file mode 100644
index 000000000..dbbd89e0b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7500G-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-7500G-IGP
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7520G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7520G-IGP.yaml
new file mode 100644
index 000000000..97bcca2f9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7520G-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-7520G-IGP
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7540D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7540D-IGP.yaml
new file mode 100644
index 000000000..f8da43296
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7540D-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7540D-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7560D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7560D-IGP.yaml
new file mode 100644
index 000000000..fcbe10c00
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7560D-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7560D-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7560G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7560G-IGP.yaml
new file mode 100644
index 000000000..918c2e4b3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7560G-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-7560G-IGP
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7600G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7600G-IGP.yaml
new file mode 100644
index 000000000..0fedf0ef1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7600G-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-7600G-IGP
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7620G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7620G-IGP.yaml
new file mode 100644
index 000000000..886ca2a7a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7620G-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-7620G-IGP
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7640G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7640G-IGP.yaml
new file mode 100644
index 000000000..2e0fbe8fe
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7640G-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-7640G-IGP
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7660D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7660D-IGP.yaml
new file mode 100644
index 000000000..ba22378ba
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7660D-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7660D-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7660G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7660G-IGP.yaml
new file mode 100644
index 000000000..e055d8881
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-7660G-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-7660G-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8310G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8310G-IGP.yaml
new file mode 100644
index 000000000..82cdd6e10
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8310G-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-8310G-IGP
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8350G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8350G-IGP.yaml
new file mode 100644
index 000000000..9e7bf5883
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8350G-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-8350G-IGP
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8370D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8370D-IGP.yaml
new file mode 100644
index 000000000..3d273e7da
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8370D-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-8370D-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8410G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8410G-IGP.yaml
new file mode 100644
index 000000000..fcaa83bb9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8410G-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-8410G-IGP
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8450G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8450G-IGP.yaml
new file mode 100644
index 000000000..d111b0f3e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8450G-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-8450G-IGP
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8470D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8470D-IGP.yaml
new file mode 100644
index 000000000..a4f6b1142
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8470D-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-8470D-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8510G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8510G-IGP.yaml
new file mode 100644
index 000000000..f9e5b4caf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8510G-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-8510G-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8550D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8550D-IGP.yaml
new file mode 100644
index 000000000..c4457f4d2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8550D-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-8550D-IGP
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8550G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8550G-IGP.yaml
new file mode 100644
index 000000000..3517e41a6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8550G-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-8550G-IGP
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8570D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8570D-IGP.yaml
new file mode 100644
index 000000000..10ea236d2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8570D-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-8570D-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8610G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8610G-IGP.yaml
new file mode 100644
index 000000000..6d4623ca4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8610G-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-8610G-IGP
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8650D-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8650D-IGP.yaml
new file mode 100644
index 000000000..381d260c8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8650D-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-8650D-IGP
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8650G-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8650G-IGP.yaml
new file mode 100644
index 000000000..6e4a41e2d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale-3/Radeon-HD-8650G-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-8650G-IGP
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale.yaml
new file mode 100644
index 000000000..33cd71291
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale.yaml
@@ -0,0 +1,172 @@
+name: TeraScale
+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: 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-RG220A
+ - FirePro-V3700
+ - FirePro-V3750
+ - FirePro-V5700
+ - FirePro-V7750
+ - FirePro-V7760
+ - FirePro-V7770
+ - FirePro-V8700
+ - FirePro-V8700-Duo
+ - FirePro-V8750
+ - 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
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V3600.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V3600.yaml
new file mode 100644
index 000000000..922c351fa
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V3600.yaml
@@ -0,0 +1,33 @@
+name: FireGL-V3600
+humanName: FireGL V3600
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 16.00 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V5600.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V5600.yaml
new file mode 100644
index 000000000..673d3b87f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V5600.yaml
@@ -0,0 +1,33 @@
+name: FireGL-V5600
+humanName: FireGL V5600
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 800 MHz
+ VRAM Frequency: 1100 MHz
+ VRAM Bandwidth: 35.20 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7600.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7600.yaml
new file mode 100644
index 000000000..47aa0b3b4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7600.yaml
@@ -0,0 +1,37 @@
+name: FireGL-V7600
+humanName: FireGL V7600
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7700.yaml
new file mode 100644
index 000000000..c6406553c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V7700.yaml
@@ -0,0 +1,39 @@
+name: FireGL-V7700
+humanName: FireGL V7700
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 777 MHz
+ VRAM Frequency: 1126 MHz
+ VRAM Bandwidth: 72.06 GB/s
+ VRAM Capacity: 512 MiB
+ 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 DisplayPort
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Length: 254 mm
+ Width: 111 mm
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8600.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8600.yaml
new file mode 100644
index 000000000..e10efde2b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8600.yaml
@@ -0,0 +1,38 @@
+name: FireGL-V8600
+humanName: FireGL V8600
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 688 MHz
+ VRAM Frequency: 868 MHz
+ VRAM Bandwidth: 111.1 GB/s
+ VRAM Capacity: 1024 MiB
+ 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 DisplayPort
+ - 1x S-Video
+ Power Connectors: 1x 6-pin + 1x 8-pin
+ Length: 254 mm
+ Width: 111 mm
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8650.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8650.yaml
new file mode 100644
index 000000000..5f6708ded
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireGL-V8650.yaml
@@ -0,0 +1,37 @@
+name: FireGL-V8650
+humanName: FireGL V8650
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 688 MHz
+ VRAM Frequency: 868 MHz
+ VRAM Bandwidth: 111.1 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireMV-2260-PCIe-x1.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireMV-2260-PCIe-x1.yaml
new file mode 100644
index 000000000..7942fcd52
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireMV-2260-PCIe-x1.yaml
@@ -0,0 +1,34 @@
+name: FireMV-2260-PCIe-x1
+humanName: FireMV 2260 PCIe x1
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: TeraScale
+ Lithography: 55 nm
+ DirectX Support: '10.1'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FireMV-2260.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FireMV-2260.yaml
new file mode 100644
index 000000000..e912cd0fb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FireMV-2260.yaml
@@ -0,0 +1,34 @@
+name: FireMV-2260
+humanName: FireMV 2260
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: TeraScale
+ Lithography: 55 nm
+ DirectX Support: '10.1'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2260-PCI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2260-PCI.yaml
new file mode 100644
index 000000000..94a22a05f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2260-PCI.yaml
@@ -0,0 +1,33 @@
+name: FirePro-2260-PCI
+humanName: FirePro 2260 PCI
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: TeraScale
+ Lithography: 55 nm
+ DirectX Support: '10.1'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml
new file mode 100644
index 000000000..15ecb0829
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View-PCIe-x1.yaml
@@ -0,0 +1,34 @@
+name: FirePro-2450-Multi-View-PCIe-x1
+humanName: FirePro 2450 Multi-View PCIe x1
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: TeraScale
+ Lithography: 55 nm
+ DirectX Support: '10.1'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale/FirePro-2450-Multi-View.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View.yaml
new file mode 100644
index 000000000..e879abf93
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-2450-Multi-View.yaml
@@ -0,0 +1,34 @@
+name: FirePro-2450-Multi-View
+humanName: FirePro 2450 Multi-View
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: TeraScale
+ Lithography: 55 nm
+ DirectX Support: '10.1'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale/FirePro-M5725.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M5725.yaml
new file mode 100644
index 000000000..efddf0a6c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M5725.yaml
@@ -0,0 +1,30 @@
+name: FirePro-M5725
+humanName: FirePro M5725
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 675 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 512 MiB
+ 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/AMD/TeraScale/FirePro-M7740.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M7740.yaml
new file mode 100644
index 000000000..d11d60366
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-M7740.yaml
@@ -0,0 +1,33 @@
+name: FirePro-M7740
+humanName: FirePro M7740
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 846 MHz
+ VRAM Bandwidth: 54.14 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/AMD/TeraScale/FirePro-RG220A.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220A.yaml
new file mode 100644
index 000000000..8bdc42ee9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-RG220A.yaml
@@ -0,0 +1,33 @@
+name: FirePro-RG220A
+humanName: FirePro RG220A
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 512 MiB
+ 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/AMD/TeraScale/FirePro-V3700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3700.yaml
new file mode 100644
index 000000000..9cbb6c318
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3700.yaml
@@ -0,0 +1,34 @@
+name: FirePro-V3700
+humanName: FirePro V3700
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 800 MHz
+ VRAM Frequency: 950 MHz
+ VRAM Bandwidth: 15.20 GB/s
+ VRAM Capacity: 256 MiB
+ 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/AMD/TeraScale/FirePro-V3750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3750.yaml
new file mode 100644
index 000000000..9e8099233
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V3750.yaml
@@ -0,0 +1,36 @@
+name: FirePro-V3750
+humanName: FirePro V3750
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 256 MiB
+ 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/AMD/TeraScale/FirePro-V5700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V5700.yaml
new file mode 100644
index 000000000..451a8100b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V5700.yaml
@@ -0,0 +1,36 @@
+name: FirePro-V5700
+humanName: FirePro V5700
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 700 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 512 MiB
+ 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/AMD/TeraScale/FirePro-V7750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7750.yaml
new file mode 100644
index 000000000..54c8df08e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7750.yaml
@@ -0,0 +1,36 @@
+name: FirePro-V7750
+humanName: FirePro V7750
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 800 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/AMD/TeraScale/FirePro-V7760.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7760.yaml
new file mode 100644
index 000000000..dbea50c91
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7760.yaml
@@ -0,0 +1,34 @@
+name: FirePro-V7760
+humanName: FirePro V7760
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: TeraScale
+ Lithography: 55 nm
+ DirectX Support: '10.1'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale/FirePro-V7770.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7770.yaml
new file mode 100644
index 000000000..c266f52d7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V7770.yaml
@@ -0,0 +1,34 @@
+name: FirePro-V7770
+humanName: FirePro V7770
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: TeraScale
+ Lithography: 55 nm
+ DirectX Support: '10.1'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale/FirePro-V8700-Duo.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700-Duo.yaml
new file mode 100644
index 000000000..c49a8795c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700-Duo.yaml
@@ -0,0 +1,34 @@
+name: FirePro-V8700-Duo
+humanName: FirePro V8700 Duo
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 750 MHz
+ VRAM Frequency: 850 MHz
+ VRAM Bandwidth: 108.8 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/AMD/TeraScale/FirePro-V8700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700.yaml
new file mode 100644
index 000000000..af2328670
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8700.yaml
@@ -0,0 +1,38 @@
+name: FirePro-V8700
+humanName: FirePro V8700
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 750 MHz
+ VRAM Frequency: 850 MHz
+ VRAM Bandwidth: 108.8 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/AMD/TeraScale/FirePro-V8750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8750.yaml
new file mode 100644
index 000000000..69feeb441
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/FirePro-V8750.yaml
@@ -0,0 +1,38 @@
+name: FirePro-V8750
+humanName: FirePro V8750
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 750 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 115.2 GB/s
+ VRAM Capacity: 2 GiB
+ 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/AMD/TeraScale/Mobility-FireGL-V5600.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5600.yaml
new file mode 100644
index 000000000..d66c03b92
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5600.yaml
@@ -0,0 +1,31 @@
+name: Mobility-FireGL-V5600
+humanName: Mobility FireGL V5600
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5700.yaml
new file mode 100644
index 000000000..ab73a0e47
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5700.yaml
@@ -0,0 +1,31 @@
+name: Mobility-FireGL-V5700
+humanName: Mobility FireGL V5700
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5725.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5725.yaml
new file mode 100644
index 000000000..402cb5bce
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-FireGL-V5725.yaml
@@ -0,0 +1,31 @@
+name: Mobility-FireGL-V5725
+humanName: Mobility FireGL V5725
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: TeraScale
+ Lithography: 55 nm
+ DirectX Support: '10.1'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..2c535615f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400-XT-Mac-Edition.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-HD-2400-XT-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..38121c0a7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400-XT.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-HD-2400-XT
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400.yaml
new file mode 100644
index 000000000..4a66b23c0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2400.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-HD-2400
+humanName: Mobility Radeon HD 2400
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..008e7a001
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600-XT-Mac-Edition.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-2600-XT-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..466e65c36
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600-XT.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-2600-XT
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600.yaml
new file mode 100644
index 000000000..783c756d1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2600.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-2600
+humanName: Mobility Radeon HD 2600
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2700.yaml
new file mode 100644
index 000000000..d594b72a1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-2700.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-2700
+humanName: Mobility Radeon HD 2700
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3410.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3410.yaml
new file mode 100644
index 000000000..de376cf2d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3410.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-HD-3410
+humanName: Mobility Radeon HD 3410
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3430.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3430.yaml
new file mode 100644
index 000000000..3db8a6103
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3430.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-3430
+humanName: Mobility Radeon HD 3430
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3450.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3450.yaml
new file mode 100644
index 000000000..ec8aaf10a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3450.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-3450
+humanName: Mobility Radeon HD 3450
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3470.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3470.yaml
new file mode 100644
index 000000000..931267adf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3470.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-3470
+humanName: Mobility Radeon HD 3470
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 680 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3650.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3650.yaml
new file mode 100644
index 000000000..824479f58
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3650.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-3650
+humanName: Mobility Radeon HD 3650
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3670.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3670.yaml
new file mode 100644
index 000000000..89e10ca06
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3670.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-3670
+humanName: Mobility Radeon HD 3670
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 680 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..9e7fdc7f1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3850-X2.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-HD-3850-X2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3850.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3850.yaml
new file mode 100644
index 000000000..b245a2927
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3850.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-3850
+humanName: Mobility Radeon HD 3850
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 580 MHz
+ VRAM Frequency: 750 MHz
+ VRAM Bandwidth: 48.00 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..d91831eaf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3870-X2.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-3870-X2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3870.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3870.yaml
new file mode 100644
index 000000000..1052e70dd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-3870.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-3870
+humanName: Mobility Radeon HD 3870
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 660 MHz
+ VRAM Frequency: 850 MHz
+ VRAM Bandwidth: 54.40 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4100-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4100-IGP.yaml
new file mode 100644
index 000000000..d5bd0b910
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4100-IGP.yaml
@@ -0,0 +1,33 @@
+name: Mobility-Radeon-HD-4100-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4200-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4200-IGP.yaml
new file mode 100644
index 000000000..d0fa87e8a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4200-IGP.yaml
@@ -0,0 +1,33 @@
+name: Mobility-Radeon-HD-4200-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4225-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4225-IGP.yaml
new file mode 100644
index 000000000..298227942
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4225-IGP.yaml
@@ -0,0 +1,33 @@
+name: Mobility-Radeon-HD-4225-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4250-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4250-IGP.yaml
new file mode 100644
index 000000000..5b9226dfc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4250-IGP.yaml
@@ -0,0 +1,34 @@
+name: Mobility-Radeon-HD-4250-IGP
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4270-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4270-IGP.yaml
new file mode 100644
index 000000000..fb9296e90
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4270-IGP.yaml
@@ -0,0 +1,33 @@
+name: Mobility-Radeon-HD-4270-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4330.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4330.yaml
new file mode 100644
index 000000000..649a25fbb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4330.yaml
@@ -0,0 +1,33 @@
+name: Mobility-Radeon-HD-4330
+humanName: Mobility Radeon HD 4330
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 9.600 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4350.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4350.yaml
new file mode 100644
index 000000000..9a0ee60eb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4350.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-4350
+humanName: Mobility Radeon HD 4350
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4530.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4530.yaml
new file mode 100644
index 000000000..b9669ecfc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4530.yaml
@@ -0,0 +1,33 @@
+name: Mobility-Radeon-HD-4530
+humanName: Mobility Radeon HD 4530
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 11.20 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4550.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4550.yaml
new file mode 100644
index 000000000..d8ab9d559
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4550.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-4550
+humanName: Mobility Radeon HD 4550
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: TeraScale
+ Lithography: 55 nm
+ DirectX Support: '10.1'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4570.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4570.yaml
new file mode 100644
index 000000000..ccb50abd1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4570.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-4570
+humanName: Mobility Radeon HD 4570
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 680 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4650.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4650.yaml
new file mode 100644
index 000000000..cdcf7f17d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4650.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-4650
+humanName: Mobility Radeon HD 4650
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 667 MHz
+ VRAM Bandwidth: 21.34 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..0c4bc9557
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4670-Mac-Edition.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-4670-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4670.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4670.yaml
new file mode 100644
index 000000000..e899446e0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4670.yaml
@@ -0,0 +1,33 @@
+name: Mobility-Radeon-HD-4670
+humanName: Mobility Radeon HD 4670
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 675 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4830.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4830.yaml
new file mode 100644
index 000000000..b7e47166b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4830.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-4830
+humanName: Mobility Radeon HD 4830
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..9768105b0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850-Mac-Edition.yaml
@@ -0,0 +1,34 @@
+name: Mobility-Radeon-HD-4850-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..45b5c488a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850-X2.yaml
@@ -0,0 +1,34 @@
+name: Mobility-Radeon-HD-4850-X2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850.yaml
new file mode 100644
index 000000000..186afb6a7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4850.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-HD-4850
+humanName: Mobility Radeon HD 4850
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 503 MHz
+ VRAM Frequency: 850 MHz
+ VRAM Bandwidth: 54.40 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4860.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4860.yaml
new file mode 100644
index 000000000..27c115d2b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4860.yaml
@@ -0,0 +1,34 @@
+name: Mobility-Radeon-HD-4860
+humanName: Mobility Radeon HD 4860
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..a8e7f9531
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4870-X2.yaml
@@ -0,0 +1,34 @@
+name: Mobility-Radeon-HD-4870-X2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4870.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4870.yaml
new file mode 100644
index 000000000..3a6cfdbbe
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-4870.yaml
@@ -0,0 +1,34 @@
+name: Mobility-Radeon-HD-4870
+humanName: Mobility Radeon HD 4870
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 888 MHz
+ VRAM Bandwidth: 56.83 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-5145.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-5145.yaml
new file mode 100644
index 000000000..450ed610b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-5145.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-HD-5145
+humanName: Mobility Radeon HD 5145
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 720 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-5165.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-5165.yaml
new file mode 100644
index 000000000..a699b942e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-5165.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-HD-5165
+humanName: Mobility Radeon HD 5165
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-530v.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-530v.yaml
new file mode 100644
index 000000000..f06f87e98
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-530v.yaml
@@ -0,0 +1,33 @@
+name: Mobility-Radeon-HD-530v
+humanName: Mobility Radeon HD 530v
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-540v.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-540v.yaml
new file mode 100644
index 000000000..ddb0ffcc6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-540v.yaml
@@ -0,0 +1,33 @@
+name: Mobility-Radeon-HD-540v
+humanName: Mobility Radeon HD 540v
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-545v.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-545v.yaml
new file mode 100644
index 000000000..4b6dc95bb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-545v.yaml
@@ -0,0 +1,33 @@
+name: Mobility-Radeon-HD-545v
+humanName: Mobility Radeon HD 545v
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 680 MHz
+ VRAM Frequency: 750 MHz
+ VRAM Bandwidth: 12.00 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-550v.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-550v.yaml
new file mode 100644
index 000000000..644bb608d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-550v.yaml
@@ -0,0 +1,33 @@
+name: Mobility-Radeon-HD-550v
+humanName: Mobility Radeon HD 550v
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 19.20 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-560v.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-560v.yaml
new file mode 100644
index 000000000..2933ec4d3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-560v.yaml
@@ -0,0 +1,33 @@
+name: Mobility-Radeon-HD-560v
+humanName: Mobility Radeon HD 560v
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-565v.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-565v.yaml
new file mode 100644
index 000000000..737328352
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Mobility-Radeon-HD-565v.yaml
@@ -0,0 +1,33 @@
+name: Mobility-Radeon-HD-565v
+humanName: Mobility Radeon HD 565v
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 675 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-3000-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-3000-IGP.yaml
new file mode 100644
index 000000000..0e17c97cc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-3000-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-3000-IGP
+humanName: Radeon 3000 IGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: TeraScale
+ Lithography: 65 nm
+ DirectX Support: '10.0'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-3100-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-3100-IGP.yaml
new file mode 100644
index 000000000..cf36f5be6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-3100-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-3100-IGP
+humanName: Radeon 3100 IGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 350 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: 85 mm²
+ GPU: RS780
+ GPU Variant: RS780C
+ TDP: unknown
+ FP32 Compute: 28.00 GFLOPS
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-3100-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-3100-Mobile-IGP.yaml
new file mode 100644
index 000000000..ed3b55575
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-3100-Mobile-IGP.yaml
@@ -0,0 +1,33 @@
+name: Radeon-3100-Mobile-IGP
+humanName: Radeon 3100 Mobile IGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 350 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: 85 mm²
+ GPU: RS780
+ GPU Variant: RS780M
+ TDP: unknown
+ FP32 Compute: 28.00 GFLOPS
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E2400.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E2400.yaml
new file mode 100644
index 000000000..ee80b49c0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E2400.yaml
@@ -0,0 +1,32 @@
+name: Radeon-E2400
+humanName: Radeon E2400
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 11.20 GB/s
+ VRAM Capacity: 128 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E4690-MXM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E4690-MXM.yaml
new file mode 100644
index 000000000..464c09e50
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E4690-MXM.yaml
@@ -0,0 +1,32 @@
+name: Radeon-E4690-MXM
+humanName: Radeon E4690 MXM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E4690-PCIe.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E4690-PCIe.yaml
new file mode 100644
index 000000000..217220892
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-E4690-PCIe.yaml
@@ -0,0 +1,33 @@
+name: Radeon-E4690-PCIe
+humanName: Radeon E4690 PCIe
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2350-PRO.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2350-PRO.yaml
new file mode 100644
index 000000000..640361250
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2350-PRO.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-2350-PRO
+humanName: Radeon HD 2350 PRO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ Architecture: TeraScale
+ Lithography: 65 nm
+ DirectX Support: '10.0'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..5d43f7173
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-2400-PRO-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..9e49cae17
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO-PCI.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-2400-PRO-PCI
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO.yaml
new file mode 100644
index 000000000..3255382a0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-PRO.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-2400-PRO
+humanName: Radeon HD 2400 PRO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 525 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-XT.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-XT.yaml
new file mode 100644
index 000000000..a059052a9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400-XT.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-2400-XT
+humanName: Radeon HD 2400 XT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400.yaml
new file mode 100644
index 000000000..cd44ea726
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2400.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-2400
+humanName: Radeon HD 2400
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 398 MHz
+ VRAM Frequency: 495 MHz
+ VRAM Bandwidth: 7.920 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..4b07edd24
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-PRO-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-2600-PRO-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-PRO.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-PRO.yaml
new file mode 100644
index 000000000..25ffc9702
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-PRO.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-2600-PRO
+humanName: Radeon HD 2600 PRO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 16.00 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..2562bb466
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-2600-XT-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..c61e0f076
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-Mac-Edition.yaml
@@ -0,0 +1,30 @@
+name: Radeon-HD-2600-XT-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale/Radeon-HD-2600-XT-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-X2.yaml
new file mode 100644
index 000000000..aaa0d5678
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT-X2.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-2600-XT-X2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT.yaml
new file mode 100644
index 000000000..50a546990
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2600-XT.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-2600-XT
+humanName: Radeon HD 2600 XT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 800 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-GT.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-GT.yaml
new file mode 100644
index 000000000..36bc05501
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-GT.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-2900-GT
+humanName: Radeon HD 2900 GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 601 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-PRO.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-PRO.yaml
new file mode 100644
index 000000000..e587bfaee
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-PRO.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-2900-PRO
+humanName: Radeon HD 2900 PRO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-XT.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-XT.yaml
new file mode 100644
index 000000000..58ff2cd94
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-XT.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-2900-XT
+humanName: Radeon HD 2900 XT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 743 MHz
+ VRAM Frequency: 828 MHz
+ VRAM Bandwidth: 106.0 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-XTX.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-XTX.yaml
new file mode 100644
index 000000000..f37e27869
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2900-XTX.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-2900-XTX
+humanName: Radeon HD 2900 XTX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 743 MHz
+ VRAM Frequency: 828 MHz
+ VRAM Bandwidth: 106.0 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2950-PRO.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2950-PRO.yaml
new file mode 100644
index 000000000..623554d38
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2950-PRO.yaml
@@ -0,0 +1,37 @@
+name: Radeon-HD-2950-PRO
+humanName: Radeon HD 2950 PRO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 38.40 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2950-XTX.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2950-XTX.yaml
new file mode 100644
index 000000000..ab14f964f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-2950-XTX.yaml
@@ -0,0 +1,37 @@
+name: Radeon-HD-2950-XTX
+humanName: Radeon HD 2950 XTX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 777 MHz
+ VRAM Frequency: 1126 MHz
+ VRAM Bandwidth: 72.06 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3200-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3200-IGP.yaml
new file mode 100644
index 000000000..2f8f976ef
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3200-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-3200-IGP
+humanName: Radeon HD 3200 IGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base 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: 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3200-Mobile-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3200-Mobile-IGP.yaml
new file mode 100644
index 000000000..0d36e8800
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3200-Mobile-IGP.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-3200-Mobile-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3300-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3300-IGP.yaml
new file mode 100644
index 000000000..3163da646
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3300-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-HD-3300-IGP
+humanName: Radeon HD 3300 IGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base 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: 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3410.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3410.yaml
new file mode 100644
index 000000000..bf21bda2a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3410.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-3410
+humanName: Radeon HD 3410
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 519 MHz
+ VRAM Frequency: 396 MHz
+ VRAM Bandwidth: 6.336 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-AGP.yaml
new file mode 100644
index 000000000..cc77f95ba
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-AGP.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-3450-AGP
+humanName: Radeon HD 3450 AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-PCI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-PCI.yaml
new file mode 100644
index 000000000..93076a1f0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-PCI.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-3450-PCI
+humanName: Radeon HD 3450 PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-X2.yaml
new file mode 100644
index 000000000..c525dfa3b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450-X2.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-3450-X2
+humanName: Radeon HD 3450 X2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450.yaml
new file mode 100644
index 000000000..5029f3f13
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3450.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-3450
+humanName: Radeon HD 3450
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3470.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3470.yaml
new file mode 100644
index 000000000..e5dc6f458
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3470.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-3470
+humanName: Radeon HD 3470
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 800 MHz
+ VRAM Frequency: 950 MHz
+ VRAM Bandwidth: 15.20 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3550.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3550.yaml
new file mode 100644
index 000000000..54b9d6608
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3550.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-3550
+humanName: Radeon HD 3550
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 594 MHz
+ VRAM Frequency: 396 MHz
+ VRAM Bandwidth: 6.336 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3570.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3570.yaml
new file mode 100644
index 000000000..56e02102d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3570.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-3570
+humanName: Radeon HD 3570
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 796 MHz
+ VRAM Frequency: 495 MHz
+ VRAM Bandwidth: 7.920 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3610.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3610.yaml
new file mode 100644
index 000000000..9af28314d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3610.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-3610
+humanName: Radeon HD 3610
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 594 MHz
+ VRAM Frequency: 396 MHz
+ VRAM Bandwidth: 12.67 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3650-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3650-AGP.yaml
new file mode 100644
index 000000000..d8901e888
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3650-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-3650-AGP
+humanName: Radeon HD 3650 AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 725 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 16.00 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3650.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3650.yaml
new file mode 100644
index 000000000..2217d95db
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3650.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-3650
+humanName: Radeon HD 3650
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 725 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3690.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3690.yaml
new file mode 100644
index 000000000..e45a904ef
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3690.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-3690
+humanName: Radeon HD 3690
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 670 MHz
+ VRAM Frequency: 830 MHz
+ VRAM Bandwidth: 26.56 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3730.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3730.yaml
new file mode 100644
index 000000000..bb2836427
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3730.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-3730
+humanName: Radeon HD 3730
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 722 MHz
+ VRAM Frequency: 396 MHz
+ VRAM Bandwidth: 12.67 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3750.yaml
new file mode 100644
index 000000000..14f52eb49
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3750.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-3750
+humanName: Radeon HD 3750
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 796 MHz
+ VRAM Frequency: 693 MHz
+ VRAM Bandwidth: 22.18 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3830.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3830.yaml
new file mode 100644
index 000000000..fd2d51d2d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3830.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-3830
+humanName: Radeon HD 3830
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 668 MHz
+ VRAM Frequency: 828 MHz
+ VRAM Bandwidth: 26.50 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-AGP.yaml
new file mode 100644
index 000000000..0377f8667
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-AGP.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-3850-AGP
+humanName: Radeon HD 3850 AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 668 MHz
+ VRAM Frequency: 828 MHz
+ VRAM Bandwidth: 52.99 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-X2.yaml
new file mode 100644
index 000000000..ba4a2b6ed
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-X2.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-3850-X2
+humanName: Radeon HD 3850 X2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 669 MHz
+ VRAM Frequency: 828 MHz
+ VRAM Bandwidth: 52.99 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-X3.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-X3.yaml
new file mode 100644
index 000000000..693efcb64
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850-X3.yaml
@@ -0,0 +1,34 @@
+name: Radeon-HD-3850-X3
+humanName: Radeon HD 3850 X3
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 669 MHz
+ VRAM Frequency: 850 MHz
+ VRAM Bandwidth: 54.40 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850.yaml
new file mode 100644
index 000000000..54b15e2ce
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3850.yaml
@@ -0,0 +1,37 @@
+name: Radeon-HD-3850
+humanName: Radeon HD 3850
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 668 MHz
+ VRAM Frequency: 830 MHz
+ VRAM Bandwidth: 53.12 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-AGP.yaml
new file mode 100644
index 000000000..cc31b561e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-AGP.yaml
@@ -0,0 +1,37 @@
+name: Radeon-HD-3870-AGP
+humanName: Radeon HD 3870 AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 777 MHz
+ VRAM Frequency: 1126 MHz
+ VRAM Bandwidth: 72.06 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..1bbee7543
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-Mac-Edition.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-3870-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale/Radeon-HD-3870-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-X2.yaml
new file mode 100644
index 000000000..371485b4c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870-X2.yaml
@@ -0,0 +1,39 @@
+name: Radeon-HD-3870-X2
+humanName: Radeon HD 3870 X2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 825 MHz
+ VRAM Frequency: 901 MHz
+ VRAM Bandwidth: 57.66 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870.yaml
new file mode 100644
index 000000000..1c0dd27bf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-3870.yaml
@@ -0,0 +1,37 @@
+name: Radeon-HD-3870
+humanName: Radeon HD 3870
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 777 MHz
+ VRAM Frequency: 1126 MHz
+ VRAM Bandwidth: 72.06 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4200-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4200-IGP.yaml
new file mode 100644
index 000000000..2a1ab26d6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4200-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-4200-IGP
+humanName: Radeon HD 4200 IGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base 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: 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4250-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4250-IGP.yaml
new file mode 100644
index 000000000..a4cbb528b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4250-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-4250-IGP
+humanName: Radeon HD 4250 IGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base 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
+ TDP: unknown
+ FP32 Compute: 44.80 GFLOPS
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4250.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4250.yaml
new file mode 100644
index 000000000..384292e4a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4250.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-4250
+humanName: Radeon HD 4250
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 594 MHz
+ VRAM Frequency: 396 MHz
+ VRAM Bandwidth: 6.336 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4290-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4290-IGP.yaml
new file mode 100644
index 000000000..e574a1bc5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4290-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-HD-4290-IGP
+humanName: Radeon HD 4290 IGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base 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: 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-AGP.yaml
new file mode 100644
index 000000000..c91c82371
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-4350-AGP
+humanName: Radeon HD 4350 AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 650 MHz
+ VRAM Bandwidth: 10.40 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-PCI.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-PCI.yaml
new file mode 100644
index 000000000..8193ba044
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-PCI.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-4350-PCI
+humanName: Radeon HD 4350 PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..79b3e6abc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350-PCIe-x1.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-4350-PCIe-x1
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350.yaml
new file mode 100644
index 000000000..d23912599
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4350.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-4350
+humanName: Radeon HD 4350
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4450.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4450.yaml
new file mode 100644
index 000000000..5c51240b1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4450.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-4450
+humanName: Radeon HD 4450
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4520.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4520.yaml
new file mode 100644
index 000000000..17d17fd9b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4520.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-4520
+humanName: Radeon HD 4520
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4550.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4550.yaml
new file mode 100644
index 000000000..280ed0199
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4550.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-4550
+humanName: Radeon HD 4550
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 655 MHz
+ VRAM Bandwidth: 10.48 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4570-Rebrand.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4570-Rebrand.yaml
new file mode 100644
index 000000000..30e14601c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4570-Rebrand.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-4570-Rebrand
+humanName: Radeon HD 4570 Rebrand
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 796 MHz
+ VRAM Frequency: 396 MHz
+ VRAM Bandwidth: 12.67 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4570.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4570.yaml
new file mode 100644
index 000000000..28e0faf5c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4570.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-4570
+humanName: Radeon HD 4570
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4580.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4580.yaml
new file mode 100644
index 000000000..f2f0d980a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4580.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-4580
+humanName: Radeon HD 4580
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 796 MHz
+ VRAM Frequency: 693 MHz
+ VRAM Bandwidth: 22.18 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4650-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4650-AGP.yaml
new file mode 100644
index 000000000..1f8041265
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4650-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-4650-AGP
+humanName: Radeon HD 4650 AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4650.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4650.yaml
new file mode 100644
index 000000000..18f61c08b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4650.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-4650
+humanName: Radeon HD 4650
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670-AGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670-AGP.yaml
new file mode 100644
index 000000000..2e8a5d6cb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-4670-AGP
+humanName: Radeon HD 4670 AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 750 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670-X2.yaml
new file mode 100644
index 000000000..054a0268c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670-X2.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-4670-X2
+humanName: Radeon HD 4670 X2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 750 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670.yaml
new file mode 100644
index 000000000..0d7753cb4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4670.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-4670
+humanName: Radeon HD 4670
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 750 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 32.00 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4700.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4700.yaml
new file mode 100644
index 000000000..aae25fa15
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4700.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-4700
+humanName: Radeon HD 4700
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4710.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4710.yaml
new file mode 100644
index 000000000..416878470
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4710.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-4710
+humanName: Radeon HD 4710
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 750 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4720.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4720.yaml
new file mode 100644
index 000000000..dee251440
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4720.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-4720
+humanName: Radeon HD 4720
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 667 MHz
+ VRAM Bandwidth: 21.34 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4730-OEM.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4730-OEM.yaml
new file mode 100644
index 000000000..663046de6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4730-OEM.yaml
@@ -0,0 +1,33 @@
+name: Radeon-HD-4730-OEM
+humanName: Radeon HD 4730 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 669 MHz
+ VRAM Frequency: 396 MHz
+ VRAM Bandwidth: 25.34 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/AMD/TeraScale/Radeon-HD-4730.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4730.yaml
new file mode 100644
index 000000000..11e316ee6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4730.yaml
@@ -0,0 +1,37 @@
+name: Radeon-HD-4730
+humanName: Radeon HD 4730
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 750 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 57.60 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4750.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4750.yaml
new file mode 100644
index 000000000..5df607cb9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4750.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-4750
+humanName: Radeon HD 4750
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 730 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4770.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4770.yaml
new file mode 100644
index 000000000..a080041f1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4770.yaml
@@ -0,0 +1,37 @@
+name: Radeon-HD-4770
+humanName: Radeon HD 4770
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 750 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4810.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4810.yaml
new file mode 100644
index 000000000..98620b05c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4810.yaml
@@ -0,0 +1,37 @@
+name: Radeon-HD-4810
+humanName: Radeon HD 4810
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 57.60 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4830.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4830.yaml
new file mode 100644
index 000000000..0025a508d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4830.yaml
@@ -0,0 +1,39 @@
+name: Radeon-HD-4830
+humanName: Radeon HD 4830
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 575 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 57.60 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4850-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4850-X2.yaml
new file mode 100644
index 000000000..b4c4f8089
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4850-X2.yaml
@@ -0,0 +1,37 @@
+name: Radeon-HD-4850-X2
+humanName: Radeon HD 4850 X2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 995 MHz
+ VRAM Bandwidth: 63.68 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4850.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4850.yaml
new file mode 100644
index 000000000..424e00ead
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4850.yaml
@@ -0,0 +1,37 @@
+name: Radeon-HD-4850
+humanName: Radeon HD 4850
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 993 MHz
+ VRAM Bandwidth: 63.55 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4855.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4855.yaml
new file mode 100644
index 000000000..eb35ba7a5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4855.yaml
@@ -0,0 +1,37 @@
+name: Radeon-HD-4855
+humanName: Radeon HD 4855
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 575 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 115.2 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4860.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4860.yaml
new file mode 100644
index 000000000..de0291ab5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4860.yaml
@@ -0,0 +1,36 @@
+name: Radeon-HD-4860
+humanName: Radeon HD 4860
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 700 MHz
+ VRAM Frequency: 750 MHz
+ VRAM Bandwidth: 96.00 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..f672c4975
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870-Mac-Edition.yaml
@@ -0,0 +1,35 @@
+name: Radeon-HD-4870-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/AMD/TeraScale/Radeon-HD-4870-X2.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870-X2.yaml
new file mode 100644
index 000000000..ccd7da0c2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870-X2.yaml
@@ -0,0 +1,39 @@
+name: Radeon-HD-4870-X2
+humanName: Radeon HD 4870 X2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 750 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 115.2 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870.yaml
new file mode 100644
index 000000000..4bdbb6361
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4870.yaml
@@ -0,0 +1,39 @@
+name: Radeon-HD-4870
+humanName: Radeon HD 4870
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 750 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 115.2 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4890.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4890.yaml
new file mode 100644
index 000000000..d9406e8a8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-HD-4890.yaml
@@ -0,0 +1,39 @@
+name: Radeon-HD-4890
+humanName: Radeon HD 4890
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 850 MHz
+ VRAM Frequency: 975 MHz
+ VRAM Bandwidth: 124.8 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-Xpress-2100-IGP.yaml b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-Xpress-2100-IGP.yaml
new file mode 100644
index 000000000..1a6dc5870
--- /dev/null
+++ b/specs/GPUs-CONSUMER/AMD/TeraScale/Radeon-Xpress-2100-IGP.yaml
@@ -0,0 +1,31 @@
+name: Radeon-Xpress-2100-IGP
+humanName: Radeon Xpress 2100 IGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base 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: 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/IBM.yaml b/specs/GPUs-CONSUMER/ATI/IBM.yaml
new file mode 100644
index 000000000..8db120c0c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/IBM.yaml
@@ -0,0 +1,18 @@
+name: IBM
+humanName: IBM
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 180-250 nm
+ DirectX Support: '6.0'
+ Vulkan Support: 'N/A'
+ Release Date: '1999-03-01'
+ Manufacturer: ATI
+sections:
+ - header: WHOLE RANGE
+ members:
+ - Fire-GL2
+ - Fire-GL3
+ - Fire-GL4
+ - Fire-GL1
diff --git a/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL1.yaml b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL1.yaml
new file mode 100644
index 000000000..40faf4e9b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL1.yaml
@@ -0,0 +1,32 @@
+name: Fire-GL1
+humanName: Fire GL1
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 45 MHz
+ VRAM Frequency: 100 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL2.yaml b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL2.yaml
new file mode 100644
index 000000000..f497de0b1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL2.yaml
@@ -0,0 +1,34 @@
+name: Fire-GL2
+humanName: Fire GL2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 120 MHz
+ VRAM Frequency: 120 MHz
+ VRAM Bandwidth: 7.680 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL3.yaml b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL3.yaml
new file mode 100644
index 000000000..fe57b10c2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL3.yaml
@@ -0,0 +1,34 @@
+name: Fire-GL3
+humanName: Fire GL3
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 120 MHz
+ VRAM Frequency: 125 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL4.yaml b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL4.yaml
new file mode 100644
index 000000000..575e43331
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/IBM/Fire-GL4.yaml
@@ -0,0 +1,34 @@
+name: Fire-GL4
+humanName: Fire GL4
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 150 MHz
+ VRAM Frequency: 150 MHz
+ VRAM Bandwidth: 9.600 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R300.yaml b/specs/GPUs-CONSUMER/ATI/R300.yaml
new file mode 100644
index 000000000..ab8b342f4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300.yaml
@@ -0,0 +1,91 @@
+name: R300
+humanName: R300
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 110-150 nm
+ DirectX Support: '9.0'
+ Vulkan Support: 'N/A'
+ Release Date: '2002-07-01'
+ Manufacturer: ATI
+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/ATI/R300/All-In-Wonder-2006-AGP-Edition.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-2006-AGP-Edition.yaml
new file mode 100644
index 000000000..79a152d18
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-2006-AGP-Edition.yaml
@@ -0,0 +1,33 @@
+name: All-In-Wonder-2006-AGP-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9500.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9500.yaml
new file mode 100644
index 000000000..fb3243ff6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9500.yaml
@@ -0,0 +1,33 @@
+name: All-In-Wonder-9500
+humanName: All-In-Wonder 9500
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 277 MHz
+ VRAM Frequency: 270 MHz
+ VRAM Bandwidth: 8.640 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: No outputs
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..43ef43b1e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-PRO.yaml
@@ -0,0 +1,32 @@
+name: All-In-Wonder-9600-PRO
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..00d06c91a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600-XT.yaml
@@ -0,0 +1,33 @@
+name: All-In-Wonder-9600-XT
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600.yaml b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600.yaml
new file mode 100644
index 000000000..9a309d617
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9600.yaml
@@ -0,0 +1,32 @@
+name: All-In-Wonder-9600
+humanName: All-In-Wonder 9600
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 324 MHz
+ VRAM Frequency: 196 MHz
+ VRAM Bandwidth: 6.272 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..901029140
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9700-PRO.yaml
@@ -0,0 +1,35 @@
+name: All-In-Wonder-9700-PRO
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 2x S-Video
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..69525f7c9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-PRO.yaml
@@ -0,0 +1,35 @@
+name: All-In-Wonder-9800-PRO
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 2x S-Video
+ Power Connectors: Floppy
+ Pixel Shaders: 8
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..7a6fb8bfe
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-9800-SE.yaml
@@ -0,0 +1,35 @@
+name: All-In-Wonder-9800-SE
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 2x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..f0529396b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/All-In-Wonder-X600-PRO.yaml
@@ -0,0 +1,35 @@
+name: All-In-Wonder-X600-PRO
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9500-Z1-128.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9500-Z1-128.yaml
new file mode 100644
index 000000000..12fac29bf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9500-Z1-128.yaml
@@ -0,0 +1,33 @@
+name: FireGL-9500-Z1-128
+humanName: FireGL 9500 Z1-128
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 325 MHz
+ VRAM Frequency: 310 MHz
+ VRAM Bandwidth: 19.84 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 2x DVI
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-128.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-128.yaml
new file mode 100644
index 000000000..c007ae34b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-128.yaml
@@ -0,0 +1,35 @@
+name: FireGL-9600-T2-128
+humanName: FireGL 9600 T2-128
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 398 MHz
+ VRAM Frequency: 297 MHz
+ VRAM Bandwidth: 9.504 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-64S.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-64S.yaml
new file mode 100644
index 000000000..0a37ee952
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9600-T2-64S.yaml
@@ -0,0 +1,33 @@
+name: FireGL-9600-T2-64S
+humanName: FireGL 9600 T2-64S
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 324 MHz
+ VRAM Frequency: 203 MHz
+ VRAM Bandwidth: 6.496 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x LFH60
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-128.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-128.yaml
new file mode 100644
index 000000000..b870c321d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-128.yaml
@@ -0,0 +1,33 @@
+name: FireGL-9700-X1-128
+humanName: FireGL 9700 X1-128
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 325 MHz
+ VRAM Frequency: 310 MHz
+ VRAM Bandwidth: 19.84 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 2x DVI
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256.yaml
new file mode 100644
index 000000000..fca882609
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256.yaml
@@ -0,0 +1,33 @@
+name: FireGL-9700-X1-256
+humanName: FireGL 9700 X1-256
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 325 MHz
+ VRAM Frequency: 310 MHz
+ VRAM Bandwidth: 19.84 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 37 W
+ Slot Width: Single-slot
+ Outputs: 2x DVI
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256p.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256p.yaml
new file mode 100644
index 000000000..ec74a081e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9700-X1-256p.yaml
@@ -0,0 +1,35 @@
+name: FireGL-9700-X1-256p
+humanName: FireGL 9700 X1-256p
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 324 MHz
+ VRAM Frequency: 276 MHz
+ VRAM Bandwidth: 17.66 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 37 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256.yaml
new file mode 100644
index 000000000..c401d026d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256.yaml
@@ -0,0 +1,35 @@
+name: FireGL-9800-X2-256
+humanName: FireGL 9800 X2-256
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 380 MHz
+ VRAM Frequency: 350 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 8
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256T.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256T.yaml
new file mode 100644
index 000000000..f995819b4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-9800-X2-256T.yaml
@@ -0,0 +1,33 @@
+name: FireGL-9800-X2-256T
+humanName: FireGL 9800 X2-256T
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 412 MHz
+ VRAM Frequency: 344 MHz
+ VRAM Bandwidth: 22.02 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 2x DVI
+ Power Connectors: 1x Molex
+ Pixel Shaders: 8
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3100.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3100.yaml
new file mode 100644
index 000000000..b9e56762b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3100.yaml
@@ -0,0 +1,35 @@
+name: FireGL-V3100
+humanName: FireGL V3100
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 391 MHz
+ VRAM Frequency: 196 MHz
+ VRAM Bandwidth: 3.136 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3200.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3200.yaml
new file mode 100644
index 000000000..b97d469c4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/FireGL-V3200.yaml
@@ -0,0 +1,33 @@
+name: FireGL-V3200
+humanName: FireGL V3200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 350 MHz
+ VRAM Bandwidth: 11.20 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 46 W
+ Slot Width: Single-slot
+ Outputs: No outputs
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireMV-2200.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2200.yaml
new file mode 100644
index 000000000..e65205ed6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2200.yaml
@@ -0,0 +1,34 @@
+name: FireMV-2200
+humanName: FireMV 2200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ Architecture: R300
+ Lithography: 110 nm
+ DirectX Support: '9.0'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x DMS-59
+ Power Connectors: None
+ Length: 170 mm
+ Width: 69 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCI.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCI.yaml
new file mode 100644
index 000000000..210ac5ee0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCI.yaml
@@ -0,0 +1,34 @@
+name: FireMV-2400-PCI
+humanName: FireMV 2400 PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ Architecture: R300
+ Lithography: 130 nm
+ DirectX Support: '9.0'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VHDCI
+ Power Connectors: None
+ Length: 170 mm
+ Width: 69 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCIe-x1.yaml b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCIe-x1.yaml
new file mode 100644
index 000000000..493da538e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/FireMV-2400-PCIe-x1.yaml
@@ -0,0 +1,34 @@
+name: FireMV-2400-PCIe-x1
+humanName: FireMV 2400 PCIe x1
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ Architecture: R300
+ Lithography: 130 nm
+ DirectX Support: '9.0'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR3
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VHDCI
+ Power Connectors: None
+ Length: 170 mm
+ Width: 69 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2.yaml
new file mode 100644
index 000000000..c19635366
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2.yaml
@@ -0,0 +1,31 @@
+name: Mobility-FireGL-T2
+humanName: Mobility FireGL T2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 320 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2e.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2e.yaml
new file mode 100644
index 000000000..59cafdd16
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-T2e.yaml
@@ -0,0 +1,31 @@
+name: Mobility-FireGL-T2e
+humanName: Mobility FireGL T2e
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 225 MHz
+ VRAM Bandwidth: 7.200 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3100.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3100.yaml
new file mode 100644
index 000000000..96db84790
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3100.yaml
@@ -0,0 +1,31 @@
+name: Mobility-FireGL-V3100
+humanName: Mobility FireGL V3100
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3200.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3200.yaml
new file mode 100644
index 000000000..c02b80636
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-FireGL-V3200.yaml
@@ -0,0 +1,31 @@
+name: Mobility-FireGL-V3200
+humanName: Mobility FireGL V3200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9500.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9500.yaml
new file mode 100644
index 000000000..3d1134a83
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9500.yaml
@@ -0,0 +1,30 @@
+name: Mobility-Radeon-9500
+humanName: Mobility Radeon 9500
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 230 MHz
+ VRAM Frequency: 190 MHz
+ VRAM Bandwidth: 3.040 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9550.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9550.yaml
new file mode 100644
index 000000000..730284042
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9550.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-9550
+humanName: Mobility Radeon 9550
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 243 MHz
+ VRAM Bandwidth: 3.888 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..f77c0c0be
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO-Turbo.yaml
@@ -0,0 +1,30 @@
+name: Mobility-Radeon-9600-PRO-Turbo
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO.yaml
new file mode 100644
index 000000000..b5a60426b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600-PRO.yaml
@@ -0,0 +1,30 @@
+name: Mobility-Radeon-9600-PRO
+humanName: Mobility Radeon 9600 PRO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 333 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600.yaml
new file mode 100644
index 000000000..dedcb429b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9600.yaml
@@ -0,0 +1,30 @@
+name: Mobility-Radeon-9600
+humanName: Mobility Radeon 9600
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700-SE.yaml
new file mode 100644
index 000000000..9ee119fe3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700-SE.yaml
@@ -0,0 +1,30 @@
+name: Mobility-Radeon-9700-SE
+humanName: Mobility Radeon 9700 SE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700.yaml
new file mode 100644
index 000000000..639cff9a9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-9700.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-9700
+humanName: Mobility Radeon 9700
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 275 MHz
+ VRAM Bandwidth: 8.800 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300-IGP.yaml
new file mode 100644
index 000000000..8dd3ce4f2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300-IGP.yaml
@@ -0,0 +1,33 @@
+name: Mobility-Radeon-X300-IGP
+humanName: Mobility Radeon X300 IGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ Architecture: R300
+ Lithography: 110 nm
+ DirectX Support: '9.0'
+ Vulkan Support: 'N/A'
+ 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
+ VRAM Type: System Shared
+ 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
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300.yaml
new file mode 100644
index 000000000..9ca0d4787
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X300.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-X300
+humanName: Mobility Radeon X300
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 4.000 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600-SE.yaml
new file mode 100644
index 000000000..346a5a0cb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600-SE.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-X600-SE
+humanName: Mobility Radeon X600 SE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600.yaml b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600.yaml
new file mode 100644
index 000000000..0b2476430
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Mobility-Radeon-X600.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-X600
+humanName: Mobility Radeon X600
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500-PRO.yaml
new file mode 100644
index 000000000..a1ce5a8e7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500-PRO.yaml
@@ -0,0 +1,35 @@
+name: Radeon-9500-PRO
+humanName: Radeon 9500 PRO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 275 MHz
+ VRAM Frequency: 270 MHz
+ VRAM Bandwidth: 8.640 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500.yaml
new file mode 100644
index 000000000..0c5cf9446
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9500.yaml
@@ -0,0 +1,35 @@
+name: Radeon-9500
+humanName: Radeon 9500
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 275 MHz
+ VRAM Frequency: 270 MHz
+ VRAM Bandwidth: 17.28 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 12 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-SE.yaml
new file mode 100644
index 000000000..b08d7c09a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-SE.yaml
@@ -0,0 +1,34 @@
+name: Radeon-9550-SE
+humanName: Radeon 9550 SE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-XT.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-XT.yaml
new file mode 100644
index 000000000..63b211c3a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550-XT.yaml
@@ -0,0 +1,35 @@
+name: Radeon-9550-XT
+humanName: Radeon 9550 XT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 425 MHz
+ VRAM Frequency: 325 MHz
+ VRAM Bandwidth: 10.40 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550.yaml
new file mode 100644
index 000000000..038f33be1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9550.yaml
@@ -0,0 +1,35 @@
+name: Radeon-9550
+humanName: Radeon 9550
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-PRO.yaml
new file mode 100644
index 000000000..1f20aff08
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-PRO.yaml
@@ -0,0 +1,35 @@
+name: Radeon-9600-PRO
+humanName: Radeon 9600 PRO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 300 MHz
+ VRAM Bandwidth: 9.600 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 18 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-SE.yaml
new file mode 100644
index 000000000..891f8b6ec
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-SE.yaml
@@ -0,0 +1,35 @@
+name: Radeon-9600-SE
+humanName: Radeon 9600 SE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 325 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-TX.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-TX.yaml
new file mode 100644
index 000000000..c3ad57ff2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-TX.yaml
@@ -0,0 +1,33 @@
+name: Radeon-9600-TX
+humanName: Radeon 9600 TX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 297 MHz
+ VRAM Frequency: 270 MHz
+ VRAM Bandwidth: 8.640 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 2x VGA1x S-Video
+ Power Connectors: Floppy
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-XT.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-XT.yaml
new file mode 100644
index 000000000..ba3bde741
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600-XT.yaml
@@ -0,0 +1,35 @@
+name: Radeon-9600-XT
+humanName: Radeon 9600 XT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 300 MHz
+ VRAM Bandwidth: 9.600 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 22 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600.yaml
new file mode 100644
index 000000000..8120e2717
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9600.yaml
@@ -0,0 +1,35 @@
+name: Radeon-9600
+humanName: Radeon 9600
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 324 MHz
+ VRAM Frequency: 189 MHz
+ VRAM Bandwidth: 6.048 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 12 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO-X4.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO-X4.yaml
new file mode 100644
index 000000000..e34704037
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO-X4.yaml
@@ -0,0 +1,32 @@
+name: Radeon-9700-PRO-X4
+humanName: Radeon 9700 PRO X4
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 325 MHz
+ VRAM Frequency: 310 MHz
+ VRAM Bandwidth: 19.84 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Dual-slot
+ Outputs: 4x DVI
+ Power Connectors: 2x Molex
+ Pixel Shaders: 8
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO.yaml
new file mode 100644
index 000000000..c0f7ce8ae
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700-PRO.yaml
@@ -0,0 +1,35 @@
+name: Radeon-9700-PRO
+humanName: Radeon 9700 PRO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 325 MHz
+ VRAM Frequency: 310 MHz
+ VRAM Bandwidth: 19.84 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: Floppy
+ Pixel Shaders: 8
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700.yaml
new file mode 100644
index 000000000..19430e524
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9700.yaml
@@ -0,0 +1,35 @@
+name: Radeon-9700
+humanName: Radeon 9700
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 275 MHz
+ VRAM Frequency: 270 MHz
+ VRAM Bandwidth: 17.28 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 37 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: Floppy
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-MAXX.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-MAXX.yaml
new file mode 100644
index 000000000..94c2fb5dd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-MAXX.yaml
@@ -0,0 +1,35 @@
+name: Radeon-9800-PRO-MAXX
+humanName: Radeon 9800 PRO MAXX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ Architecture: R300
+ Lithography: 150 nm
+ DirectX Support: '9.0'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 94 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 8
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..0580853ca
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO-Mac-Edition.yaml
@@ -0,0 +1,33 @@
+name: Radeon-9800-PRO-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 60 W
+ Slot Width: Single-slot
+ Outputs: 2x DVI
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO.yaml
new file mode 100644
index 000000000..df05aa05b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-PRO.yaml
@@ -0,0 +1,38 @@
+name: Radeon-9800-PRO
+humanName: Radeon 9800 PRO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 380 MHz
+ VRAM Frequency: 340 MHz
+ VRAM Bandwidth: 21.76 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ 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
+ Pixel Shaders: 8
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-SE.yaml
new file mode 100644
index 000000000..a3f5c7632
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-SE.yaml
@@ -0,0 +1,35 @@
+name: Radeon-9800-SE
+humanName: Radeon 9800 SE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 331 MHz
+ VRAM Frequency: 290 MHz
+ VRAM Bandwidth: 9.280 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: Floppy
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..b32f28acc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT-Mac-Edition.yaml
@@ -0,0 +1,31 @@
+name: Radeon-9800-XT-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 60 W
+ 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
new file mode 100644
index 000000000..6c81db880
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XT.yaml
@@ -0,0 +1,35 @@
+name: Radeon-9800-XT
+humanName: Radeon 9800 XT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 412 MHz
+ VRAM Frequency: 365 MHz
+ VRAM Bandwidth: 23.36 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 60 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XXL.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XXL.yaml
new file mode 100644
index 000000000..50b932d29
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800-XXL.yaml
@@ -0,0 +1,33 @@
+name: Radeon-9800-XXL
+humanName: Radeon 9800 XXL
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 390 MHz
+ VRAM Frequency: 338 MHz
+ VRAM Bandwidth: 21.63 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 2x VGA1x S-Video
+ Power Connectors: Floppy
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800.yaml
new file mode 100644
index 000000000..cff325cbb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-9800.yaml
@@ -0,0 +1,35 @@
+name: Radeon-9800
+humanName: Radeon 9800
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 325 MHz
+ VRAM Frequency: 290 MHz
+ VRAM Bandwidth: 18.56 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 37 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050-AGP.yaml
new file mode 100644
index 000000000..294a2ccc9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1050-AGP
+humanName: Radeon X1050 AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 203 MHz
+ VRAM Bandwidth: 6.496 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 24 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050.yaml
new file mode 100644
index 000000000..cfd04a081
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X1050.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1050
+humanName: Radeon X1050
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 333 MHz
+ VRAM Bandwidth: 5.328 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: 24 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-LE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-LE.yaml
new file mode 100644
index 000000000..0a5e54caf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-LE.yaml
@@ -0,0 +1,34 @@
+name: Radeon-X300-LE
+humanName: Radeon X300 LE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 325 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE-HyperMemory.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE-HyperMemory.yaml
new file mode 100644
index 000000000..0fb8068cf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE-HyperMemory.yaml
@@ -0,0 +1,33 @@
+name: Radeon-X300-SE-HyperMemory
+humanName: Radeon X300 SE HyperMemory
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 325 MHz
+ VRAM Frequency: 300 MHz
+ VRAM Bandwidth: 4.800 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE.yaml
new file mode 100644
index 000000000..f61482473
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300-SE.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X300-SE
+humanName: Radeon X300 SE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 325 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 30 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300.yaml
new file mode 100644
index 000000000..d3e8ccc97
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X300.yaml
@@ -0,0 +1,34 @@
+name: Radeon-X300
+humanName: Radeon X300
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 375 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 36 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550-HyperMemory.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550-HyperMemory.yaml
new file mode 100644
index 000000000..eecf990cd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550-HyperMemory.yaml
@@ -0,0 +1,34 @@
+name: Radeon-X550-HyperMemory
+humanName: Radeon X550 HyperMemory
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550.yaml
new file mode 100644
index 000000000..1a727375e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X550.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X550
+humanName: Radeon X550
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-PRO.yaml
new file mode 100644
index 000000000..452adf202
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-PRO.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X600-PRO
+humanName: Radeon X600 PRO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 300 MHz
+ VRAM Bandwidth: 9.600 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 36 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-SE.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-SE.yaml
new file mode 100644
index 000000000..914bcb915
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-SE.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X600-SE
+humanName: Radeon X600 SE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 325 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 4.000 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 36 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-XT.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-XT.yaml
new file mode 100644
index 000000000..dcc93faf5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600-XT.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X600-XT
+humanName: Radeon X600 XT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 370 MHz
+ VRAM Bandwidth: 11.84 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 25 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600.yaml
new file mode 100644
index 000000000..af440305a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-X600.yaml
@@ -0,0 +1,34 @@
+name: Radeon-X600
+humanName: Radeon X600
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress--200M-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress--200M-IGP.yaml
new file mode 100644
index 000000000..9b23e9357
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress--200M-IGP.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Xpress--200M-IGP
+humanName: Radeon Xpress 200M IGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ Architecture: R300
+ Lithography: 130 nm
+ DirectX Support: '9.0'
+ Vulkan Support: 'N/A'
+ 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
+ VRAM Type: System Shared
+ 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
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1100-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1100-IGP.yaml
new file mode 100644
index 000000000..6587ad88b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1100-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-Xpress-1100-IGP
+humanName: Radeon Xpress 1100 IGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 300 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
+ Shader Processor Count: 0
+ Die Size: 73 mm²
+ GPU: RC410
+ GPU Variant: RC410 1100 IGP
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..6f0ead864
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1100-Mobile-IGP.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Xpress-1100-Mobile-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ VRAM Type: System Shared
+ 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
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1150-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1150-IGP.yaml
new file mode 100644
index 000000000..bb1e01d36
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1150-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-Xpress-1150-IGP
+humanName: Radeon Xpress 1150 IGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base 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: 2
+ Texture Mapping Unit Count: 2
+ Shader Processor Count: 0
+ Die Size: 73 mm²
+ GPU: RS482
+ GPU Variant: RS482 1150
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..c7b24a787
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-1150-Mobile-IGP.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Xpress-1150-Mobile-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ VRAM Type: System Shared
+ 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
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-200-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-200-IGP.yaml
new file mode 100644
index 000000000..92e05b14e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-200-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-Xpress-200-IGP
+humanName: Radeon Xpress 200 IGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 300 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
+ Shader Processor Count: 0
+ Die Size: 73 mm²
+ GPU: RC410
+ GPU Variant: RC410 200 IGP
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-200M-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-200M-IGP.yaml
new file mode 100644
index 000000000..3f3c1a206
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R300/Radeon-Xpress-200M-IGP.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Xpress-200M-IGP
+humanName: Radeon Xpress 200M IGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ Architecture: R300
+ Lithography: 110 nm
+ DirectX Support: '9.0'
+ Vulkan Support: 'N/A'
+ 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
+ VRAM Type: System Shared
+ 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
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R400.yaml b/specs/GPUs-CONSUMER/ATI/R400.yaml
new file mode 100644
index 000000000..a3ec4ca60
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400.yaml
@@ -0,0 +1,71 @@
+name: R400
+humanName: R400
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 80-130 nm
+ DirectX Support: '9.2'
+ Vulkan Support: 'N/A'
+ Release Date: '2004-03-01'
+ Manufacturer: ATI
+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/ATI/R400/All-In-Wonder-X800-GT.yaml b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-GT.yaml
new file mode 100644
index 000000000..099a11a71
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-GT.yaml
@@ -0,0 +1,33 @@
+name: All-In-Wonder-X800-GT
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x DVI
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..98608024f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-SE.yaml
@@ -0,0 +1,33 @@
+name: All-In-Wonder-X800-SE
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x DVI
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..3d6d0e31e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-VE.yaml
@@ -0,0 +1,33 @@
+name: All-In-Wonder-X800-VE
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x DVI
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..1df3c068c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XL.yaml
@@ -0,0 +1,33 @@
+name: All-In-Wonder-X800-XL
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x DVI
+ Power Connectors: None
+ Pixel Shaders: 16
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..df1a7c2a0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/All-In-Wonder-X800-XT.yaml
@@ -0,0 +1,35 @@
+name: All-In-Wonder-X800-XT
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 16
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5000.yaml b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5000.yaml
new file mode 100644
index 000000000..c85431d84
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5000.yaml
@@ -0,0 +1,37 @@
+name: FireGL-V5000
+humanName: FireGL V5000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 425 MHz
+ VRAM Frequency: 430 MHz
+ VRAM Bandwidth: 13.76 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Length: 183 mm
+ Width: 111 mm
+ Pixel Shaders: 8
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5100.yaml b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5100.yaml
new file mode 100644
index 000000000..8069680ad
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V5100.yaml
@@ -0,0 +1,37 @@
+name: FireGL-V5100
+humanName: FireGL V5100
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 350 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Length: 211 mm
+ Width: 111 mm
+ Pixel Shaders: 12
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R400/FireGL-V7100.yaml b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V7100.yaml
new file mode 100644
index 000000000..447d094f5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/FireGL-V7100.yaml
@@ -0,0 +1,37 @@
+name: FireGL-V7100
+humanName: FireGL V7100
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 493 MHz
+ VRAM Frequency: 475 MHz
+ VRAM Bandwidth: 30.40 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 91 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Length: 211 mm
+ Width: 111 mm
+ Pixel Shaders: 16
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R400/FireGL-X3-256.yaml b/specs/GPUs-CONSUMER/ATI/R400/FireGL-X3-256.yaml
new file mode 100644
index 000000000..03bd66384
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/FireGL-X3-256.yaml
@@ -0,0 +1,35 @@
+name: FireGL-X3-256
+humanName: FireGL X3-256
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 491 MHz
+ VRAM Frequency: 454 MHz
+ VRAM Bandwidth: 29.06 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 57 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 12
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Mobility-FireGL-V5000.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-FireGL-V5000.yaml
new file mode 100644
index 000000000..f4dc74985
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-FireGL-V5000.yaml
@@ -0,0 +1,31 @@
+name: Mobility-FireGL-V5000
+humanName: Mobility FireGL V5000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 425 MHz
+ VRAM Bandwidth: 13.60 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 8
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-9800.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-9800.yaml
new file mode 100644
index 000000000..bceffd21a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-9800.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-9800
+humanName: Mobility Radeon 9800
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 300 MHz
+ VRAM Bandwidth: 19.20 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 8
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700-XL.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700-XL.yaml
new file mode 100644
index 000000000..e18f49f52
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700-XL.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-X700-XL
+humanName: Mobility Radeon X700 XL
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 330 MHz
+ VRAM Bandwidth: 10.56 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 8
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700.yaml
new file mode 100644
index 000000000..7ede424bc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X700.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-X700
+humanName: Mobility Radeon X700
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 300 MHz
+ VRAM Bandwidth: 9.600 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 8
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800-XT.yaml
new file mode 100644
index 000000000..90f64f93f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800-XT.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-X800-XT
+humanName: Mobility Radeon X800 XT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 480 MHz
+ VRAM Frequency: 550 MHz
+ VRAM Bandwidth: 35.20 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 16
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800.yaml b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800.yaml
new file mode 100644
index 000000000..89a6388a1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Mobility-Radeon-X800.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-X800
+humanName: Mobility Radeon X800
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 12
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-2100-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-2100-IGP.yaml
new file mode 100644
index 000000000..0e0ba4876
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-2100-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-2100-IGP
+humanName: Radeon 2100 IGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base 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: 4
+ Shader Processor Count: 0
+ Die Size: 73 mm²
+ GPU: RS740
+ GPU Variant: RS740
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XT.yaml
new file mode 100644
index 000000000..73fa09214
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XT.yaml
@@ -0,0 +1,34 @@
+name: Radeon-X550-XT
+humanName: Radeon X550 XT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 300 MHz
+ VRAM Bandwidth: 9.600 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XTX.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XTX.yaml
new file mode 100644
index 000000000..e0f10ee25
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X550-XTX.yaml
@@ -0,0 +1,34 @@
+name: Radeon-X550-XTX
+humanName: Radeon X550 XTX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 300 MHz
+ VRAM Bandwidth: 4.800 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-AGP.yaml
new file mode 100644
index 000000000..af8df8bb3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-AGP.yaml
@@ -0,0 +1,34 @@
+name: Radeon-X700-AGP
+humanName: Radeon X700 AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-LE.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-LE.yaml
new file mode 100644
index 000000000..7353fab90
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-LE.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X700-LE
+humanName: Radeon X700 LE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 350 MHz
+ VRAM Bandwidth: 11.20 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO-AGP.yaml
new file mode 100644
index 000000000..5db27d41f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO-AGP.yaml
@@ -0,0 +1,34 @@
+name: Radeon-X700-PRO-AGP
+humanName: Radeon X700 PRO AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 425 MHz
+ VRAM Frequency: 472 MHz
+ VRAM Bandwidth: 15.10 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: Floppy
+ Pixel Shaders: 8
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO.yaml
new file mode 100644
index 000000000..0ce190099
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-PRO.yaml
@@ -0,0 +1,38 @@
+name: Radeon-X700-PRO
+humanName: Radeon X700 PRO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 425 MHz
+ VRAM Frequency: 430 MHz
+ VRAM Bandwidth: 13.76 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR3
+ 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
+ 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
+ Pixel Shaders: 8
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-SE.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-SE.yaml
new file mode 100644
index 000000000..760061640
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-SE.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X700-SE
+humanName: Radeon X700 SE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 4.000 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-XT.yaml
new file mode 100644
index 000000000..d8e42b645
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700-XT.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X700-XT
+humanName: Radeon X700 XT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 475 MHz
+ VRAM Frequency: 525 MHz
+ VRAM Bandwidth: 16.80 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 38 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700.yaml
new file mode 100644
index 000000000..2997413c4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X700.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X700
+humanName: Radeon X700
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 44 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X740-XL.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X740-XL.yaml
new file mode 100644
index 000000000..42066d2ab
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X740-XL.yaml
@@ -0,0 +1,34 @@
+name: Radeon-X740-XL
+humanName: Radeon X740 XL
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 425 MHz
+ VRAM Frequency: 450 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-CrossFire-Edition.yaml
new file mode 100644
index 000000000..98297bd70
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-CrossFire-Edition.yaml
@@ -0,0 +1,33 @@
+name: Radeon-X800-CrossFire-Edition
+humanName: Radeon X800 CrossFire Edition
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 32.00 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Slot Width: Dual-slot
+ Outputs: 2x DVI
+ Power Connectors: None
+ Pixel Shaders: 16
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT-AGP.yaml
new file mode 100644
index 000000000..2e7b956e6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X800-GT-AGP
+humanName: Radeon X800 GT AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 475 MHz
+ VRAM Frequency: 493 MHz
+ VRAM Bandwidth: 31.55 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 40 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 12
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT.yaml
new file mode 100644
index 000000000..699c5b7ef
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GT.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X800-GT
+humanName: Radeon X800 GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 475 MHz
+ VRAM Frequency: 350 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 40 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 12
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO-AGP.yaml
new file mode 100644
index 000000000..6848c6a94
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X800-GTO-AGP
+humanName: Radeon X800 GTO AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 490 MHz
+ VRAM Bandwidth: 31.36 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 49 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 12
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO.yaml
new file mode 100644
index 000000000..ff2d588fe
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X800-GTO
+humanName: Radeon X800 GTO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 49 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 12
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO2.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO2.yaml
new file mode 100644
index 000000000..77a29c1d0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-GTO2.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X800-GTO2
+humanName: Radeon X800 GTO2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 490 MHz
+ VRAM Bandwidth: 31.36 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 16
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO-AGP.yaml
new file mode 100644
index 000000000..c513125b7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X800-PRO-AGP
+humanName: Radeon X800 PRO AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 475 MHz
+ VRAM Frequency: 450 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 48 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 12
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO.yaml
new file mode 100644
index 000000000..3e7807a23
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-PRO.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X800-PRO
+humanName: Radeon X800 PRO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 475 MHz
+ VRAM Frequency: 450 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 48 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 12
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE-AGP.yaml
new file mode 100644
index 000000000..b156531f1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X800-SE-AGP
+humanName: Radeon X800 SE AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE.yaml
new file mode 100644
index 000000000..7e544bf66
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-SE.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X800-SE
+humanName: Radeon X800 SE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 425 MHz
+ VRAM Frequency: 350 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-VE-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-VE-AGP.yaml
new file mode 100644
index 000000000..b8e0fb984
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-VE-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X800-VE-AGP
+humanName: Radeon X800 VE AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 425 MHz
+ VRAM Frequency: 398 MHz
+ VRAM Bandwidth: 25.47 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 16
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL-AGP.yaml
new file mode 100644
index 000000000..fda5922f4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X800-XL-AGP
+humanName: Radeon X800 XL AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 32.00 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 49 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 16
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL.yaml
new file mode 100644
index 000000000..107ef55e8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XL.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X800-XL
+humanName: Radeon X800 XL
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 490 MHz
+ VRAM Bandwidth: 31.36 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 49 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 16
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-AGP.yaml
new file mode 100644
index 000000000..7d3f6b0e7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X800-XT-AGP
+humanName: Radeon X800 XT AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 32.00 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 54 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 16
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..a85c1284a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Mac-Edition.yaml
@@ -0,0 +1,31 @@
+name: Radeon-X800-XT-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 54 W
+ 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
new file mode 100644
index 000000000..d25afb71e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X800-XT-Platinum-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 63 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 16
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum.yaml
new file mode 100644
index 000000000..4d89a515a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT-Platinum.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X800-XT-Platinum
+humanName: Radeon X800 XT Platinum
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 520 MHz
+ VRAM Frequency: 560 MHz
+ VRAM Bandwidth: 35.84 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 63 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 16
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT.yaml
new file mode 100644
index 000000000..7b0d0d999
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800-XT.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X800-XT
+humanName: Radeon X800 XT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 32.00 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 54 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 16
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800.yaml
new file mode 100644
index 000000000..b90d20828
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X800.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X800
+humanName: Radeon X800
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 350 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 30 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 12
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-CrossFire-Edition.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-CrossFire-Edition.yaml
new file mode 100644
index 000000000..a425c78cb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-CrossFire-Edition.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X850-CrossFire-Edition
+humanName: Radeon X850 CrossFire Edition
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 520 MHz
+ VRAM Frequency: 540 MHz
+ VRAM Bandwidth: 34.56 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 69 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 1x DVI
+ - 1x DMS-59
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 16
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO-AGP.yaml
new file mode 100644
index 000000000..03e7e3177
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X850-PRO-AGP
+humanName: Radeon X850 PRO AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 32.00 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 12
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO.yaml
new file mode 100644
index 000000000..2df47c0e0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-PRO.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X850-PRO
+humanName: Radeon X850 PRO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 507 MHz
+ VRAM Frequency: 520 MHz
+ VRAM Bandwidth: 33.28 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 12
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-AGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-AGP.yaml
new file mode 100644
index 000000000..653611bee
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X850-XT-AGP
+humanName: Radeon X850 XT AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 520 MHz
+ VRAM Frequency: 540 MHz
+ VRAM Bandwidth: 34.56 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 69 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 16
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..0df3e511c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum-AGP.yaml
@@ -0,0 +1,38 @@
+name: Radeon-X850-XT-Platinum-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ 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
+ Pixel Shaders: 16
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum.yaml
new file mode 100644
index 000000000..4290e40bb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT-Platinum.yaml
@@ -0,0 +1,38 @@
+name: Radeon-X850-XT-Platinum
+humanName: Radeon X850 XT Platinum
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 540 MHz
+ VRAM Frequency: 590 MHz
+ VRAM Bandwidth: 37.76 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ 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
+ Pixel Shaders: 16
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT.yaml
new file mode 100644
index 000000000..1d746cdbf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-X850-XT.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X850-XT
+humanName: Radeon X850 XT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 520 MHz
+ VRAM Frequency: 540 MHz
+ VRAM Bandwidth: 34.56 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 69 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 16
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1200-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1200-IGP.yaml
new file mode 100644
index 000000000..0e8a6e8e8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1200-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-Xpress-1200-IGP
+humanName: Radeon Xpress 1200 IGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base 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: 4
+ Shader Processor Count: 0
+ Die Size: 73 mm²
+ GPU: RS690
+ GPU Variant: RS690C
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..05732962b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1200-Mobile-IGP.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Xpress-1200-Mobile-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ VRAM Type: System Shared
+ 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
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1250-IGP.yaml b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1250-IGP.yaml
new file mode 100644
index 000000000..a3809ce2a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1250-IGP.yaml
@@ -0,0 +1,32 @@
+name: Radeon-Xpress-1250-IGP
+humanName: Radeon Xpress 1250 IGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base 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: 4
+ Shader Processor Count: 0
+ Die Size: 73 mm²
+ GPU: RS690
+ GPU Variant: RS690
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..a0649dd24
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1250-Mobile-IGP.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Xpress-1250-Mobile-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ VRAM Type: System Shared
+ 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
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..567182155
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/R400/Radeon-Xpress-1270-Mobile-IGP.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Xpress-1270-Mobile-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ VRAM Type: System Shared
+ 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
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-2.yaml b/specs/GPUs-CONSUMER/ATI/Rage-2.yaml
new file mode 100644
index 000000000..587672b75
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-2.yaml
@@ -0,0 +1,16 @@
+name: Rage-2
+humanName: Rage 2
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 500 nm
+ DirectX Support: '5.0'
+ Vulkan Support: 'N/A'
+ Release Date: '1997-04-01'
+ Manufacturer: ATI
+sections:
+ - header: WHOLE RANGE
+ members:
+ - 3D-Rage-IIC-AGP
+ - 3D-Rage-IIC-PCI
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
new file mode 100644
index 000000000..83cecb592
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-AGP.yaml
@@ -0,0 +1,32 @@
+name: 3D-Rage-IIC-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..cd87cf9e8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-2/3D-Rage-IIC-PCI.yaml
@@ -0,0 +1,32 @@
+name: 3D-Rage-IIC-PCI
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-3.yaml b/specs/GPUs-CONSUMER/ATI/Rage-3.yaml
new file mode 100644
index 000000000..e08ab99e9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-3.yaml
@@ -0,0 +1,19 @@
+name: Rage-3
+humanName: Rage 3
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 350 nm
+ DirectX Support: '6.0'
+ Vulkan Support: 'N/A'
+ Release Date: '1997-03-01'
+ Manufacturer: ATI
+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/ATI/Rage-3/3D-Rage-PRO-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-AGP.yaml
new file mode 100644
index 000000000..0792e075c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-AGP.yaml
@@ -0,0 +1,32 @@
+name: 3D-Rage-PRO-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..684ebc6c0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-3/3D-Rage-PRO-PCI.yaml
@@ -0,0 +1,32 @@
+name: 3D-Rage-PRO-PCI
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..845c4a666
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-AGP.yaml
@@ -0,0 +1,35 @@
+name: Rage-PRO-Turbo-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Length: 150 mm
+ Width: 82 mm
+ Height: 13 mm
+ Pixel Shaders: 1
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..a6e3a4de5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-PRO-Turbo-PCI.yaml
@@ -0,0 +1,32 @@
+name: Rage-PRO-Turbo-PCI
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x DB13W3
+ Pixel Shaders: 1
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-XL-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-XL-PCI.yaml
new file mode 100644
index 000000000..5a3a380b0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-3/Rage-XL-PCI.yaml
@@ -0,0 +1,33 @@
+name: Rage-XL-PCI
+humanName: Rage XL PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 125 MHz
+ VRAM Frequency: 83 MHz
+ VRAM Bandwidth: 664.0 MB/s
+ VRAM Capacity: 8 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4.yaml
new file mode 100644
index 000000000..ed9bd21ff
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4.yaml
@@ -0,0 +1,36 @@
+name: Rage-4
+humanName: Rage 4
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 250 nm
+ DirectX Support: '6.0'
+ Vulkan Support: 'N/A'
+ Release Date: '1998-08-01'
+ Manufacturer: ATI
+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/ATI/Rage-4/All-In-Wonder-128-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PCI.yaml
new file mode 100644
index 000000000..e251693f7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PCI.yaml
@@ -0,0 +1,33 @@
+name: All-In-Wonder-128-PCI
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA2x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..6c70c51f2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO-Ultra.yaml
@@ -0,0 +1,32 @@
+name: All-In-Wonder-128-PRO-Ultra
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VGA2x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..39fe4ae25
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128-PRO.yaml
@@ -0,0 +1,33 @@
+name: All-In-Wonder-128-PRO
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA2x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..c6f274e41
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4/All-In-Wonder-128.yaml
@@ -0,0 +1,32 @@
+name: All-In-Wonder-128
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VGA2x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..5f82e4d25
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL-PCI.yaml
@@ -0,0 +1,33 @@
+name: Rage-128-GL-PCI
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL.yaml
new file mode 100644
index 000000000..f3ac4d6fc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-GL.yaml
@@ -0,0 +1,33 @@
+name: Rage-128-GL
+humanName: Rage 128 GL
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 80 MHz
+ VRAM Frequency: 60 MHz
+ VRAM Bandwidth: 960.0 MB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..f3c5620f5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra-GL.yaml
@@ -0,0 +1,33 @@
+name: Rage-128-PRO-Ultra-GL
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..129d47632
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO-Ultra.yaml
@@ -0,0 +1,33 @@
+name: Rage-128-PRO-Ultra
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO.yaml
new file mode 100644
index 000000000..debb9519a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-PRO.yaml
@@ -0,0 +1,33 @@
+name: Rage-128-PRO
+humanName: Rage 128 PRO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 118 MHz
+ VRAM Frequency: 143 MHz
+ VRAM Bandwidth: 2.288 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-Ultra.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-Ultra.yaml
new file mode 100644
index 000000000..532aaf1d6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-Ultra.yaml
@@ -0,0 +1,33 @@
+name: Rage-128-Ultra
+humanName: Rage 128 Ultra
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 130 MHz
+ VRAM Frequency: 130 MHz
+ VRAM Bandwidth: 2.080 GB/s
+ VRAM Capacity: 16 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..83a436449
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-AGP.yaml
@@ -0,0 +1,33 @@
+name: Rage-128-VR-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..a434b3975
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-128-VR-PCI.yaml
@@ -0,0 +1,33 @@
+name: Rage-128-VR-PCI
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury-MAXX.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury-MAXX.yaml
new file mode 100644
index 000000000..f1a7bb0b0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury-MAXX.yaml
@@ -0,0 +1,33 @@
+name: Rage-Fury-MAXX
+humanName: Rage Fury MAXX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 125 MHz
+ VRAM Frequency: 143 MHz
+ VRAM Bandwidth: 2.288 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury.yaml
new file mode 100644
index 000000000..9e3d10875
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Fury.yaml
@@ -0,0 +1,33 @@
+name: Rage-Fury
+humanName: Rage Fury
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 80 MHz
+ VRAM Frequency: 120 MHz
+ VRAM Bandwidth: 1.920 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..4b189ecbd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-2X.yaml
@@ -0,0 +1,32 @@
+name: Rage-Mobility-128-AGP-2X
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x DB13W3
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..58d0149d8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-128-AGP-4X.yaml
@@ -0,0 +1,32 @@
+name: Rage-Mobility-128-AGP-4X
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x DB13W3
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-CL.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-CL.yaml
new file mode 100644
index 000000000..687dc856b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-CL.yaml
@@ -0,0 +1,32 @@
+name: Rage-Mobility-CL
+humanName: Rage Mobility-CL
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 75 MHz
+ VRAM Frequency: 70 MHz
+ VRAM Bandwidth: 560.0 MB/s
+ VRAM Capacity: 8 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M.yaml
new file mode 100644
index 000000000..0b0869f38
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M.yaml
@@ -0,0 +1,32 @@
+name: Rage-Mobility-M
+humanName: Rage Mobility-M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 75 MHz
+ VRAM Frequency: 70 MHz
+ VRAM Bandwidth: 560.0 MB/s
+ VRAM Capacity: 4 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M1.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M1.yaml
new file mode 100644
index 000000000..dbc7dbea5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M1.yaml
@@ -0,0 +1,32 @@
+name: Rage-Mobility-M1
+humanName: Rage Mobility-M1
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 83 MHz
+ VRAM Frequency: 125 MHz
+ VRAM Bandwidth: 1.000 GB/s
+ VRAM Capacity: 8 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: MXM Module
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M3.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M3.yaml
new file mode 100644
index 000000000..9de10ddd2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M3.yaml
@@ -0,0 +1,32 @@
+name: Rage-Mobility-M3
+humanName: Rage Mobility-M3
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 105 MHz
+ VRAM Frequency: 105 MHz
+ VRAM Bandwidth: 840.0 MB/s
+ VRAM Capacity: 8 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x DB13W3
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M4.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M4.yaml
new file mode 100644
index 000000000..7d84d9980
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-M4.yaml
@@ -0,0 +1,32 @@
+name: Rage-Mobility-M4
+humanName: Rage Mobility-M4
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 105 MHz
+ VRAM Frequency: 105 MHz
+ VRAM Bandwidth: 840.0 MB/s
+ VRAM Capacity: 16 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x DB13W3
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-P.yaml b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-P.yaml
new file mode 100644
index 000000000..7522b278f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-4/Rage-Mobility-P.yaml
@@ -0,0 +1,32 @@
+name: Rage-Mobility-P
+humanName: Rage Mobility-P
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 75 MHz
+ VRAM Frequency: 70 MHz
+ VRAM Bandwidth: 560.0 MB/s
+ VRAM Capacity: 8 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6.yaml
new file mode 100644
index 000000000..8649ccb36
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6.yaml
@@ -0,0 +1,43 @@
+name: Rage-6
+humanName: Rage 6
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 180 nm
+ DirectX Support: '7.0'
+ Vulkan Support: 'N/A'
+ Release Date: '2000-04-01'
+ Manufacturer: ATI
+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/ATI/Rage-6/All-In-Wonder-Radeon-7200.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/All-In-Wonder-Radeon-7200.yaml
new file mode 100644
index 000000000..c1da8c0f7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/All-In-Wonder-Radeon-7200.yaml
@@ -0,0 +1,35 @@
+name: All-In-Wonder-Radeon-7200
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 2x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/ES1000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/ES1000.yaml
new file mode 100644
index 000000000..eb962740f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/ES1000.yaml
@@ -0,0 +1,32 @@
+name: ES1000
+humanName: ES1000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base 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: 3
+ Shader Processor Count: 0
+ Die Size: 80 mm²
+ GPU: ES1000
+ GPU Variant: ES1000
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 0
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..56b95f4a6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000-IGP.yaml
@@ -0,0 +1,33 @@
+name: Mobility-Radeon-7000-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ VRAM Type: System Shared
+ 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
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000.yaml
new file mode 100644
index 000000000..1e935518a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-7000.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-7000
+humanName: Mobility Radeon 7000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 144 MHz
+ VRAM Frequency: 139 MHz
+ VRAM Bandwidth: 1.112 GB/s
+ VRAM Capacity: 16 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 1
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-P.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-P.yaml
new file mode 100644
index 000000000..3fc1e9666
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon-P.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-P
+humanName: Mobility Radeon-P
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 166 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 1
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon.yaml
new file mode 100644
index 000000000..a0b741d67
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Mobility-Radeon.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon
+humanName: Mobility Radeon
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 144 MHz
+ VRAM Frequency: 144 MHz
+ VRAM Bandwidth: 2.304 GB/s
+ VRAM Capacity: 16 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 1
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..31cd39372
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition-PCI.yaml
@@ -0,0 +1,32 @@
+name: Radeon-7000-Mac-Edition-PCI
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 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
new file mode 100644
index 000000000..341d51e7c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-Mac-Edition.yaml
@@ -0,0 +1,32 @@
+name: Radeon-7000-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 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
new file mode 100644
index 000000000..3b6c369f6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000-PCI.yaml
@@ -0,0 +1,35 @@
+name: Radeon-7000-PCI
+humanName: Radeon 7000 PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 133 MHz
+ VRAM Frequency: 133 MHz
+ VRAM Bandwidth: 2.128 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 23 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000.yaml
new file mode 100644
index 000000000..7c3963963
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7000.yaml
@@ -0,0 +1,35 @@
+name: Radeon-7000
+humanName: Radeon 7000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 183 MHz
+ VRAM Frequency: 183 MHz
+ VRAM Bandwidth: 2.928 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 23 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 1
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..afd470722
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200-64-MB.yaml
@@ -0,0 +1,33 @@
+name: Radeon-7200-64-MB
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 23 W
+ Slot Width: Single-slot
+ Outputs: 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200.yaml
new file mode 100644
index 000000000..067000d91
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-7200.yaml
@@ -0,0 +1,33 @@
+name: Radeon-7200
+humanName: Radeon 7200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 143 MHz
+ VRAM Frequency: 143 MHz
+ VRAM Bandwidth: 2.288 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ TDP: 23 W
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-MAXX.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-MAXX.yaml
new file mode 100644
index 000000000..610cfd6e3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-MAXX.yaml
@@ -0,0 +1,33 @@
+name: Radeon-DDR-MAXX
+humanName: Radeon DDR MAXX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 148 MHz
+ VRAM Frequency: 148 MHz
+ VRAM Bandwidth: 4.736 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 2x VGA
+ Power Connectors: 1x Molex
+ Pixel Shaders: 2
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..1d10cfde1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-OEM.yaml
@@ -0,0 +1,30 @@
+name: Radeon-DDR-VIVO-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ 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
new file mode 100644
index 000000000..853ff155e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO-SE.yaml
@@ -0,0 +1,32 @@
+name: Radeon-DDR-VIVO-SE
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA2x S-Video
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO.yaml
new file mode 100644
index 000000000..b510b2e3f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR-VIVO.yaml
@@ -0,0 +1,32 @@
+name: Radeon-DDR-VIVO
+humanName: Radeon DDR VIVO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 183 MHz
+ VRAM Frequency: 183 MHz
+ VRAM Bandwidth: 5.856 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA2x S-Video
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR.yaml
new file mode 100644
index 000000000..64a04edf4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-DDR.yaml
@@ -0,0 +1,33 @@
+name: Radeon-DDR
+humanName: Radeon DDR
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 166 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 5.312 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 23 W
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-320.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-320.yaml
new file mode 100644
index 000000000..9d75bde34
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-320.yaml
@@ -0,0 +1,33 @@
+name: Radeon-IGP-320
+humanName: Radeon IGP 320
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 160 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
+ Shader Processor Count: 0
+ Die Size: 73 mm²
+ GPU: RS100
+ GPU Variant: IGP 320
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Power Connectors: None
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-320M.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-320M.yaml
new file mode 100644
index 000000000..7a4cba9e1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-320M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-IGP-320M
+humanName: Radeon IGP 320M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 160 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
+ Shader Processor Count: 0
+ Die Size: 73 mm²
+ GPU: RS100
+ GPU Variant: IGP 320M
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 1
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-330M.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-330M.yaml
new file mode 100644
index 000000000..4bf5d5210
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-330M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-IGP-330M
+humanName: Radeon IGP 330M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 183 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
+ Shader Processor Count: 0
+ Die Size: 73 mm²
+ GPU: RS200
+ GPU Variant: IGP 330M
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 0
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-340.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-340.yaml
new file mode 100644
index 000000000..a32f792df
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-340.yaml
@@ -0,0 +1,33 @@
+name: Radeon-IGP-340
+humanName: Radeon IGP 340
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 183 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
+ Shader Processor Count: 0
+ Die Size: 73 mm²
+ GPU: RS200
+ GPU Variant: IGP 340
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Power Connectors: None
+ Pixel Shaders: 0
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-340M.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-340M.yaml
new file mode 100644
index 000000000..dd5668a40
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-340M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-IGP-340M
+humanName: Radeon IGP 340M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 183 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
+ Shader Processor Count: 0
+ Die Size: 73 mm²
+ GPU: RS200
+ GPU Variant: IGP 340M
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 0
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-345M.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-345M.yaml
new file mode 100644
index 000000000..3d3c4fd24
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-345M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-IGP-345M
+humanName: Radeon IGP 345M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 183 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
+ Shader Processor Count: 0
+ Die Size: 73 mm²
+ GPU: RS200
+ GPU Variant: IGP 345M
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-350M.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-350M.yaml
new file mode 100644
index 000000000..b1b22410d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-IGP-350M.yaml
@@ -0,0 +1,33 @@
+name: Radeon-IGP-350M
+humanName: Radeon IGP 350M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 183 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
+ Shader Processor Count: 0
+ Die Size: 73 mm²
+ GPU: RS200
+ GPU Variant: IGP 350M
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 0
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-LE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-LE.yaml
new file mode 100644
index 000000000..c9e0bd173
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-LE.yaml
@@ -0,0 +1,33 @@
+name: Radeon-LE
+humanName: Radeon LE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 148 MHz
+ VRAM Frequency: 148 MHz
+ VRAM Bandwidth: 4.736 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR-PCI.yaml
new file mode 100644
index 000000000..a05e56156
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR-PCI.yaml
@@ -0,0 +1,34 @@
+name: Radeon-SDR-PCI
+humanName: Radeon SDR PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 166 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ TDP: 23 W
+ Slot Width: Single-slot
+ Outputs: 1x VGA1x S-Video
+ Power Connectors: None
+ Length: 165 mm
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR.yaml
new file mode 100644
index 000000000..89512509c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-SDR.yaml
@@ -0,0 +1,33 @@
+name: Radeon-SDR
+humanName: Radeon SDR
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 166 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ TDP: 23 W
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-AGP.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-AGP.yaml
new file mode 100644
index 000000000..1c7e78c33
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-VE-AGP
+humanName: Radeon VE AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 183 MHz
+ VRAM Frequency: 183 MHz
+ VRAM Bandwidth: 2.928 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 23 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-PCI.yaml
new file mode 100644
index 000000000..7d57e5d5c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-6/Radeon-VE-PCI.yaml
@@ -0,0 +1,35 @@
+name: Radeon-VE-PCI
+humanName: Radeon VE PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 183 MHz
+ VRAM Frequency: 183 MHz
+ VRAM Bandwidth: 2.928 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 23 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7.yaml
new file mode 100644
index 000000000..cfa6ccae1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7.yaml
@@ -0,0 +1,54 @@
+name: Rage-7
+humanName: Rage 7
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 150 nm
+ DirectX Support: '8.1'
+ Vulkan Support: 'N/A'
+ Release Date: '2001-08-14'
+ Manufacturer: ATI
+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/ATI/Rage-7/All-In-Wonder-9000-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9000-PRO.yaml
new file mode 100644
index 000000000..348eca54e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9000-PRO.yaml
@@ -0,0 +1,34 @@
+name: All-In-Wonder-9000-PRO
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 2x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..211b9c3db
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200-SE.yaml
@@ -0,0 +1,32 @@
+name: All-In-Wonder-9200-SE
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA2x S-Video
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..e08287f58
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-9200.yaml
@@ -0,0 +1,32 @@
+name: All-In-Wonder-9200
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA2x S-Video
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..f620f21bf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500-VE.yaml
@@ -0,0 +1,32 @@
+name: All-In-Wonder-Radeon-7500-VE
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VGA2x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..130d2a71b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-7500.yaml
@@ -0,0 +1,32 @@
+name: All-In-Wonder-Radeon-7500
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VGA2x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..663fed2d7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500.yaml
@@ -0,0 +1,34 @@
+name: All-In-Wonder-Radeon-8500
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..9f68d4298
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/All-In-Wonder-Radeon-8500DV.yaml
@@ -0,0 +1,34 @@
+name: All-In-Wonder-Radeon-8500DV
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8700.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8700.yaml
new file mode 100644
index 000000000..6a36c7f61
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8700.yaml
@@ -0,0 +1,35 @@
+name: FireGL-8700
+humanName: FireGL 8700
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 270 MHz
+ VRAM Bandwidth: 8.640 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8800.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8800.yaml
new file mode 100644
index 000000000..43066a3b3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/FireGL-8800.yaml
@@ -0,0 +1,35 @@
+name: FireGL-8800
+humanName: FireGL 8800
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 290 MHz
+ VRAM Bandwidth: 9.280 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/FireMV-2200-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/FireMV-2200-PCI.yaml
new file mode 100644
index 000000000..7d3a19e92
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/FireMV-2200-PCI.yaml
@@ -0,0 +1,34 @@
+name: FireMV-2200-PCI
+humanName: FireMV 2200 PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 240 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 15 W
+ Slot Width: Single-slot
+ Outputs: 1x DMS-59
+ Power Connectors: None
+ Length: 170 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-7800.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-7800.yaml
new file mode 100644
index 000000000..1ff7ba98e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-7800.yaml
@@ -0,0 +1,32 @@
+name: Mobility-FireGL-7800
+humanName: Mobility FireGL 7800
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 280 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 27 W
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-9000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-9000.yaml
new file mode 100644
index 000000000..1486ee58a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-FireGL-9000.yaml
@@ -0,0 +1,31 @@
+name: Mobility-FireGL-9000
+humanName: Mobility FireGL 9000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500.yaml
new file mode 100644
index 000000000..1a4cbebb7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-7500
+humanName: Mobility Radeon 7500
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 230 MHz
+ VRAM Frequency: 183 MHz
+ VRAM Bandwidth: 2.928 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 27 W
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500C.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500C.yaml
new file mode 100644
index 000000000..5ae3db251
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-7500C.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-7500C
+humanName: Mobility Radeon 7500C
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 230 MHz
+ VRAM Frequency: 183 MHz
+ VRAM Bandwidth: 2.928 GB/s
+ VRAM Capacity: 16 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 27 W
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 2
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..459a60829
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000-IGP.yaml
@@ -0,0 +1,33 @@
+name: Mobility-Radeon-9000-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ VRAM Type: System Shared
+ 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
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000.yaml
new file mode 100644
index 000000000..3885b6839
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9000.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-9000
+humanName: Mobility Radeon 9000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 240 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..4675b7225
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9100-IGP.yaml
@@ -0,0 +1,33 @@
+name: Mobility-Radeon-9100-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ VRAM Type: System Shared
+ 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
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..3bdd1c4da
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9100-PRO-IGP.yaml
@@ -0,0 +1,33 @@
+name: Mobility-Radeon-9100-PRO-IGP
+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'
+ Vulkan Support: 'N/A'
+ 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
+ VRAM Type: System Shared
+ 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
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9200.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9200.yaml
new file mode 100644
index 000000000..d512c643c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Mobility-Radeon-9200.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-9200
+humanName: Mobility Radeon 9200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-LE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-LE.yaml
new file mode 100644
index 000000000..b6d5af2e7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-LE.yaml
@@ -0,0 +1,33 @@
+name: Radeon-7500-LE
+humanName: Radeon 7500 LE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 175 MHz
+ VRAM Bandwidth: 5.600 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 23 W
+ Slot Width: Single-slot
+ Outputs: 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..38a57a85a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500-Mac-Edition.yaml
@@ -0,0 +1,32 @@
+name: Radeon-7500-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 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
new file mode 100644
index 000000000..afeb6dbaf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-7500.yaml
@@ -0,0 +1,35 @@
+name: Radeon-7500
+humanName: Radeon 7500
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 290 MHz
+ VRAM Frequency: 230 MHz
+ VRAM Bandwidth: 7.360 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 23 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-LE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-LE.yaml
new file mode 100644
index 000000000..f18a6a528
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-LE.yaml
@@ -0,0 +1,35 @@
+name: Radeon-8500-LE
+humanName: Radeon 8500 LE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 23 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-X4.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-X4.yaml
new file mode 100644
index 000000000..e259ca43e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-X4.yaml
@@ -0,0 +1,32 @@
+name: Radeon-8500-X4
+humanName: Radeon 8500 X4
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 4.000 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 2x DVI
+ Length: 330 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-XT.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-XT.yaml
new file mode 100644
index 000000000..66eeb930d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500-XT.yaml
@@ -0,0 +1,34 @@
+name: Radeon-8500-XT
+humanName: Radeon 8500 XT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 300 MHz
+ VRAM Bandwidth: 9.600 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500.yaml
new file mode 100644
index 000000000..6fefc19ea
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-8500.yaml
@@ -0,0 +1,35 @@
+name: Radeon-8500
+humanName: Radeon 8500
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 275 MHz
+ VRAM Frequency: 275 MHz
+ VRAM Bandwidth: 8.800 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 23 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-LE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-LE.yaml
new file mode 100644
index 000000000..264ed95ec
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-LE.yaml
@@ -0,0 +1,33 @@
+name: Radeon-9000-LE
+humanName: Radeon 9000 LE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 28 W
+ Slot Width: Single-slot
+ Outputs: 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..9936ac4af
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO-Mac-Edition.yaml
@@ -0,0 +1,33 @@
+name: Radeon-9000-PRO-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 28 W
+ Slot Width: Single-slot
+ Outputs: 2x DVI
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO.yaml
new file mode 100644
index 000000000..98dd2cda1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000-PRO.yaml
@@ -0,0 +1,37 @@
+name: Radeon-9000-PRO
+humanName: Radeon 9000 PRO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 275 MHz
+ VRAM Frequency: 275 MHz
+ VRAM Bandwidth: 8.800 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 28 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Length: 167 mm
+ Width: 111 mm
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000.yaml
new file mode 100644
index 000000000..59b5d4f81
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9000.yaml
@@ -0,0 +1,35 @@
+name: Radeon-9000
+humanName: Radeon 9000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 28 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100-PCI.yaml
new file mode 100644
index 000000000..fd806bf31
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100-PCI.yaml
@@ -0,0 +1,34 @@
+name: Radeon-9100-PCI
+humanName: Radeon 9100 PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100.yaml
new file mode 100644
index 000000000..c3ec818f5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9100.yaml
@@ -0,0 +1,32 @@
+name: Radeon-9100
+humanName: Radeon 9100
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: No outputs
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-LE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-LE.yaml
new file mode 100644
index 000000000..397e62c42
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-LE.yaml
@@ -0,0 +1,34 @@
+name: Radeon-9200-LE
+humanName: Radeon 9200 LE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PCI.yaml
new file mode 100644
index 000000000..95d9aa281
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PCI.yaml
@@ -0,0 +1,34 @@
+name: Radeon-9200-PCI
+humanName: Radeon 9200 PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PRO.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PRO.yaml
new file mode 100644
index 000000000..0193ee8db
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-PRO.yaml
@@ -0,0 +1,34 @@
+name: Radeon-9200-PRO
+humanName: Radeon 9200 PRO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 240 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 5.312 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..54b4fc267
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE-PCI.yaml
@@ -0,0 +1,34 @@
+name: Radeon-9200-SE-PCI
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE.yaml
new file mode 100644
index 000000000..d34672c0d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200-SE.yaml
@@ -0,0 +1,35 @@
+name: Radeon-9200-SE
+humanName: Radeon 9200 SE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 28 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200.yaml
new file mode 100644
index 000000000..3becad7f8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9200.yaml
@@ -0,0 +1,35 @@
+name: Radeon-9200
+humanName: Radeon 9200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 28 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250-PCI.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250-PCI.yaml
new file mode 100644
index 000000000..483ff79c3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250-PCI.yaml
@@ -0,0 +1,34 @@
+name: Radeon-9250-PCI
+humanName: Radeon 9250 PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 240 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250.yaml b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250.yaml
new file mode 100644
index 000000000..88084669d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Rage-7/Radeon-9250.yaml
@@ -0,0 +1,35 @@
+name: Radeon-9250
+humanName: Radeon 9250
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 240 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE.yaml
new file mode 100644
index 000000000..fa27e95e0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/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: 80-90 nm
+ DirectX Support: '9.3'
+ Vulkan Support: 'N/A'
+ Release Date: '2005-10-01'
+ Manufacturer: ATI
+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
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
new file mode 100644
index 000000000..6ce40e64a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-2006-PCIe-Edition.yaml
@@ -0,0 +1,34 @@
+name: All-In-Wonder-2006-PCIe-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x DVI
+ Power Connectors: None
+ Length: 249 mm
+ Width: 111 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..45bf5da68
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1800-XL.yaml
@@ -0,0 +1,36 @@
+name: All-In-Wonder-X1800-XL
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 75 W
+ Slot Width: Single-slot
+ Outputs: 1x DVI
+ Power Connectors: 1x 6-pin
+ Length: 254 mm
+ Width: 111 mm
+ Height: 19 mm
+ Pixel Shaders: 16
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..664903531
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/All-In-Wonder-X1900.yaml
@@ -0,0 +1,35 @@
+name: All-In-Wonder-X1900
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x DVI
+ Power Connectors: 1x 6-pin
+ Length: 248 mm
+ Width: 111 mm
+ Pixel Shaders: 48
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3300.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3300.yaml
new file mode 100644
index 000000000..69c45dfa0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3300.yaml
@@ -0,0 +1,33 @@
+name: FireGL-V3300
+humanName: FireGL V3300
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 2x DVI
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3350.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3350.yaml
new file mode 100644
index 000000000..da369fd2c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3350.yaml
@@ -0,0 +1,33 @@
+name: FireGL-V3350
+humanName: FireGL V3350
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 2x DVI
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3400.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3400.yaml
new file mode 100644
index 000000000..277cfec62
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V3400.yaml
@@ -0,0 +1,33 @@
+name: FireGL-V3400
+humanName: FireGL V3400
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 16.00 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 2x DVI
+ Power Connectors: None
+ Pixel Shaders: 12
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V5200.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V5200.yaml
new file mode 100644
index 000000000..42ecde03c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V5200.yaml
@@ -0,0 +1,33 @@
+name: FireGL-V5200
+humanName: FireGL V5200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 35 W
+ Slot Width: Single-slot
+ Outputs: 2x DVI
+ Power Connectors: None
+ Pixel Shaders: 12
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7200.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7200.yaml
new file mode 100644
index 000000000..98d6c532a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7200.yaml
@@ -0,0 +1,37 @@
+name: FireGL-V7200
+humanName: FireGL V7200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 650 MHz
+ VRAM Bandwidth: 41.60 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Length: 229 mm
+ Width: 111 mm
+ Pixel Shaders: 16
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7300.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7300.yaml
new file mode 100644
index 000000000..e05d8429e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7300.yaml
@@ -0,0 +1,37 @@
+name: FireGL-V7300
+humanName: FireGL V7300
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 594 MHz
+ VRAM Frequency: 648 MHz
+ VRAM Bandwidth: 41.47 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 97 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Length: 229 mm
+ Width: 111 mm
+ Pixel Shaders: 16
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7350.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7350.yaml
new file mode 100644
index 000000000..0f99001f7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireGL-V7350.yaml
@@ -0,0 +1,37 @@
+name: FireGL-V7350
+humanName: FireGL V7350
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 650 MHz
+ VRAM Bandwidth: 41.60 GB/s
+ VRAM Capacity: 1024 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 111 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Length: 229 mm
+ Width: 111 mm
+ Pixel Shaders: 16
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..1e66b40f2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250-PCIe-x1.yaml
@@ -0,0 +1,34 @@
+name: FireMV-2250-PCIe-x1
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x S-Video1x DMS-59
+ Power Connectors: None
+ Length: 170 mm
+ Width: 69 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250.yaml
new file mode 100644
index 000000000..01027ccbf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/FireMV-2250.yaml
@@ -0,0 +1,35 @@
+name: FireMV-2250
+humanName: FireMV 2250
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x S-Video1x DMS-59
+ Power Connectors: None
+ Length: 170 mm
+ Width: 69 mm
+ Height: 23 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..457a7ff18
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5200.yaml
@@ -0,0 +1,31 @@
+name: Mobility-FireGL-V5200
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 12
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..a05a5e1e6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-FireGL-V5250.yaml
@@ -0,0 +1,31 @@
+name: Mobility-FireGL-V5250
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 12
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..c8f189c99
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-HD-2300.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-HD-2300
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..b69cdd303
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1300.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-X1300
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..d92d76114
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1350.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-X1350
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..879cc1131
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1400.yaml
@@ -0,0 +1,30 @@
+name: Mobility-Radeon-X1400
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR2
+ 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
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..ae2449638
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1450.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-X1450
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..3f0099dd8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600-Mac-Edition.yaml
@@ -0,0 +1,30 @@
+name: Mobility-Radeon-X1600-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 12
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..bf3fe5a7f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1600.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-X1600
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 12
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..7791c0379
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1700.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-X1700
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 12
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..ce3a0f73f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800-XT.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-X1800-XT
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 16
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..3b0bdecc8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1800.yaml
@@ -0,0 +1,32 @@
+name: Mobility-Radeon-X1800
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Slot Width: MXM Module
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 12
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..39d33c43c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X1900.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-X1900
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: MXM Module
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 36
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..cab30e583
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300-HD.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-X2300-HD
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..f123fffa6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2300.yaml
@@ -0,0 +1,31 @@
+name: Mobility-Radeon-X2300
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..4b7dae137
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Mobility-Radeon-X2500.yaml
@@ -0,0 +1,30 @@
+name: Mobility-Radeon-X2500
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR2
+ 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
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 12
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..817fc0d8a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1300-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..d5734a18c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-CE.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1300-CE
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: 27 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..98ce6cf89
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-LE.yaml
@@ -0,0 +1,33 @@
+name: Radeon-X1300-LE
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..1ca47fb6b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PCI.yaml
@@ -0,0 +1,34 @@
+name: Radeon-X1300-PCI
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..ebe5a2595
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1300-PRO-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 31 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..95b5de1c8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-PRO.yaml
@@ -0,0 +1,33 @@
+name: Radeon-X1300-PRO
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: 31 W
+ Slot Width: Single-slot
+ Outputs: No outputs
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..ce13dba46
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1300-XT-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 22 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 12
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..646d0cbf7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300-XT.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1300-XT
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: 22 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 12
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300.yaml
new file mode 100644
index 000000000..925781686
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1300.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1300
+humanName: Radeon X1300
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..a477ff287
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1550-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: 27 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..919bdacb5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550-PCI.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1550-PCI
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: 27 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550.yaml
new file mode 100644
index 000000000..23f4337c9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1550.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1550
+humanName: Radeon X1550
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 333 MHz
+ VRAM Bandwidth: 5.328 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: 27 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..0fd3eb0d2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1600-PRO-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 41 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: Floppy
+ Pixel Shaders: 12
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..b1edbd78f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-PRO.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1600-PRO
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 41 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 12
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..f5539e612
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-SE.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1600-SE
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 27 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..a54d259a8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT-Dual.yaml
@@ -0,0 +1,32 @@
+name: Radeon-X1600-XT-Dual
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: Single-slot
+ Outputs: 2x DVI
+ Power Connectors: 1x Molex
+ Pixel Shaders: 12
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..cba9cabe7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600-XT.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1600-XT
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 42 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 12
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600.yaml
new file mode 100644
index 000000000..463f87f44
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1600.yaml
@@ -0,0 +1,34 @@
+name: Radeon-X1600
+humanName: Radeon X1600
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 635 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..18c1316f9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1650-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 12
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..c4b2ed5e1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GT.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1650-GT
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 24
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..9100907cc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-GTO.yaml
@@ -0,0 +1,33 @@
+name: Radeon-X1650-GTO
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x HDMI1x VGA
+ Power Connectors: None
+ Pixel Shaders: 12
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..1a4f63837
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1650-PRO-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 44 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 12
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..c74291695
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-PRO.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1650-PRO
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 44 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 12
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..aae79dc85
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-SE.yaml
@@ -0,0 +1,34 @@
+name: Radeon-X1650-SE
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..6d69c478b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1650-XT-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 55 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 24
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..a4915a62d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT-Dual.yaml
@@ -0,0 +1,33 @@
+name: Radeon-X1650-XT-Dual
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 2x DVI
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 24
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..95de0b101
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650-XT.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1650-XT
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 55 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 24
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650.yaml b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650.yaml
new file mode 100644
index 000000000..587d9aa03
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1650.yaml
@@ -0,0 +1,34 @@
+name: Radeon-X1650
+humanName: Radeon X1650
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 635 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..e8c4ab7c7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-FSC.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1700-FSC
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 44 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 12
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..6efe34c1a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1700-SE.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1700-SE
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: 50 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 24
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..abe3af38e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-CrossFire-Edition.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1800-CrossFire-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 113 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 16
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..ec74c6910
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO.yaml
@@ -0,0 +1,38 @@
+name: Radeon-X1800-GTO
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ 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
+ Pixel Shaders: 12
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..2c9c251d8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-GTO2.yaml
@@ -0,0 +1,33 @@
+name: Radeon-X1800-GTO2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Pixel Shaders: 12
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..2c4dccb96
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XL.yaml
@@ -0,0 +1,38 @@
+name: Radeon-X1800-XL
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ 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
+ Pixel Shaders: 16
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..b2dd35eef
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1800-XT.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1800-XT
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 113 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 16
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..b03858e77
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-CrossFire-Edition.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1900-CrossFire-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 100 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 48
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..e81ace056
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-G5-Mac-Edition.yaml
@@ -0,0 +1,33 @@
+name: Radeon-X1900-G5-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 75 W
+ Slot Width: Single-slot
+ Outputs:
+ - 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
new file mode 100644
index 000000000..36d8d1fe5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-GT.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1900-GT
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 75 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 36
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..1d69d0bda
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XT.yaml
@@ -0,0 +1,36 @@
+name: Radeon-X1900-XT
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 100 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Length: 242 mm
+ Pixel Shaders: 48
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..df7a2a3c2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1900-XTX.yaml
@@ -0,0 +1,36 @@
+name: Radeon-X1900-XTX
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 135 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Length: 242 mm
+ Pixel Shaders: 48
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..b7d799ccf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-CrossFire-Edition.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1950-CrossFire-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR4
+ 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
+ TDP: unknown
+ Slot Width: Dual-slot
+ Outputs:
+ - 1x DVI
+ - 1x VHDCI
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 48
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..2a6f4a047
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1950-GT-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 57 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 2x Molex
+ Pixel Shaders: 36
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..e0ea0dca0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-GT.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1950-GT
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 57 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 36
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..0ebc70ef9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1950-PRO-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 66 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 2x Molex
+ Pixel Shaders: 36
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..600ddf358
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO-DUAL.yaml
@@ -0,0 +1,36 @@
+name: Radeon-X1950-PRO-DUAL
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 130 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 2x 6-pin
+ Length: 300 mm
+ Pixel Shaders: 36
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..067741823
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-PRO.yaml
@@ -0,0 +1,37 @@
+name: Radeon-X1950-PRO
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 66 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Length: 228 mm
+ Width: 111 mm
+ Pixel Shaders: 36
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..dc5fd78cb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT-AGP.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1950-XT-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 96 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 48
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..475743c96
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XT.yaml
@@ -0,0 +1,35 @@
+name: Radeon-X1950-XT
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 96 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 48
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..2c5ec8c0a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX-Uber-Edition.yaml
@@ -0,0 +1,36 @@
+name: Radeon-X1950-XTX-Uber-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR4
+ 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
+ TDP: 125 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 1x DVI
+ - 1x VHDCI
+ Power Connectors: 1x 6-pin
+ Length: 230 mm
+ Pixel Shaders: 48
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..c114a50a8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Ultra-Threaded-SE/Radeon-X1950-XTX.yaml
@@ -0,0 +1,36 @@
+name: Radeon-X1950-XTX
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR4
+ 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
+ TDP: 125 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Length: 230 mm
+ Pixel Shaders: 48
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Wonder.yaml b/specs/GPUs-CONSUMER/ATI/Wonder.yaml
new file mode 100644
index 000000000..3c4888e8b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Wonder.yaml
@@ -0,0 +1,24 @@
+name: Wonder
+humanName: Wonder
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 800 nm
+ DirectX Support: ''
+ Vulkan Support: 'N/A'
+ Release Date: '1986-08-04'
+ Manufacturer: ATI
+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/ATI/Wonder/Color-Emulation-Card.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/Color-Emulation-Card.yaml
new file mode 100644
index 000000000..3fe9fed13
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Wonder/Color-Emulation-Card.yaml
@@ -0,0 +1,30 @@
+name: Color-Emulation-Card
+humanName: Color Emulation Card
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ Architecture: Wonder
+ Lithography: 800 nm
+ Vulkan Support: 'N/A'
+ 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 KiB
+ VRAM Type: DRAM
+ 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
+ Slot Width: Single-slot
+ Outputs: No outputs
+ Pixel Shaders: 0
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-480.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-480.yaml
new file mode 100644
index 000000000..726ce77f4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-480.yaml
@@ -0,0 +1,30 @@
+name: EGA-Wonder-480
+humanName: EGA Wonder 480
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ Architecture: Wonder
+ Lithography: 800 nm
+ Vulkan Support: 'N/A'
+ 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 KiB
+ VRAM Type: DRAM
+ 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
+ Slot Width: Single-slot
+ Outputs: No outputs
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800+.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800+.yaml
new file mode 100644
index 000000000..f71f1b43d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800+.yaml
@@ -0,0 +1,30 @@
+name: EGA-Wonder-800+
+humanName: EGA Wonder 800+
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ Architecture: Wonder
+ Lithography: 800 nm
+ Vulkan Support: 'N/A'
+ 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 KiB
+ VRAM Type: DRAM
+ 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
+ Slot Width: Single-slot
+ Outputs: No outputs
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800.yaml
new file mode 100644
index 000000000..e808d68c4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Wonder/EGA-Wonder-800.yaml
@@ -0,0 +1,30 @@
+name: EGA-Wonder-800
+humanName: EGA Wonder 800
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ Architecture: Wonder
+ Lithography: 800 nm
+ Vulkan Support: 'N/A'
+ 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 KiB
+ VRAM Type: DRAM
+ 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
+ Slot Width: Single-slot
+ Outputs: No outputs
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution-Plus.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution-Plus.yaml
new file mode 100644
index 000000000..b5dec6881
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution-Plus.yaml
@@ -0,0 +1,30 @@
+name: Graphics-Solution-Plus
+humanName: Graphics Solution Plus
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ Architecture: Wonder
+ Lithography: 800 nm
+ Vulkan Support: 'N/A'
+ 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 KiB
+ VRAM Type: DRAM
+ 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
+ Slot Width: Single-slot
+ Outputs: No outputs
+ Pixel Shaders: 0
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution.yaml
new file mode 100644
index 000000000..9e3208c13
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Wonder/Graphics-Solution.yaml
@@ -0,0 +1,30 @@
+name: Graphics-Solution
+humanName: Graphics Solution
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ Architecture: Wonder
+ Lithography: 800 nm
+ Vulkan Support: 'N/A'
+ 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 KiB
+ VRAM Type: DRAM
+ 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
+ Slot Width: Single-slot
+ Outputs: No outputs
+ Pixel Shaders: 0
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Improved-Performance.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Improved-Performance.yaml
new file mode 100644
index 000000000..8a71ebc3f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Improved-Performance.yaml
@@ -0,0 +1,31 @@
+name: VGA-Improved-Performance
+humanName: VGA Improved Performance
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ Architecture: Wonder
+ Lithography: 800 nm
+ Vulkan Support: 'N/A'
+ 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 KiB
+ VRAM Type: DRAM
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Length: 178 mm
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder+.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder+.yaml
new file mode 100644
index 000000000..cd03484b3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder+.yaml
@@ -0,0 +1,30 @@
+name: VGA-Wonder+
+humanName: VGA Wonder+
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ Architecture: Wonder
+ Lithography: 800 nm
+ Vulkan Support: 'N/A'
+ 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 KiB
+ VRAM Type: DRAM
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder-XL24.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder-XL24.yaml
new file mode 100644
index 000000000..29ec4ec47
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder-XL24.yaml
@@ -0,0 +1,30 @@
+name: VGA-Wonder-XL24
+humanName: VGA Wonder XL24
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ Architecture: Wonder
+ Lithography: 800 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DRAM
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder.yaml b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder.yaml
new file mode 100644
index 000000000..6a9a017f9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/ATI/Wonder/VGA-Wonder.yaml
@@ -0,0 +1,30 @@
+name: VGA-Wonder
+humanName: VGA Wonder
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: ATI
+ Vendor: ATI
+ Architecture: Wonder
+ Lithography: 800 nm
+ Vulkan Support: 'N/A'
+ 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 KiB
+ VRAM Type: DRAM
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/GCN-1.yaml b/specs/GPUs-CONSUMER/GCN-1.yaml
deleted file mode 100644
index 74d8b50a8..000000000
--- 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.yaml b/specs/GPUs-CONSUMER/GCN-2.yaml
deleted file mode 100644
index f9366322d..000000000
--- 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.yaml b/specs/GPUs-CONSUMER/GCN-3.yaml
deleted file mode 100644
index c09aef4b8..000000000
--- 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.yaml b/specs/GPUs-CONSUMER/GCN-4.yaml
deleted file mode 100644
index 02536a3bd..000000000
--- 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.1.yaml b/specs/GPUs-CONSUMER/GCN-5.1.yaml
deleted file mode 100644
index e02e91759..000000000
--- a/specs/GPUs-CONSUMER/GCN-5.1.yaml
+++ /dev/null
@@ -1,12 +0,0 @@
-hidden: true
-name: GCN 5.1
-data:
- Architecture: 5th Gen GCN
- 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
-# Crossfire Support: XDMA
diff --git a/specs/GPUs-CONSUMER/GCN-5.yaml b/specs/GPUs-CONSUMER/GCN-5.yaml
deleted file mode 100644
index 76c09b877..000000000
--- 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/GPUs-CONSUMER-3dfx.yaml b/specs/GPUs-CONSUMER/GPUs-CONSUMER-3dfx.yaml
new file mode 100644
index 000000000..ceb669f47
--- /dev/null
+++ b/specs/GPUs-CONSUMER/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
+ members:
+ - Voodoo-Scalable
+
diff --git a/specs/GPUs-CONSUMER/GPUs-CONSUMER-AMD.yaml b/specs/GPUs-CONSUMER/GPUs-CONSUMER-AMD.yaml
new file mode 100644
index 000000000..57f877343
--- /dev/null
+++ b/specs/GPUs-CONSUMER/GPUs-CONSUMER-AMD.yaml
@@ -0,0 +1,32 @@
+name: GPUs-CONSUMER-AMD
+humanName: Consumer GPUs
+type: Generic Container
+isPart: false
+topHeader: 'SELECT SERIES:'
+data:
+ Manufacturer: AMD
+sections:
+ - header: RDNA
+ members:
+ - RDNA-4.0
+ - RDNA-3.5
+ - RDNA-3.0
+ - RDNA-2.0
+ - RDNA-1.0
+ - header: GCN
+ members:
+ - GCN-5.1
+ - GCN-5.0
+ - GCN-4.0
+ - GCN-3.0
+ - GCN-2.0
+ - GCN-1.0
+ - header: TeraScale
+ members:
+ - TeraScale-3
+ - TeraScale-2
+ - TeraScale
+ - header: Mach
+ members:
+ - Mach
+
diff --git a/specs/GPUs-CONSUMER/GPUs-CONSUMER-ATI.yaml b/specs/GPUs-CONSUMER/GPUs-CONSUMER-ATI.yaml
new file mode 100644
index 000000000..5e008057b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/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
+ 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/GPUs-CONSUMER-Intel.yaml b/specs/GPUs-CONSUMER/GPUs-CONSUMER-Intel.yaml
new file mode 100644
index 000000000..645bfa3ce
--- /dev/null
+++ b/specs/GPUs-CONSUMER/GPUs-CONSUMER-Intel.yaml
@@ -0,0 +1,37 @@
+name: GPUs-CONSUMER-INTEL
+humanName: Consumer GPUs
+type: Generic Container
+isPart: false
+topHeader: 'SELECT SERIES:'
+data:
+ Manufacturer: Intel
+sections:
+ - header: Intel Arc
+ members:
+ - Xe2
+ - header: Uncategorised
+ 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/GPUs-CONSUMER-Matrox.yaml b/specs/GPUs-CONSUMER/GPUs-CONSUMER-Matrox.yaml
new file mode 100644
index 000000000..fc96bb668
--- /dev/null
+++ b/specs/GPUs-CONSUMER/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
+ members:
+ - PX
+ - G200
+ - G400
+ - Parhelia
+ - G500
+ - G100
+ - MP
+
diff --git a/specs/GPUs-CONSUMER/GPUs-CONSUMER-Nvidia.yaml b/specs/GPUs-CONSUMER/GPUs-CONSUMER-Nvidia.yaml
new file mode 100644
index 000000000..45ba11853
--- /dev/null
+++ b/specs/GPUs-CONSUMER/GPUs-CONSUMER-Nvidia.yaml
@@ -0,0 +1,37 @@
+name: GPUs-CONSUMER-NVIDIA
+humanName: Consumer GPUs
+type: Generic Container
+isPart: false
+topHeader: 'SELECT SERIES:'
+data:
+ Manufacturer: Nvidia
+sections:
+ - header: RTX
+ members:
+ - Blackwell-2.0
+ - Ada-Lovelace
+ - Ampere
+ - Turing
+ - header: GTX
+ members:
+ - Pascal
+ - Maxwell-2.0
+ - Maxwell
+ - Kepler-2.0
+ - Kepler
+ - Fermi-2.0
+ - Fermi
+ - Tesla-2.0
+ - Tesla
+ - header: Pre-GTX
+ members:
+ - Celsius
+ - Curie
+ - Fahrenheit
+ - Kelvin
+ - Rankine
+ - VLIW-Vec4
+ - header: Uncategorised
+ members:
+ - Hopper
+ - Volta
diff --git a/specs/GPUs-CONSUMER/GPUs-CONSUMER-PowerVR.yaml b/specs/GPUs-CONSUMER/GPUs-CONSUMER-PowerVR.yaml
new file mode 100644
index 000000000..e098c1dd5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/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
+ members:
+ - PowerVR-Series5XT
+
\ No newline at end of file
diff --git a/specs/GPUs-CONSUMER/GPUs-CONSUMER-XGI.yaml b/specs/GPUs-CONSUMER/GPUs-CONSUMER-XGI.yaml
new file mode 100644
index 000000000..c189ca184
--- /dev/null
+++ b/specs/GPUs-CONSUMER/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
+ members:
+ - XG4
+
diff --git a/specs/GPUs-CONSUMER/HD4000.yaml b/specs/GPUs-CONSUMER/HD4000.yaml
deleted file mode 100644
index 0ff3aac03..000000000
--- 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 100644
index f92008396..000000000
--- 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 100644
index 08787a5fb..000000000
--- 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 100644
index 187d21102..000000000
--- 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 100644
index ae8fd9f40..000000000
--- 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 100644
index 40ba79f3c..000000000
--- 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 100644
index 818770bbf..000000000
--- 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 100644
index f03fab3fe..000000000
--- 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 100644
index 4e6954b96..000000000
--- 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 100644
index 1532c366a..000000000
--- 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 100644
index d1f727785..000000000
--- 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 100644
index be1a4aea8..000000000
--- 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 100644
index 05a784432..000000000
--- 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 100644
index a4e83511d..000000000
--- 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 100644
index a16e79303..000000000
--- 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 100644
index ecb0b42f7..000000000
--- 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 100644
index e681abfa2..000000000
--- 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 100644
index 915dfe130..000000000
--- 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 100644
index de2239363..000000000
--- 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 100644
index 511246316..000000000
--- 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 100644
index 182492185..000000000
--- 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 100644
index 695698e92..000000000
--- 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 100644
index 6fbd41e75..000000000
--- 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 100644
index c52c59483..000000000
--- 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 100644
index a2879e884..000000000
--- 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 100644
index afd57fa66..000000000
--- 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 100644
index 8bd7d02eb..000000000
--- 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 100644
index 630244251..000000000
--- 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 100644
index 9042ffc0d..000000000
--- 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 100644
index 9bca529d4..000000000
--- 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 100644
index bc5fc9c10..000000000
--- 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 100644
index 157975a1c..000000000
--- 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 100644
index 26b679e59..000000000
--- 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 100644
index 1759a93bc..000000000
--- 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 100644
index 2b9f5dda1..000000000
--- 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 100644
index a8f84a74c..000000000
--- 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 100644
index e77ef9ca8..000000000
--- 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 100644
index c8292cbfe..000000000
--- 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 100644
index 5ca338368..000000000
--- 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 100644
index 7cf443b87..000000000
--- 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 100644
index 39d96c047..000000000
--- 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 100644
index f68f2ca5c..000000000
--- 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 100644
index 8dca72368..000000000
--- 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 100644
index c558c0428..000000000
--- 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 100644
index ee35b91f9..000000000
--- 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 100644
index 716ccfda7..000000000
--- 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 100644
index db68126b6..000000000
--- 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 100644
index 4abcc52d5..000000000
--- 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 100644
index 1b4c5a2b5..000000000
--- 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 100644
index 16eb9c508..000000000
--- 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 100644
index da972d4db..000000000
--- 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 100644
index f0b249bc7..000000000
--- 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 100644
index f0dab316c..000000000
--- 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 100644
index 5aee80119..000000000
--- 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 100644
index 72dfc3753..000000000
--- 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 100644
index 03fde7c12..000000000
--- 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 100644
index 1d9b7f134..000000000
--- 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 100644
index 857a596d0..000000000
--- 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 100644
index 4b379c933..000000000
--- 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 100644
index f13c71271..000000000
--- 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 100644
index 0a690bef4..000000000
--- 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 100644
index 8cd17f782..000000000
--- 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 100644
index 68e634fa8..000000000
--- 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 100644
index 391133245..000000000
--- 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 100644
index 92b137705..000000000
--- 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 100644
index da55f24a7..000000000
--- 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 100644
index ffd6166df..000000000
--- 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 100644
index 98d2a672c..000000000
--- 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 100644
index 53c5f965e..000000000
--- 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 100644
index b23688437..000000000
--- 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 100644
index f1d710693..000000000
--- 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 100644
index 7066ce667..000000000
--- 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 100644
index 91227d085..000000000
--- 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 100644
index 2bb27d3e4..000000000
--- 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 100644
index 3c5f0d0c6..000000000
--- 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 100644
index 540bdb8d9..000000000
--- 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 100644
index 4e714ed34..000000000
--- 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 100644
index 733785714..000000000
--- 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 100644
index e02315de3..000000000
--- 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 100644
index 5288d9f37..000000000
--- 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 100644
index f2a762596..000000000
--- 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 100644
index 5842ed0e6..000000000
--- 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 100644
index e8b2eef29..000000000
--- 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 100644
index d05fbef4d..000000000
--- 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 100644
index 272f6abc8..000000000
--- 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 100644
index e727afc4d..000000000
--- 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 100644
index 89a21bb10..000000000
--- 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 100644
index 0603449dc..000000000
--- 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 100644
index 2665c9d96..000000000
--- 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 100644
index 75cc57522..000000000
--- 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 100644
index 5b630dd7d..000000000
--- 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 100644
index 415c428bf..000000000
--- 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 100644
index 84800cd39..000000000
--- 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 100644
index a35dd8ae6..000000000
--- 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 100644
index 9d79040ea..000000000
--- 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 100644
index efef83cae..000000000
--- 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 100644
index 2f3e3069a..000000000
--- 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 100644
index 5e588141c..000000000
--- 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 100644
index 7e0bf8e58..000000000
--- 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 100644
index 3127f75a3..000000000
--- 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 100644
index 06a3f126b..000000000
--- 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 100644
index f5f673a8c..000000000
--- 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 100644
index 748575d87..000000000
--- 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 100644
index 13ec35393..000000000
--- 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 100644
index 25d871a67..000000000
--- 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 100644
index c45b41378..000000000
--- 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 100644
index 4e3535a4c..000000000
--- 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 100644
index cbfb22523..000000000
--- 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 100644
index 420eef038..000000000
--- 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 100644
index 758607bdb..000000000
--- 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 100644
index a43a5a11e..000000000
--- 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 100644
index 486f22e30..000000000
--- 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 100644
index 86af78d3a..000000000
--- 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 100644
index 56b412e19..000000000
--- 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 100644
index 4edbd27c3..000000000
--- 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 100644
index fad5e04fd..000000000
--- 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 100644
index c23e65028..000000000
--- 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 100644
index 20542a904..000000000
--- 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 100644
index f82b5c0c4..000000000
--- 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 100644
index e0ac3fdbc..000000000
--- 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 100644
index d28db35d6..000000000
--- 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 100644
index 7c783aa0a..000000000
--- 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 100644
index e0973650c..000000000
--- 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 100644
index 2b231c57c..000000000
--- 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 100644
index 1efcb93eb..000000000
--- 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 100644
index 309a08903..000000000
--- 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/Intel/Generation-1.0.yaml b/specs/GPUs-CONSUMER/Intel/Generation-1.0.yaml
new file mode 100644
index 000000000..91d0ed4cd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-1.0.yaml
@@ -0,0 +1,20 @@
+name: Generation-1.0
+humanName: Generation 1.0
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 150 nm
+ DirectX Support: '7.0'
+ Vulkan Support: 'N/A'
+ Release Date: '1998'
+ Manufacturer: Intel
+sections:
+ - header: WHOLE RANGE
+ members:
+ - i752
+ - i752-Graphics
+ - i810-Graphics
+ - i815-Graphics
+ - i830MG-Graphics
+ - i830M-Graphics
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-1.0/i752-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i752-Graphics.yaml
new file mode 100644
index 000000000..1998f818e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i752-Graphics.yaml
@@ -0,0 +1,31 @@
+name: i752-Graphics
+humanName: i752 Graphics
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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'
+ GPU Base Frequency: 100 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
+ Shader Processor Count: 0
+ Die Size: unknown
+ GPU: Portola
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-1.0/i752.yaml b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i752.yaml
new file mode 100644
index 000000000..16f7ce5f1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i752.yaml
@@ -0,0 +1,31 @@
+name: i752
+humanName: i752
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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'
+ GPU Base Frequency: 100 MHz
+ VRAM Frequency: 133 MHz
+ VRAM Bandwidth: 1.064 GB/s
+ VRAM Capacity: 16 MiB
+ VRAM Type: SDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VGA2x S-Video
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-1.0/i810-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i810-Graphics.yaml
new file mode 100644
index 000000000..f76d8ad17
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i810-Graphics.yaml
@@ -0,0 +1,31 @@
+name: i810-Graphics
+humanName: i810 Graphics
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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'
+ GPU Base Frequency: 133 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
+ Shader Processor Count: 0
+ Die Size: unknown
+ GPU: Whitney
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-1.0/i815-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i815-Graphics.yaml
new file mode 100644
index 000000000..27bdeeb68
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i815-Graphics.yaml
@@ -0,0 +1,31 @@
+name: i815-Graphics
+humanName: i815 Graphics
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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'
+ GPU Base Frequency: 133 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
+ Shader Processor Count: 0
+ Die Size: unknown
+ GPU: Solano
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-1.0/i830M-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i830M-Graphics.yaml
new file mode 100644
index 000000000..7bf3bc319
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i830M-Graphics.yaml
@@ -0,0 +1,33 @@
+name: i830M-Graphics
+humanName: i830M Graphics
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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
+ Shader Processor Count: 0
+ Die Size: unknown
+ GPU: Almador
+ GPU Variant: Almador (830M)
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-1.0/i830MG-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i830MG-Graphics.yaml
new file mode 100644
index 000000000..a3ba836c2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-1.0/i830MG-Graphics.yaml
@@ -0,0 +1,33 @@
+name: i830MG-Graphics
+humanName: i830MG Graphics
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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
+ Shader Processor Count: 0
+ Die Size: unknown
+ GPU: Almador
+ GPU Variant: Almador (830MG)
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-11.0.yaml b/specs/GPUs-CONSUMER/Intel/Generation-11.0.yaml
new file mode 100644
index 000000000..647853924
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-11.0.yaml
@@ -0,0 +1,21 @@
+name: Generation-11.0
+humanName: Generation 11.0
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 10 nm 10 nm+
+ DirectX Support: '12.1'
+ Vulkan Support: '1.3'
+ Release Date: '2019-05-29'
+ Manufacturer: Intel
+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/Intel/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
new file mode 100644
index 000000000..79fe7f3b9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-11.0/Iris-Plus-Graphics-G4-48EU-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Iris-Plus-Graphics-G4-48EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/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
new file mode 100644
index 000000000..2204cddbf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-11.0/Iris-Plus-Graphics-G7-64EU-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Iris-Plus-Graphics-G7-64EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-24EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-24EU-Mobile.yaml
new file mode 100644
index 000000000..98ad6357f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-24EU-Mobile.yaml
@@ -0,0 +1,33 @@
+name: UHD-Graphics-24EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-32EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-32EU-Mobile.yaml
new file mode 100644
index 000000000..91b732894
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-32EU-Mobile.yaml
@@ -0,0 +1,33 @@
+name: UHD-Graphics-32EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-G1-32EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-G1-32EU-Mobile.yaml
new file mode 100644
index 000000000..dacfde297
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-G1-32EU-Mobile.yaml
@@ -0,0 +1,33 @@
+name: UHD-Graphics-G1-32EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-G4-48EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-G4-48EU-Mobile.yaml
new file mode 100644
index 000000000..0d7755fbc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-G4-48EU-Mobile.yaml
@@ -0,0 +1,33 @@
+name: UHD-Graphics-G4-48EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-G7-64EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-G7-64EU-Mobile.yaml
new file mode 100644
index 000000000..7bbab3cb0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-11.0/UHD-Graphics-G7-64EU-Mobile.yaml
@@ -0,0 +1,33 @@
+name: UHD-Graphics-G7-64EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.1.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1.yaml
new file mode 100644
index 000000000..5651d9aae
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.1.yaml
@@ -0,0 +1,25 @@
+name: Generation-12.1
+humanName: Generation 12.1
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 10 nm - 14 nm++
+ DirectX Support: '12.1'
+ Vulkan Support: '1.3'
+ Release Date: '2020'
+ Manufacturer: Intel
+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/Intel/Generation-12.1/H3C-XG310.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1/H3C-XG310.yaml
new file mode 100644
index 000000000..6e5c46d41
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.1/H3C-XG310.yaml
@@ -0,0 +1,34 @@
+name: H3C-XG310
+humanName: H3C XG310
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/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
new file mode 100644
index 000000000..6fc48cb86
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.1/Iris-Xe-Graphics-G4-48EU-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Iris-Xe-Graphics-G4-48EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/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
new file mode 100644
index 000000000..9967e4667
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.1/Iris-Xe-Graphics-G7-80EU-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Iris-Xe-Graphics-G7-80EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/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
new file mode 100644
index 000000000..08f1da082
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.1/Iris-Xe-Graphics-G7-96EU-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Iris-Xe-Graphics-G7-96EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..196fcbf4b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.1/Iris-Xe-MAX-Graphics.yaml
@@ -0,0 +1,33 @@
+name: Iris-Xe-MAX-Graphics
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.1/UHD-Graphics-16EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1/UHD-Graphics-16EU-Mobile.yaml
new file mode 100644
index 000000000..20806f8c5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.1/UHD-Graphics-16EU-Mobile.yaml
@@ -0,0 +1,33 @@
+name: UHD-Graphics-16EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.1/UHD-Graphics-16EU.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1/UHD-Graphics-16EU.yaml
new file mode 100644
index 000000000..cdf29298d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.1/UHD-Graphics-16EU.yaml
@@ -0,0 +1,32 @@
+name: UHD-Graphics-16EU
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.1/UHD-Graphics-750.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1/UHD-Graphics-750.yaml
new file mode 100644
index 000000000..d7470b128
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.1/UHD-Graphics-750.yaml
@@ -0,0 +1,32 @@
+name: UHD-Graphics-750
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.1/UHD-Graphics-P750.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1/UHD-Graphics-P750.yaml
new file mode 100644
index 000000000..bf2d82751
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.1/UHD-Graphics-P750.yaml
@@ -0,0 +1,33 @@
+name: UHD-Graphics-P750
+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'
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..df7cef546
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.1/Xe-DG1-SDV.yaml
@@ -0,0 +1,35 @@
+name: Xe-DG1-SDV
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.1/Xe-DG1.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.1/Xe-DG1.yaml
new file mode 100644
index 000000000..fd3892c47
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.1/Xe-DG1.yaml
@@ -0,0 +1,37 @@
+name: Xe-DG1
+humanName: Xe DG1
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.2.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.2.yaml
new file mode 100644
index 000000000..37d28b0d8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.2.yaml
@@ -0,0 +1,23 @@
+name: Generation-12.2
+humanName: Generation 12.2
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 10 nm
+ DirectX Support: '12.1'
+ Vulkan Support: '1.3'
+ Release Date: '2022-01-04'
+ Manufacturer: Intel
+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/Intel/Generation-12.2/Iris-Xe-Graphics-80EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.2/Iris-Xe-Graphics-80EU-Mobile.yaml
new file mode 100644
index 000000000..0c63483db
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.2/Iris-Xe-Graphics-80EU-Mobile.yaml
@@ -0,0 +1,32 @@
+name: Iris-Xe-Graphics-80EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.2/Iris-Xe-Graphics-96EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.2/Iris-Xe-Graphics-96EU-Mobile.yaml
new file mode 100644
index 000000000..a44f1ee12
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.2/Iris-Xe-Graphics-96EU-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Iris-Xe-Graphics-96EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-48EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-48EU-Mobile.yaml
new file mode 100644
index 000000000..b46f1f2d0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-48EU-Mobile.yaml
@@ -0,0 +1,33 @@
+name: UHD-Graphics-48EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-64EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-64EU-Mobile.yaml
new file mode 100644
index 000000000..78cb6a970
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-64EU-Mobile.yaml
@@ -0,0 +1,32 @@
+name: UHD-Graphics-64EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-710-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-710-Mobile.yaml
new file mode 100644
index 000000000..9b558747c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-710-Mobile.yaml
@@ -0,0 +1,33 @@
+name: UHD-Graphics-710-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-710.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-710.yaml
new file mode 100644
index 000000000..30df1ff81
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-710.yaml
@@ -0,0 +1,32 @@
+name: UHD-Graphics-710
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-730.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-730.yaml
new file mode 100644
index 000000000..a9da23029
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-730.yaml
@@ -0,0 +1,32 @@
+name: UHD-Graphics-730
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-770-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-770-Mobile.yaml
new file mode 100644
index 000000000..97643c1af
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-770-Mobile.yaml
@@ -0,0 +1,33 @@
+name: UHD-Graphics-770-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-770.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-770.yaml
new file mode 100644
index 000000000..d0dbee03d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.2/UHD-Graphics-770.yaml
@@ -0,0 +1,32 @@
+name: UHD-Graphics-770
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.5.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.5.yaml
new file mode 100644
index 000000000..bccc1d89d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.5.yaml
@@ -0,0 +1,17 @@
+name: Generation-12.5
+humanName: Generation 12.5
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 7 nm - 10 nm
+ DirectX Support: '12.1'
+ Vulkan Support: 'N/A'
+ Release Date: '2021'
+ Manufacturer: Intel
+sections:
+ - header: WHOLE RANGE
+ members:
+ - Arctic-Sound-M
+ - Arctic-Sound-1T
+ - Arctic-Sound-2T
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
new file mode 100644
index 000000000..a36df4fab
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-1T.yaml
@@ -0,0 +1,34 @@
+name: Arctic-Sound-1T
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..a9c334468
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-2T.yaml
@@ -0,0 +1,34 @@
+name: Arctic-Sound-2T
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..ca246cb5e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.5/Arctic-Sound-M.yaml
@@ -0,0 +1,34 @@
+name: Arctic-Sound-M
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7.yaml
new file mode 100644
index 000000000..a5b3629df
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7.yaml
@@ -0,0 +1,38 @@
+name: Generation-12.7
+humanName: Generation 12.7
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 6 nm
+ DirectX Support: '12.2'
+ Vulkan Support: '1.3'
+ Release Date: '2022'
+ Manufacturer: Intel
+sections:
+ - header: Desktop
+ members:
+ - Arc-A310
+ - Arc-A380
+ - Arc-A580
+ - header: Pro (Workstation)
+ members:
+ - Arc-Pro-A60M
+ - Arc-Pro-A60
+ - Arc-Pro-A50
+ - Arc-Pro-A40
+ - Arc-Pro-A30M
+ - header: WHOLE RANGE
+ members:
+ - Arc-A350
+ - Arc-A350M
+ - Arc-A370M
+ - Arc-A380M
+ - Arc-A530M
+ - Arc-A550M
+ - Arc-A570M
+ - Arc-A730M
+ - Arc-A750
+ - Arc-A770
+ - Arc-A770M
+ - Arc-A780
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A310.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A310.yaml
new file mode 100644
index 000000000..0e67d74b2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A310.yaml
@@ -0,0 +1,38 @@
+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-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 GiB
+ VRAM Type: GDDR6
+ VRAM Bus Width: 64 bit
+ Render Output Unit Count: 16
+ Texture Mapping Unit Count: 32
+ 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: 0.672 GFLOPS (1:4)
+ Slot Width: Single-slot
+ Outputs: 4x mini-DisplayPort 2.0
+ Power Connectors: None
+ Ray Tracing Cores: 2
+ Tensor Cores: 96
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A350.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A350.yaml
new file mode 100644
index 000000000..9f3f7d502
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A350.yaml
@@ -0,0 +1,37 @@
+name: Arc-A350
+humanName: Arc A350
+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'
+ GPU Base Frequency: 2000 MHz
+ GPU Boost Frequency: 2000 MHz
+ VRAM Frequency: 1937 MHz
+ VRAM Bandwidth: 124.0 GB/s
+ VRAM Capacity: 4 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A350M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A350M.yaml
new file mode 100644
index 000000000..cb64ef1f3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A350M.yaml
@@ -0,0 +1,37 @@
+name: Arc-A350M
+humanName: Arc A350M
+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-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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A370M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A370M.yaml
new file mode 100644
index 000000000..a9d901247
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A370M.yaml
@@ -0,0 +1,37 @@
+name: Arc-A370M
+humanName: Arc A370M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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 000000000..6d34e1c73
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A380.yaml
@@ -0,0 +1,38 @@
+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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A380M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A380M.yaml
new file mode 100644
index 000000000..8b26ed3e4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A380M.yaml
@@ -0,0 +1,37 @@
+name: Arc-A380M
+humanName: Arc A380M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A530M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A530M.yaml
new file mode 100644
index 000000000..f2bd799c3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A530M.yaml
@@ -0,0 +1,36 @@
+name: Arc-A530M
+humanName: Arc A530M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A550M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A550M.yaml
new file mode 100644
index 000000000..c0bb0e58a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A550M.yaml
@@ -0,0 +1,36 @@
+name: Arc-A550M
+humanName: Arc A550M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A570M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A570M.yaml
new file mode 100644
index 000000000..fd7231fc8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A570M.yaml
@@ -0,0 +1,36 @@
+name: Arc-A570M
+humanName: Arc A570M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A580.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A580.yaml
new file mode 100644
index 000000000..7dc6d2466
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A580.yaml
@@ -0,0 +1,39 @@
+name: Arc-A580
+humanName: Arc A580
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A730M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A730M.yaml
new file mode 100644
index 000000000..52b4247a8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A730M.yaml
@@ -0,0 +1,36 @@
+name: Arc-A730M
+humanName: Arc A730M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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 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: 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A750.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A750.yaml
new file mode 100644
index 000000000..2077af3cf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A750.yaml
@@ -0,0 +1,39 @@
+name: Arc-A750
+humanName: Arc A750
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A770.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A770.yaml
new file mode 100644
index 000000000..d21b4a0fa
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A770.yaml
@@ -0,0 +1,39 @@
+name: Arc-A770
+humanName: Arc A770
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A770M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A770M.yaml
new file mode 100644
index 000000000..bb8e11e94
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A770M.yaml
@@ -0,0 +1,36 @@
+name: Arc-A770M
+humanName: Arc A770M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A780.yaml b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A780.yaml
new file mode 100644
index 000000000..63731753a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-A780.yaml
@@ -0,0 +1,39 @@
+name: Arc-A780
+humanName: Arc A780
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..8243222a4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A30M.yaml
@@ -0,0 +1,37 @@
+name: Arc-Pro-A30M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..fa9ce3dae
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A40.yaml
@@ -0,0 +1,38 @@
+name: Arc-Pro-A40
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..4b45f9133
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A50.yaml
@@ -0,0 +1,38 @@
+name: Arc-Pro-A50
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..aa678791c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A60.yaml
@@ -0,0 +1,36 @@
+name: Arc-Pro-A60
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..3e15af2f9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-12.7/Arc-Pro-A60M.yaml
@@ -0,0 +1,36 @@
+name: Arc-Pro-A60M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-2.0.yaml b/specs/GPUs-CONSUMER/Intel/Generation-2.0.yaml
new file mode 100644
index 000000000..334590153
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-2.0.yaml
@@ -0,0 +1,17 @@
+name: Generation-2.0
+humanName: Generation 2.0
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 130 nm
+ DirectX Support: '7.0'
+ Vulkan Support: 'N/A'
+ Release Date: '2002'
+ Manufacturer: Intel
+sections:
+ - header: WHOLE RANGE
+ members:
+ - Extreme-Graphics
+ - Extreme-Graphics-2
+ - i852GM-Graphics
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
new file mode 100644
index 000000000..5e3fc423a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-2.0/Extreme-Graphics-2.yaml
@@ -0,0 +1,33 @@
+name: Extreme-Graphics-2
+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'
+ 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
+ Shader Processor Count: 0
+ Die Size: unknown
+ GPU: Springdale
+ GPU Variant: Springdale-G (865G)
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-2.0/Extreme-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-2.0/Extreme-Graphics.yaml
new file mode 100644
index 000000000..cf7631be8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-2.0/Extreme-Graphics.yaml
@@ -0,0 +1,32 @@
+name: Extreme-Graphics
+humanName: Extreme Graphics
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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'
+ GPU Base 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
+ Shader Processor Count: 0
+ Die Size: unknown
+ GPU: Brookdale
+ GPU Variant: Brookdale-G (845G)
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-2.0/i852GM-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/Generation-2.0/i852GM-Graphics.yaml
new file mode 100644
index 000000000..a74a521bc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-2.0/i852GM-Graphics.yaml
@@ -0,0 +1,33 @@
+name: i852GM-Graphics
+humanName: i852GM Graphics
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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
+ Shader Processor Count: 0
+ Die Size: unknown
+ GPU: Montara
+ GPU Variant: Montara-GM (852GM)
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-3.0.yaml b/specs/GPUs-CONSUMER/Intel/Generation-3.0.yaml
new file mode 100644
index 000000000..d0e40baaf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-3.0.yaml
@@ -0,0 +1,15 @@
+name: Generation-3.0
+humanName: Generation 3.0
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 130 nm
+ DirectX Support: '9.0c'
+ Vulkan Support: 'N/A'
+ Release Date: '2004-06-01'
+ Manufacturer: Intel
+sections:
+ - header: WHOLE RANGE
+ members:
+ - GMA-900
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-3.0/GMA-900.yaml b/specs/GPUs-CONSUMER/Intel/Generation-3.0/GMA-900.yaml
new file mode 100644
index 000000000..8568da11a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-3.0/GMA-900.yaml
@@ -0,0 +1,31 @@
+name: GMA-900
+humanName: GMA 900
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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'
+ GPU Base Frequency: 333 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: 0
+ Die Size: unknown
+ GPU: Grantsdale
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-3.5.yaml b/specs/GPUs-CONSUMER/Intel/Generation-3.5.yaml
new file mode 100644
index 000000000..8a84e218a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-3.5.yaml
@@ -0,0 +1,15 @@
+name: Generation-3.5
+humanName: Generation 3.5
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 95 nm
+ DirectX Support: '9.0'
+ Vulkan Support: 'N/A'
+ Release Date: '2005-06-01'
+ Manufacturer: Intel
+sections:
+ - header: WHOLE RANGE
+ members:
+ - GMA-950
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-3.5/GMA-950.yaml b/specs/GPUs-CONSUMER/Intel/Generation-3.5/GMA-950.yaml
new file mode 100644
index 000000000..a905d444c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-3.5/GMA-950.yaml
@@ -0,0 +1,32 @@
+name: GMA-950
+humanName: GMA 950
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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
+ Shader Processor Count: 0
+ Die Size: unknown
+ GPU: Lakeport
+ TDP: 7 W
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-4.0.yaml b/specs/GPUs-CONSUMER/Intel/Generation-4.0.yaml
new file mode 100644
index 000000000..db366cfdb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-4.0.yaml
@@ -0,0 +1,20 @@
+name: Generation-4.0
+humanName: Generation 4.0
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 90 nm
+ DirectX Support: '9.0c'
+ Vulkan Support: 'N/A'
+ Release Date: '2006-06-01'
+ Manufacturer: Intel
+sections:
+ - header: WHOLE RANGE
+ members:
+ - GMA-3000
+ - GMA-3100
+ - GMA-3150
+ - GMA-X3000
+ - GMA-X3100
+ - GMA-X3500
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3000.yaml b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3000.yaml
new file mode 100644
index 000000000..dadbb55eb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3000.yaml
@@ -0,0 +1,32 @@
+name: GMA-3000
+humanName: GMA 3000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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'
+ GPU Base Frequency: 667 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: 0
+ Die Size: unknown
+ GPU: Broadwater
+ GPU Variant: Broadwater-G (Q965)
+ TDP: 13 W
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3100.yaml b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3100.yaml
new file mode 100644
index 000000000..0c90af6ad
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3100.yaml
@@ -0,0 +1,31 @@
+name: GMA-3100
+humanName: GMA 3100
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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'
+ GPU Base 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: 4
+ Shader Processor Count: 0
+ Die Size: unknown
+ GPU: Bearlake
+ TDP: 13 W
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3150.yaml b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3150.yaml
new file mode 100644
index 000000000..f60c728d9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-3150.yaml
@@ -0,0 +1,31 @@
+name: GMA-3150
+humanName: GMA 3150
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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'
+ GPU Base 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: 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3000.yaml b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3000.yaml
new file mode 100644
index 000000000..e6c5b1953
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3000.yaml
@@ -0,0 +1,32 @@
+name: GMA-X3000
+humanName: GMA X3000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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'
+ GPU Base Frequency: 667 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: 0
+ Die Size: unknown
+ GPU: Broadwater
+ GPU Variant: Broadwater-G (Q965)
+ TDP: 13 W
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3100.yaml b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3100.yaml
new file mode 100644
index 000000000..acd7b726a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3100.yaml
@@ -0,0 +1,32 @@
+name: GMA-X3100
+humanName: GMA X3100
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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'
+ GPU Base 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: 1
+ Texture Mapping Unit Count: 8
+ Shader Processor Count: 0
+ Die Size: unknown
+ GPU: Crestline
+ GPU Variant: Crestline-GM
+ TDP: 13 W
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 8
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3500.yaml b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3500.yaml
new file mode 100644
index 000000000..85a4f1002
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-4.0/GMA-X3500.yaml
@@ -0,0 +1,32 @@
+name: GMA-X3500
+humanName: GMA X3500
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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'
+ GPU Base Frequency: 667 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: 8
+ Shader Processor Count: 0
+ Die Size: unknown
+ GPU: Bearlake
+ GPU Variant: Bearlake (G35)
+ TDP: 13 W
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-5.0.yaml b/specs/GPUs-CONSUMER/Intel/Generation-5.0.yaml
new file mode 100644
index 000000000..f362f809f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-5.0.yaml
@@ -0,0 +1,18 @@
+name: Generation-5.0
+humanName: Generation 5.0
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 65 nm
+ DirectX Support: '10.0'
+ Vulkan Support: 'N/A'
+ Release Date: '2008-06-01'
+ Manufacturer: Intel
+sections:
+ - header: WHOLE RANGE
+ members:
+ - GMA-X4500
+ - GMA-X4500M
+ - GMA-X4500MHD
+ - GMA-X4700MHD
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4500.yaml b/specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4500.yaml
new file mode 100644
index 000000000..0fcc13ca4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4500.yaml
@@ -0,0 +1,31 @@
+name: GMA-X4500
+humanName: GMA X4500
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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'
+ GPU Base Frequency: 533 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: Eaglelake
+ TDP: 13 W
+ FP32 Compute: 85.28 GFLOPS
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4500M.yaml b/specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4500M.yaml
new file mode 100644
index 000000000..034ad429c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4500M.yaml
@@ -0,0 +1,31 @@
+name: GMA-X4500M
+humanName: GMA X4500M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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'
+ GPU Base 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: 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4500MHD.yaml b/specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4500MHD.yaml
new file mode 100644
index 000000000..154e02230
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4500MHD.yaml
@@ -0,0 +1,31 @@
+name: GMA-X4500MHD
+humanName: GMA X4500MHD
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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'
+ GPU Base Frequency: 533 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: Cantiga
+ TDP: 13 W
+ FP32 Compute: 85.28 GFLOPS
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4700MHD.yaml b/specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4700MHD.yaml
new file mode 100644
index 000000000..4ee6d20c2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-5.0/GMA-X4700MHD.yaml
@@ -0,0 +1,31 @@
+name: GMA-X4700MHD
+humanName: GMA X4700MHD
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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'
+ GPU Base Frequency: 640 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: Montevina
+ TDP: 13 W
+ FP32 Compute: 102.4 GFLOPS
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-5.75.yaml b/specs/GPUs-CONSUMER/Intel/Generation-5.75.yaml
new file mode 100644
index 000000000..70beaea57
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-5.75.yaml
@@ -0,0 +1,16 @@
+name: Generation-5.75
+humanName: Generation 5.75
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 45 nm
+ DirectX Support: '10.1'
+ Vulkan Support: 'N/A'
+ Release Date: '2010-01-10'
+ Manufacturer: Intel
+sections:
+ - header: WHOLE RANGE
+ members:
+ - HD-Graphics-12EU
+ - HD-Graphics-16EU-Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-5.75/HD-Graphics-12EU.yaml b/specs/GPUs-CONSUMER/Intel/Generation-5.75/HD-Graphics-12EU.yaml
new file mode 100644
index 000000000..a21388ed3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-5.75/HD-Graphics-12EU.yaml
@@ -0,0 +1,31 @@
+name: HD-Graphics-12EU
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-5.75/HD-Graphics-16EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-5.75/HD-Graphics-16EU-Mobile.yaml
new file mode 100644
index 000000000..457464265
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-5.75/HD-Graphics-16EU-Mobile.yaml
@@ -0,0 +1,32 @@
+name: HD-Graphics-16EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-6.0.yaml b/specs/GPUs-CONSUMER/Intel/Generation-6.0.yaml
new file mode 100644
index 000000000..b6c2a0589
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-6.0.yaml
@@ -0,0 +1,19 @@
+name: Generation-6.0
+humanName: Generation 6.0
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 32 nm
+ DirectX Support: '10.1'
+ Vulkan Support: 'N/A'
+ Release Date: '2011-02-01'
+ Manufacturer: Intel
+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/Intel/Generation-6.0/HD-Graphics-2000.yaml b/specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-2000.yaml
new file mode 100644
index 000000000..20ddee91c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-2000.yaml
@@ -0,0 +1,32 @@
+name: HD-Graphics-2000
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-3000-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-3000-Mobile.yaml
new file mode 100644
index 000000000..d0813e6a3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-3000-Mobile.yaml
@@ -0,0 +1,32 @@
+name: HD-Graphics-3000-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-3000.yaml b/specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-3000.yaml
new file mode 100644
index 000000000..0c5c9692f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-3000.yaml
@@ -0,0 +1,32 @@
+name: HD-Graphics-3000
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-6EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-6EU-Mobile.yaml
new file mode 100644
index 000000000..8674044cd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-6EU-Mobile.yaml
@@ -0,0 +1,32 @@
+name: HD-Graphics-6EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-P3000.yaml b/specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-P3000.yaml
new file mode 100644
index 000000000..6c6f12fb1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-6.0/HD-Graphics-P3000.yaml
@@ -0,0 +1,32 @@
+name: HD-Graphics-P3000
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-7.0.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.0.yaml
new file mode 100644
index 000000000..ad6f0e21f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-7.0.yaml
@@ -0,0 +1,19 @@
+name: Generation-7.0
+humanName: Generation 7.0
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 22 nm
+ DirectX Support: '11.0'
+ Vulkan Support: '1.0'
+ Release Date: '2012-04-01'
+ Manufacturer: Intel
+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/Intel/Generation-7.0/HD-Graphics-32EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-32EU-Mobile.yaml
new file mode 100644
index 000000000..4a363d0cc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-32EU-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-32EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-4000-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-4000-Mobile.yaml
new file mode 100644
index 000000000..52ba0e749
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-4000-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-4000-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-4000.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-4000.yaml
new file mode 100644
index 000000000..90cd9e051
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-4000.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-4000
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-6EU.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-6EU.yaml
new file mode 100644
index 000000000..610548e70
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-6EU.yaml
@@ -0,0 +1,34 @@
+name: HD-Graphics-6EU
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-P4000.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-P4000.yaml
new file mode 100644
index 000000000..0c9740ff3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-7.0/HD-Graphics-P4000.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-P4000
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-7.5.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5.yaml
new file mode 100644
index 000000000..d22f6a13a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-7.5.yaml
@@ -0,0 +1,27 @@
+name: Generation-7.5
+humanName: Generation 7.5
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 22 nm
+ DirectX Support: '11.1'
+ Vulkan Support: '1.0'
+ Release Date: '2013-04-29'
+ Manufacturer: Intel
+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/Intel/Generation-7.5/HD-Graphics-10EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-10EU-Mobile.yaml
new file mode 100644
index 000000000..6e81f3a7d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-10EU-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-10EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-10EU.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-10EU.yaml
new file mode 100644
index 000000000..0998e4216
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-10EU.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-10EU
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4200-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4200-Mobile.yaml
new file mode 100644
index 000000000..11f0b6ecb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4200-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-4200-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4400-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4400-Mobile.yaml
new file mode 100644
index 000000000..fb6c700cb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4400-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-4400-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4400.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4400.yaml
new file mode 100644
index 000000000..55c6f2653
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4400.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-4400
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4600-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4600-Mobile.yaml
new file mode 100644
index 000000000..52eb9ae6f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4600-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-4600-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4600.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4600.yaml
new file mode 100644
index 000000000..883f3c15b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-4600.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-4600
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-5000-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-5000-Mobile.yaml
new file mode 100644
index 000000000..2c07ee6cf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-5000-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-5000-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-P4600.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-P4600.yaml
new file mode 100644
index 000000000..3bd8a62b3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-P4600.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-P4600
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-P4700.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-P4700.yaml
new file mode 100644
index 000000000..b4f37e57b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-7.5/HD-Graphics-P4700.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-P4700
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-7.5/Iris-Graphics-5100-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/Iris-Graphics-5100-Mobile.yaml
new file mode 100644
index 000000000..a42d1ff60
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-7.5/Iris-Graphics-5100-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Iris-Graphics-5100-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-7.5/Iris-Pro-Graphics-5200-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/Iris-Pro-Graphics-5200-Mobile.yaml
new file mode 100644
index 000000000..d22923111
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-7.5/Iris-Pro-Graphics-5200-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Iris-Pro-Graphics-5200-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-7.5/Iris-Pro-Graphics-5200.yaml b/specs/GPUs-CONSUMER/Intel/Generation-7.5/Iris-Pro-Graphics-5200.yaml
new file mode 100644
index 000000000..332201f8f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-7.5/Iris-Pro-Graphics-5200.yaml
@@ -0,0 +1,33 @@
+name: Iris-Pro-Graphics-5200
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-8.0.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0.yaml
new file mode 100644
index 000000000..4579b3cca
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-8.0.yaml
@@ -0,0 +1,28 @@
+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'
+ Manufacturer: Intel
+sections:
+ - header: HD Graphics
+ 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
+ - header: Iris Graphics
+ members:
+ - Iris-Graphics-6100-Mobile
+ - Iris-Pro-Graphics-6200
+ - Iris-Pro-Graphics-6200-Mobile
+ - Iris-Pro-Graphics-P6300
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-12EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-12EU-Mobile.yaml
new file mode 100644
index 000000000..226b7d0fd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-12EU-Mobile.yaml
@@ -0,0 +1,32 @@
+name: HD-Graphics-12EU-Mobile
+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'
+ Vulkan Support: '1.0'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-400-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-400-Mobile.yaml
new file mode 100644
index 000000000..62813b490
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-400-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-400-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-405-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-405-Mobile.yaml
new file mode 100644
index 000000000..119e092da
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-405-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-405-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-5300-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-5300-Mobile.yaml
new file mode 100644
index 000000000..a73153ea5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-5300-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-5300-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-5500-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-5500-Mobile.yaml
new file mode 100644
index 000000000..2bbd30738
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-5500-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-5500-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-5600-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-5600-Mobile.yaml
new file mode 100644
index 000000000..4293bcc9f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-5600-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-5600-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-6000-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-6000-Mobile.yaml
new file mode 100644
index 000000000..7bd5d58a1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-6000-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-6000-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-P5700.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-P5700.yaml
new file mode 100644
index 000000000..be7fe01fb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-8.0/HD-Graphics-P5700.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-P5700
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-8.0/Iris-Graphics-6100-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/Iris-Graphics-6100-Mobile.yaml
new file mode 100644
index 000000000..bb28de479
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-8.0/Iris-Graphics-6100-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Iris-Graphics-6100-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-8.0/Iris-Pro-Graphics-6200-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/Iris-Pro-Graphics-6200-Mobile.yaml
new file mode 100644
index 000000000..2e9a4fe74
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-8.0/Iris-Pro-Graphics-6200-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Iris-Pro-Graphics-6200-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-8.0/Iris-Pro-Graphics-6200.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/Iris-Pro-Graphics-6200.yaml
new file mode 100644
index 000000000..1f0759b6a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-8.0/Iris-Pro-Graphics-6200.yaml
@@ -0,0 +1,33 @@
+name: Iris-Pro-Graphics-6200
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-8.0/Iris-Pro-Graphics-P6300.yaml b/specs/GPUs-CONSUMER/Intel/Generation-8.0/Iris-Pro-Graphics-P6300.yaml
new file mode 100644
index 000000000..898eabbca
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-8.0/Iris-Pro-Graphics-P6300.yaml
@@ -0,0 +1,33 @@
+name: Iris-Pro-Graphics-P6300
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.0.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0.yaml
new file mode 100644
index 000000000..5870269d5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.0.yaml
@@ -0,0 +1,29 @@
+name: Generation-9.0
+humanName: Generation 9.0
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 14 nm - 14 nm+
+ DirectX Support: '12.1'
+ Vulkan Support: '1.3'
+ Release Date: '2015-09-01'
+ Manufacturer: Intel
+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/Intel/Generation-9.0/HD-Graphics-500-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-500-Mobile.yaml
new file mode 100644
index 000000000..b4a0d6d5f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-500-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-500-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-505-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-505-Mobile.yaml
new file mode 100644
index 000000000..9f5b3030b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-505-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-505-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-510-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-510-Mobile.yaml
new file mode 100644
index 000000000..43b68f9d4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-510-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-510-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-510.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-510.yaml
new file mode 100644
index 000000000..33608761f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-510.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-510
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-515-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-515-Mobile.yaml
new file mode 100644
index 000000000..9cc7ef518
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-515-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-515-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-520-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-520-Mobile.yaml
new file mode 100644
index 000000000..4f2638f3b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-520-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-520-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-530-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-530-Mobile.yaml
new file mode 100644
index 000000000..cdccbe3fb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-530-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-530-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-530.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-530.yaml
new file mode 100644
index 000000000..f6e1355a0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-530.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-530
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-P530.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-P530.yaml
new file mode 100644
index 000000000..b943f4e5d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.0/HD-Graphics-P530.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-P530
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Graphics-540-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Graphics-540-Mobile.yaml
new file mode 100644
index 000000000..f04b86920
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Graphics-540-Mobile.yaml
@@ -0,0 +1,32 @@
+name: Iris-Graphics-540-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Graphics-550-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Graphics-550-Mobile.yaml
new file mode 100644
index 000000000..aeff92b79
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Graphics-550-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Iris-Graphics-550-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Pro-Graphics-580-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Pro-Graphics-580-Mobile.yaml
new file mode 100644
index 000000000..b0a94216a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Pro-Graphics-580-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Iris-Pro-Graphics-580-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Pro-Graphics-P555.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Pro-Graphics-P555.yaml
new file mode 100644
index 000000000..e472abef3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Pro-Graphics-P555.yaml
@@ -0,0 +1,33 @@
+name: Iris-Pro-Graphics-P555
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Pro-Graphics-P580-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Pro-Graphics-P580-Mobile.yaml
new file mode 100644
index 000000000..d3ec7b63c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Pro-Graphics-P580-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Iris-Pro-Graphics-P580-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Pro-Graphics-P580.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Pro-Graphics-P580.yaml
new file mode 100644
index 000000000..eada041ad
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.0/Iris-Pro-Graphics-P580.yaml
@@ -0,0 +1,33 @@
+name: Iris-Pro-Graphics-P580
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.5.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5.yaml
new file mode 100644
index 000000000..8a0aaed05
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5.yaml
@@ -0,0 +1,36 @@
+name: Generation-9.5
+humanName: Generation 9.5
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 14 nm - 14 nm+++
+ DirectX Support: '12.1'
+ Vulkan Support: '1.3'
+ Release Date: '2016-08-05'
+ Manufacturer: Intel
+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/Intel/Generation-9.5/HD-Graphics-610-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-610-Mobile.yaml
new file mode 100644
index 000000000..842079ffa
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-610-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-610-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-610.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-610.yaml
new file mode 100644
index 000000000..85e1bae9c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-610.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-610
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-615-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-615-Mobile.yaml
new file mode 100644
index 000000000..804dde733
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-615-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-615-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-620-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-620-Mobile.yaml
new file mode 100644
index 000000000..fa2ac64c0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-620-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-620-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-630-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-630-Mobile.yaml
new file mode 100644
index 000000000..63aea43b0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-630-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-630-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-630.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-630.yaml
new file mode 100644
index 000000000..2b655bb78
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-630.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-630
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-P630-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-P630-Mobile.yaml
new file mode 100644
index 000000000..7f1989337
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5/HD-Graphics-P630-Mobile.yaml
@@ -0,0 +1,33 @@
+name: HD-Graphics-P630-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.5/Iris-Plus-Graphics-640-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/Iris-Plus-Graphics-640-Mobile.yaml
new file mode 100644
index 000000000..e32034e11
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5/Iris-Plus-Graphics-640-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Iris-Plus-Graphics-640-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.5/Iris-Plus-Graphics-645-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/Iris-Plus-Graphics-645-Mobile.yaml
new file mode 100644
index 000000000..981fb115f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5/Iris-Plus-Graphics-645-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Iris-Plus-Graphics-645-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.5/Iris-Plus-Graphics-650-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/Iris-Plus-Graphics-650-Mobile.yaml
new file mode 100644
index 000000000..bc7400605
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5/Iris-Plus-Graphics-650-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Iris-Plus-Graphics-650-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.5/Iris-Plus-Graphics-655-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/Iris-Plus-Graphics-655-Mobile.yaml
new file mode 100644
index 000000000..710c43ae0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5/Iris-Plus-Graphics-655-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Iris-Plus-Graphics-655-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-600-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-600-Mobile.yaml
new file mode 100644
index 000000000..6c5622142
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-600-Mobile.yaml
@@ -0,0 +1,33 @@
+name: UHD-Graphics-600-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-605-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-605-Mobile.yaml
new file mode 100644
index 000000000..6b13d08a3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-605-Mobile.yaml
@@ -0,0 +1,33 @@
+name: UHD-Graphics-605-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-610-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-610-Mobile.yaml
new file mode 100644
index 000000000..828da7be6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-610-Mobile.yaml
@@ -0,0 +1,33 @@
+name: UHD-Graphics-610-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-610.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-610.yaml
new file mode 100644
index 000000000..1b964c3a3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-610.yaml
@@ -0,0 +1,33 @@
+name: UHD-Graphics-610
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-615-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-615-Mobile.yaml
new file mode 100644
index 000000000..ab0e2b1a5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-615-Mobile.yaml
@@ -0,0 +1,33 @@
+name: UHD-Graphics-615-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-617-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-617-Mobile.yaml
new file mode 100644
index 000000000..3c44f305c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-617-Mobile.yaml
@@ -0,0 +1,33 @@
+name: UHD-Graphics-617-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-620-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-620-Mobile.yaml
new file mode 100644
index 000000000..8611a5136
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-620-Mobile.yaml
@@ -0,0 +1,33 @@
+name: UHD-Graphics-620-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-630-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-630-Mobile.yaml
new file mode 100644
index 000000000..4543e53ce
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-630-Mobile.yaml
@@ -0,0 +1,33 @@
+name: UHD-Graphics-630-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-630.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-630.yaml
new file mode 100644
index 000000000..347e681ae
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-630.yaml
@@ -0,0 +1,33 @@
+name: UHD-Graphics-630
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-P630-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-P630-Mobile.yaml
new file mode 100644
index 000000000..1377fda05
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-P630-Mobile.yaml
@@ -0,0 +1,33 @@
+name: UHD-Graphics-P630-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-P630.yaml b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-P630.yaml
new file mode 100644
index 000000000..88a0b9b95
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Generation-9.5/UHD-Graphics-P630.yaml
@@ -0,0 +1,33 @@
+name: UHD-Graphics-P630
+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'
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Knights.yaml b/specs/GPUs-CONSUMER/Intel/Knights.yaml
new file mode 100644
index 000000000..df2eb6f5d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Knights.yaml
@@ -0,0 +1,21 @@
+name: Knights
+humanName: Knights
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 22 nm - 45 nm
+ DirectX Support: ''
+ Vulkan Support: 'N/A'
+ Release Date: '2010-05-31'
+ Manufacturer: Intel
+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/Intel/Knights/Aubrey-Isle.yaml b/specs/GPUs-CONSUMER/Intel/Knights/Aubrey-Isle.yaml
new file mode 100644
index 000000000..606ef85cd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Knights/Aubrey-Isle.yaml
@@ -0,0 +1,34 @@
+name: Aubrey-Isle
+humanName: Aubrey Isle
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ Architecture: Knights
+ Lithography: 45 nm
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-3120A.yaml b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-3120A.yaml
new file mode 100644
index 000000000..84a59d51d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-3120A.yaml
@@ -0,0 +1,31 @@
+name: Xeon-Phi-3120A
+humanName: Xeon Phi 3120A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ Architecture: Knights
+ Lithography: 22 nm
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-5110P.yaml b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-5110P.yaml
new file mode 100644
index 000000000..226342769
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-5110P.yaml
@@ -0,0 +1,31 @@
+name: Xeon-Phi-5110P
+humanName: Xeon Phi 5110P
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ Architecture: Knights
+ Lithography: 22 nm
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-5120D.yaml b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-5120D.yaml
new file mode 100644
index 000000000..5c90c3ce9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-5120D.yaml
@@ -0,0 +1,31 @@
+name: Xeon-Phi-5120D
+humanName: Xeon Phi 5120D
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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: 1053 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 320.0 GB/s
+ VRAM Capacity: 8 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-7120P.yaml b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-7120P.yaml
new file mode 100644
index 000000000..3b4a020d5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-7120P.yaml
@@ -0,0 +1,32 @@
+name: Xeon-Phi-7120P
+humanName: Xeon Phi 7120P
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-7120X.yaml b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-7120X.yaml
new file mode 100644
index 000000000..f4d9006ca
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-7120X.yaml
@@ -0,0 +1,32 @@
+name: Xeon-Phi-7120X
+humanName: Xeon Phi 7120X
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-SE10X.yaml b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-SE10X.yaml
new file mode 100644
index 000000000..e983b4698
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Knights/Xeon-Phi-SE10X.yaml
@@ -0,0 +1,31 @@
+name: Xeon-Phi-SE10X
+humanName: Xeon Phi SE10X
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ Architecture: Knights
+ Lithography: 22 nm
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/PowerVR-SGX535.yaml b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX535.yaml
new file mode 100644
index 000000000..fde1210cc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX535.yaml
@@ -0,0 +1,16 @@
+name: PowerVR-SGX535
+humanName: PowerVR SGX535
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 45 nm - 130 nm
+ DirectX Support: '10.1'
+ Vulkan Support: 'N/A'
+ Release Date: '2008-03-02'
+ Manufacturer: Intel
+sections:
+ - header: WHOLE RANGE
+ members:
+ - GMA-500
+ - GMA-600
diff --git a/specs/GPUs-CONSUMER/Intel/PowerVR-SGX535/GMA-500.yaml b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX535/GMA-500.yaml
new file mode 100644
index 000000000..9e0180979
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX535/GMA-500.yaml
@@ -0,0 +1,31 @@
+name: GMA-500
+humanName: GMA 500
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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'
+ GPU Base 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: 4
+ Shader Processor Count: 32
+ Die Size: unknown
+ GPU: Poulsbo
+ TDP: unknown
+ FP32 Compute: 12.80 GFLOPS
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/PowerVR-SGX535/GMA-600.yaml b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX535/GMA-600.yaml
new file mode 100644
index 000000000..f710ad6d9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX535/GMA-600.yaml
@@ -0,0 +1,31 @@
+name: GMA-600
+humanName: GMA 600
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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'
+ GPU Base 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
+ Shader Processor Count: 32
+ Die Size: 62 mm²
+ GPU: Lincroft
+ TDP: unknown
+ FP32 Compute: 25.60 GFLOPS
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/PowerVR-SGX545.yaml b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX545.yaml
new file mode 100644
index 000000000..591c71f74
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX545.yaml
@@ -0,0 +1,16 @@
+name: PowerVR-SGX545
+humanName: PowerVR SGX545
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 32 nm - 65 nm
+ DirectX Support: '10.1'
+ Vulkan Support: 'N/A'
+ Release Date: '2008-10-01'
+ Manufacturer: Intel
+sections:
+ - header: WHOLE RANGE
+ members:
+ - GMA
+ - GMA-3650
diff --git a/specs/GPUs-CONSUMER/Intel/PowerVR-SGX545/GMA-3650.yaml b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX545/GMA-3650.yaml
new file mode 100644
index 000000000..01afae484
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX545/GMA-3650.yaml
@@ -0,0 +1,31 @@
+name: GMA-3650
+humanName: GMA 3650
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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'
+ GPU Base Frequency: 640 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: Cedarview
+ TDP: 13 W
+ FP32 Compute: 40.96 GFLOPS
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/PowerVR-SGX545/GMA.yaml b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX545/GMA.yaml
new file mode 100644
index 000000000..9265dc153
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/PowerVR-SGX545/GMA.yaml
@@ -0,0 +1,31 @@
+name: GMA
+humanName: GMA
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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'
+ GPU Base Frequency: 533 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
+ Shader Processor Count: 0
+ Die Size: unknown
+ GPU: Cloverview
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Xe-LPG.yaml b/specs/GPUs-CONSUMER/Intel/Xe-LPG.yaml
new file mode 100644
index 000000000..d2bf91f74
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Xe-LPG.yaml
@@ -0,0 +1,18 @@
+name: Xe-LPG
+humanName: Xe-LPG
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 10 nm
+ DirectX Support: '12.1'
+ Vulkan Support: '1.3'
+ Release Date: '2023-12-14'
+ Manufacturer: Intel
+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/Intel/Xe-LPG/Arc-Graphics-112EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Xe-LPG/Arc-Graphics-112EU-Mobile.yaml
new file mode 100644
index 000000000..42ffdb165
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Xe-LPG/Arc-Graphics-112EU-Mobile.yaml
@@ -0,0 +1,32 @@
+name: Arc-Graphics-112EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Xe-LPG/Arc-Graphics-128EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Xe-LPG/Arc-Graphics-128EU-Mobile.yaml
new file mode 100644
index 000000000..d8b0519d1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Xe-LPG/Arc-Graphics-128EU-Mobile.yaml
@@ -0,0 +1,32 @@
+name: Arc-Graphics-128EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Xe-LPG/Arc-Graphics-48EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Xe-LPG/Arc-Graphics-48EU-Mobile.yaml
new file mode 100644
index 000000000..ac7dc2cf0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Xe-LPG/Arc-Graphics-48EU-Mobile.yaml
@@ -0,0 +1,32 @@
+name: Arc-Graphics-48EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Xe-LPG/Arc-Graphics-64EU-Mobile.yaml b/specs/GPUs-CONSUMER/Intel/Xe-LPG/Arc-Graphics-64EU-Mobile.yaml
new file mode 100644
index 000000000..10180efc2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Xe-LPG/Arc-Graphics-64EU-Mobile.yaml
@@ -0,0 +1,32 @@
+name: Arc-Graphics-64EU-Mobile
+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'
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Intel/Xe2.yaml b/specs/GPUs-CONSUMER/Intel/Xe2.yaml
new file mode 100644
index 000000000..8f7b2ba7f
--- /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: 5 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 000000000..e076bf045
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Xe2/Arc-B570.yaml
@@ -0,0 +1,52 @@
+name: Arc-B570
+humanName: ARC B570
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ Architecture: Xe2
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '144'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: '2025-01-16'
+ GPU Base Frequency: 2500 MHz
+ GPU Boost Frequency: 2500 MHz
+ VRAM Frequency: 2375 MHz
+ VRAM Bandwidth: 380.0 GB/s
+ VRAM Capacity: 10 GiB
+ VRAM Type: GDDR6
+ VRAM Bus Width: 160 bit
+ Render Output Unit Count: 80
+ Texture Mapping Unit Count: 144
+ Shader Processor Count: 2304
+ Die Size: 272 mm²
+ GPU: BMG-G21
+ GPU Variant: SRPMG
+ TDP: 150 W
+ FP32 Compute: 11.52 TFLOPS
+ FP64 Compute: 1,440 GFLOPS (1:8)
+ Slot Width: Dual-slot
+ Outputs:
+ - 3x DisplayPort 2.1
+ - 1x HDMI 2.1
+ Power Connectors: 1x 8-pin
+ Length: 272 mm
+ Width: 115 mm
+ Ray Tracing Cores: 18
+ Tensor Cores: 144
+ Hardware Accelerated Encoding:
+ - HEVC
+ - AVC
+ - VP9
+ - XAVC-H
+ Hardware Accelerated Decoding:
+ - HEVC
+ - AVC
+ - VP9
+ - XAVC-H
+ Market:
+ - Consumer
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 000000000..af2b0804d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/Xe2/Arc-B580.yaml
@@ -0,0 +1,53 @@
+name: Arc-B580
+humanName: ARC B580
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ Architecture: Xe2
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '160'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: '2024-12-13'
+ GPU Base Frequency: 2670 MHz
+ GPU Boost Frequency: 2670 MHz
+ VRAM Frequency: 2375 MHz
+ VRAM Bandwidth: 456.0 GB/s
+ VRAM Capacity: 12 GiB
+ VRAM Type: GDDR6
+ VRAM Bus Width: 192 bit
+ Render Output Unit Count: 80
+ Texture Mapping Unit Count: 160
+ Shader Processor Count: 2560
+ Die Size: 272 mm²
+ GPU: BMG-G21
+ GPU Variant: SRPMF
+ TDP: 190 W
+ FP32 Compute: 13.67 TFLOPS
+ FP64 Compute: 1.709 TFLOPS (1:8)
+ Slot Width: Dual-slot
+ Outputs:
+ - 3x DisplayPort 2.1
+ - 1x HDMI 2.1a
+ Power Connectors: 1x 8-pin
+ Length: 272 mm
+ Width: 115 mm
+ Height: 45 mm
+ Ray Tracing Cores: 20
+ Tensor Cores: 160
+ Hardware Accelerated Encoding:
+ - HEVC
+ - AVC
+ - VP9
+ - XAVC-H
+ Hardware Accelerated Decoding:
+ - HEVC
+ - AVC
+ - VP9
+ - XAVC-H
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/i740.yaml b/specs/GPUs-CONSUMER/Intel/i740.yaml
new file mode 100644
index 000000000..cf2570443
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/i740.yaml
@@ -0,0 +1,17 @@
+name: i740
+humanName: i740
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 150 nm
+ DirectX Support: '5.0'
+ Vulkan Support: 'N/A'
+ Release Date: '1998'
+ Manufacturer: Intel
+sections:
+ - header: WHOLE RANGE
+ members:
+ - i740-part
+ - i740-8-MB
+ - i740-Graphics
diff --git a/specs/GPUs-CONSUMER/Intel/i740/i740-8-MB.yaml b/specs/GPUs-CONSUMER/Intel/i740/i740-8-MB.yaml
new file mode 100644
index 000000000..7c959e9e4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/i740/i740-8-MB.yaml
@@ -0,0 +1,31 @@
+name: i740-8-MB
+humanName: i740 8 MB
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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'
+ GPU Base Frequency: 66 MHz
+ VRAM Frequency: 100 MHz
+ VRAM Bandwidth: 800.0 MB/s
+ VRAM Capacity: 8 MiB
+ VRAM Type: SDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/i740/i740-Graphics.yaml b/specs/GPUs-CONSUMER/Intel/i740/i740-Graphics.yaml
new file mode 100644
index 000000000..35d6cf5e4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/i740/i740-Graphics.yaml
@@ -0,0 +1,31 @@
+name: i740-Graphics
+humanName: i740 Graphics
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ Architecture: i740
+ Lithography: 150 nm
+ DirectX Support: '5.0'
+ Vulkan Support: 'N/A'
+ 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
+ VRAM Type: System Shared
+ 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
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Intel/i740/i740.yaml b/specs/GPUs-CONSUMER/Intel/i740/i740.yaml
new file mode 100644
index 000000000..0341ab3c7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Intel/i740/i740.yaml
@@ -0,0 +1,30 @@
+name: i740-part
+humanName: i740
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Intel
+ Vendor: Intel
+ 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'
+ GPU Base Frequency: 66 MHz
+ VRAM Frequency: 100 MHz
+ VRAM Bandwidth: 800.0 MB/s
+ VRAM Capacity: 4 MiB
+ VRAM Type: SDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/G100.yaml b/specs/GPUs-CONSUMER/Matrox/G100.yaml
new file mode 100644
index 000000000..b62cca74f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/G100.yaml
@@ -0,0 +1,15 @@
+name: G100
+humanName: G100
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 350 nm
+ DirectX Support: '3.0'
+ Vulkan Support: 'N/A'
+ Release Date: '1998'
+ Manufacturer: Matrox
+sections:
+ - header: WHOLE RANGE
+ members:
+ - Productiva-G100
diff --git a/specs/GPUs-CONSUMER/Matrox/G100/Productiva-G100.yaml b/specs/GPUs-CONSUMER/Matrox/G100/Productiva-G100.yaml
new file mode 100644
index 000000000..5f5336dd4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/G100/Productiva-G100.yaml
@@ -0,0 +1,34 @@
+name: Productiva-G100
+humanName: Productiva G100
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ Architecture: G100
+ Lithography: 350 nm
+ DirectX Support: '3.0'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SGR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Length: 150 mm
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/G200.yaml b/specs/GPUs-CONSUMER/Matrox/G200.yaml
new file mode 100644
index 000000000..b28d469a2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/G200.yaml
@@ -0,0 +1,20 @@
+name: G200
+humanName: G200
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 350 nm
+ DirectX Support: '5.0'
+ Vulkan Support: 'N/A'
+ Release Date: '1998'
+ Manufacturer: Matrox
+sections:
+ - header: WHOLE RANGE
+ members:
+ - Marvel-G200
+ - Millennium-G200
+ - Millennium-G200-SD
+ - Millennium-G200A
+ - Millennium-G250
+ - Mystique-G200
diff --git a/specs/GPUs-CONSUMER/Matrox/G200/Marvel-G200.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Marvel-G200.yaml
new file mode 100644
index 000000000..41e39b67a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/G200/Marvel-G200.yaml
@@ -0,0 +1,35 @@
+name: Marvel-G200
+humanName: Marvel G200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ Architecture: G200
+ Lithography: 350 nm
+ DirectX Support: '5.0'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Length: 150 mm
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200-SD.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200-SD.yaml
new file mode 100644
index 000000000..5e1e19e9f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200-SD.yaml
@@ -0,0 +1,36 @@
+name: Millennium-G200-SD
+humanName: Millennium G200 SD
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ Architecture: G200
+ Lithography: 350 nm
+ DirectX Support: '5.0'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Length: 150 mm
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200.yaml
new file mode 100644
index 000000000..e0b45a86f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200.yaml
@@ -0,0 +1,36 @@
+name: Millennium-G200
+humanName: Millennium G200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ Architecture: G200
+ Lithography: 350 nm
+ DirectX Support: '5.0'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SGR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Length: 150 mm
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200A.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200A.yaml
new file mode 100644
index 000000000..2874c9238
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G200A.yaml
@@ -0,0 +1,36 @@
+name: Millennium-G200A
+humanName: Millennium G200A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ Architecture: G200
+ Lithography: 250 nm
+ DirectX Support: '5.0'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Length: 150 mm
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G250.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G250.yaml
new file mode 100644
index 000000000..f49db321d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/G200/Millennium-G250.yaml
@@ -0,0 +1,36 @@
+name: Millennium-G250
+humanName: Millennium G250
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ Architecture: G200
+ Lithography: 250 nm
+ DirectX Support: '5.0'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Length: 150 mm
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/G200/Mystique-G200.yaml b/specs/GPUs-CONSUMER/Matrox/G200/Mystique-G200.yaml
new file mode 100644
index 000000000..37063dd0b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/G200/Mystique-G200.yaml
@@ -0,0 +1,35 @@
+name: Mystique-G200
+humanName: Mystique G200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ Architecture: G200
+ Lithography: 350 nm
+ DirectX Support: '5.0'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Length: 150 mm
+ Pixel Shaders: 1
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/G400.yaml b/specs/GPUs-CONSUMER/Matrox/G400.yaml
new file mode 100644
index 000000000..22981bbb4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/G400.yaml
@@ -0,0 +1,21 @@
+name: G400
+humanName: G400
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 180-250 nm
+ DirectX Support: '6.0'
+ Vulkan Support: 'N/A'
+ Release Date: '1999-05-20'
+ Manufacturer: Matrox
+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/Matrox/G400/Marvel-G400-TV.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Marvel-G400-TV.yaml
new file mode 100644
index 000000000..e3ad86abd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/G400/Marvel-G400-TV.yaml
@@ -0,0 +1,35 @@
+name: Marvel-G400-TV
+humanName: Marvel G400-TV
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ Architecture: G400
+ Lithography: 250 nm
+ DirectX Support: '6.0'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Length: 150 mm
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400-MAX.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400-MAX.yaml
new file mode 100644
index 000000000..0a3ec7693
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400-MAX.yaml
@@ -0,0 +1,36 @@
+name: Millennium-G400-MAX
+humanName: Millennium G400 MAX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ Architecture: G400
+ Lithography: 250 nm
+ DirectX Support: '6.0'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Length: 150 mm
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400.yaml
new file mode 100644
index 000000000..3d629c0c1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G400.yaml
@@ -0,0 +1,35 @@
+name: Millennium-G400
+humanName: Millennium G400
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ Architecture: G400
+ Lithography: 250 nm
+ DirectX Support: '6.0'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Length: 150 mm
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-LP.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-LP.yaml
new file mode 100644
index 000000000..79bb17023
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-LP.yaml
@@ -0,0 +1,34 @@
+name: Millennium-G450-LP
+humanName: Millennium G450 LP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ Architecture: G400
+ Lithography: 180 nm
+ DirectX Support: '6.0'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x DVI
+ Power Connectors: None
+ Length: 168 mm
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x2-MMS.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x2-MMS.yaml
new file mode 100644
index 000000000..199cff1ff
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x2-MMS.yaml
@@ -0,0 +1,35 @@
+name: Millennium-G450-x2-MMS
+humanName: Millennium G450 x2 MMS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ Architecture: G400
+ Lithography: 180 nm
+ DirectX Support: '6.0'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x LFH60
+ Power Connectors: None
+ Length: 165 mm
+ Width: 97 mm
+ Height: 36 mm
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x4-MMS.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x4-MMS.yaml
new file mode 100644
index 000000000..d7d58e2dc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450-x4-MMS.yaml
@@ -0,0 +1,34 @@
+name: Millennium-G450-x4-MMS
+humanName: Millennium G450 x4 MMS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ Architecture: G400
+ Lithography: 180 nm
+ DirectX Support: '6.0'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 2x DVI
+ Length: 165 mm
+ Width: 97 mm
+ Height: 36 mm
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450.yaml b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450.yaml
new file mode 100644
index 000000000..b2db9d10d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/G400/Millennium-G450.yaml
@@ -0,0 +1,36 @@
+name: Millennium-G450
+humanName: Millennium G450
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ Architecture: G400
+ Lithography: 180 nm
+ DirectX Support: '6.0'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Length: 150 mm
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/G500.yaml b/specs/GPUs-CONSUMER/Matrox/G500.yaml
new file mode 100644
index 000000000..ee9d35943
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/G500.yaml
@@ -0,0 +1,16 @@
+name: G500
+humanName: G500
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 180 nm
+ DirectX Support: '8.0'
+ Vulkan Support: 'N/A'
+ Release Date: '2001-11-26'
+ Manufacturer: Matrox
+sections:
+ - header: WHOLE RANGE
+ members:
+ - Millennium-G550
+ - Millennium-G550-PCIe
diff --git a/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550-PCIe.yaml b/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550-PCIe.yaml
new file mode 100644
index 000000000..e834198d5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550-PCIe.yaml
@@ -0,0 +1,33 @@
+name: Millennium-G550-PCIe
+humanName: Millennium G550 PCIe
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ 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'
+ GPU Base Frequency: 125 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 2x DVI
+ Length: 112 mm
+ Width: 97 mm
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550.yaml b/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550.yaml
new file mode 100644
index 000000000..16ff3952b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/G500/Millennium-G550.yaml
@@ -0,0 +1,35 @@
+name: Millennium-G550
+humanName: Millennium G550
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ 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'
+ GPU Base Frequency: 125 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Length: 168 mm
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/MP.yaml b/specs/GPUs-CONSUMER/Matrox/MP.yaml
new file mode 100644
index 000000000..fe8325747
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/MP.yaml
@@ -0,0 +1,18 @@
+name: MP
+humanName: MP
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: Unknown
+ DirectX Support: '8.1'
+ Vulkan Support: 'N/A'
+ Release Date: '2004-12-17'
+ Manufacturer: Matrox
+sections:
+ - header: WHOLE RANGE
+ members:
+ - QID
+ - QID-LP-PCI
+ - QID-LP-PCIe
+ - QID-PRO
diff --git a/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCI.yaml b/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCI.yaml
new file mode 100644
index 000000000..118247cf4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCI.yaml
@@ -0,0 +1,33 @@
+name: QID-LP-PCI
+humanName: QID LP PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 300 MHz
+ VRAM Bandwidth: 4.800 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 2x LFH60
+ Power Connectors: None
+ Length: 168 mm
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCIe.yaml b/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCIe.yaml
new file mode 100644
index 000000000..78dd9160a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/MP/QID-LP-PCIe.yaml
@@ -0,0 +1,34 @@
+name: QID-LP-PCIe
+humanName: QID LP PCIe
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 300 MHz
+ VRAM Bandwidth: 9.600 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x DVI
+ Power Connectors: None
+ Length: 168 mm
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/MP/QID-PRO.yaml b/specs/GPUs-CONSUMER/Matrox/MP/QID-PRO.yaml
new file mode 100644
index 000000000..8e8ba6d1a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/MP/QID-PRO.yaml
@@ -0,0 +1,33 @@
+name: QID-PRO
+humanName: QID PRO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 300 MHz
+ VRAM Bandwidth: 4.800 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 2x LFH60
+ Power Connectors: None
+ Length: 190 mm
+ Pixel Shaders: 2
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Matrox/MP/QID.yaml b/specs/GPUs-CONSUMER/Matrox/MP/QID.yaml
new file mode 100644
index 000000000..408e98e06
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/MP/QID.yaml
@@ -0,0 +1,33 @@
+name: QID
+humanName: QID
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 300 MHz
+ VRAM Bandwidth: 9.600 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x DVI
+ Power Connectors: None
+ Length: 165 mm
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/PX.yaml b/specs/GPUs-CONSUMER/Matrox/PX.yaml
new file mode 100644
index 000000000..f0c373468
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/PX.yaml
@@ -0,0 +1,15 @@
+name: PX
+humanName: PX
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 90 nm
+ DirectX Support: '8.1'
+ Vulkan Support: 'N/A'
+ Release Date: 'Unknown'
+ Manufacturer: Matrox
+sections:
+ - header: WHOLE RANGE
+ members:
+ - M9125-PCIe-x16
diff --git a/specs/GPUs-CONSUMER/Matrox/PX/M9125-PCIe-x16.yaml b/specs/GPUs-CONSUMER/Matrox/PX/M9125-PCIe-x16.yaml
new file mode 100644
index 000000000..88ee13073
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/PX/M9125-PCIe-x16.yaml
@@ -0,0 +1,35 @@
+name: M9125-PCIe-x16
+humanName: M9125 PCIe x16
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ Architecture: PX
+ Lithography: 90 nm
+ DirectX Support: '8.1'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 2x LFH60
+ Power Connectors: None
+ Length: 168 mm
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia.yaml
new file mode 100644
index 000000000..811a52fd9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/Parhelia.yaml
@@ -0,0 +1,26 @@
+name: Parhelia
+humanName: Parhelia
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 150 nm
+ DirectX Support: '8.1'
+ Vulkan Support: 'N/A'
+ Release Date: '2003'
+ Manufacturer: Matrox
+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/Matrox/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml
new file mode 100644
index 000000000..1052594ac
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-LP-MDD-PCIe.yaml
@@ -0,0 +1,33 @@
+name: Millenium-P650-LP-MDD-PCIe
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x LFH60
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-PCIe.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-PCIe.yaml
new file mode 100644
index 000000000..ab838ea15
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650-PCIe.yaml
@@ -0,0 +1,33 @@
+name: Millenium-P650-PCIe
+humanName: Millenium P650 PCIe
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ 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'
+ GPU Base Frequency: 275 MHz
+ VRAM Frequency: 275 MHz
+ VRAM Bandwidth: 8.800 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 2x DVI
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650.yaml
new file mode 100644
index 000000000..039b64650
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P650.yaml
@@ -0,0 +1,33 @@
+name: Millenium-P650
+humanName: Millenium P650
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ 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'
+ GPU Base Frequency: 230 MHz
+ VRAM Frequency: 230 MHz
+ VRAM Bandwidth: 7.360 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 2x DVI
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P750.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P750.yaml
new file mode 100644
index 000000000..e4281057a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Millenium-P750.yaml
@@ -0,0 +1,32 @@
+name: Millenium-P750
+humanName: Millenium P750
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 2x DVI
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-128-MB.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-128-MB.yaml
new file mode 100644
index 000000000..e6e721ca6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-128-MB.yaml
@@ -0,0 +1,34 @@
+name: Parhelia-128-MB
+humanName: Parhelia 128 MB
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 300 MHz
+ VRAM Bandwidth: 19.20 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 2x DVI
+ Power Connectors: None
+ Length: 175 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-256-MB.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-256-MB.yaml
new file mode 100644
index 000000000..118296e46
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-256-MB.yaml
@@ -0,0 +1,34 @@
+name: Parhelia-256-MB
+humanName: Parhelia 256 MB
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 325 MHz
+ VRAM Bandwidth: 20.80 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 2x DVI
+ Power Connectors: None
+ Length: 175 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-APVe.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-APVe.yaml
new file mode 100644
index 000000000..63691c403
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-APVe.yaml
@@ -0,0 +1,35 @@
+name: Parhelia-APVe
+humanName: Parhelia APVe
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 2x DVI
+ Power Connectors: None
+ Length: 168 mm
+ Width: 97 mm
+ Height: 36 mm
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-DL256.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-DL256.yaml
new file mode 100644
index 000000000..68e47ec9c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-DL256.yaml
@@ -0,0 +1,33 @@
+name: Parhelia-DL256
+humanName: Parhelia DL256
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ Architecture: Parhelia
+ Lithography: 150 nm
+ DirectX Support: '8.1'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 2x LFH60
+ Power Connectors: None
+ Length: 190 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-HR256.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-HR256.yaml
new file mode 100644
index 000000000..150c9d2d5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-HR256.yaml
@@ -0,0 +1,33 @@
+name: Parhelia-HR256
+humanName: Parhelia HR256
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 4.000 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 2x LFH60
+ Power Connectors: None
+ Length: 190 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-PCI.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-PCI.yaml
new file mode 100644
index 000000000..b66c5091f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-PCI.yaml
@@ -0,0 +1,33 @@
+name: Parhelia-PCI
+humanName: Parhelia PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ Architecture: Parhelia
+ Lithography: 150 nm
+ DirectX Support: '8.1'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 2x DVI
+ Power Connectors: None
+ Length: 190 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SDT.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SDT.yaml
new file mode 100644
index 000000000..1a98fd4b6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SDT.yaml
@@ -0,0 +1,33 @@
+name: Parhelia-Precision-SDT
+humanName: Parhelia Precision SDT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ Architecture: Parhelia
+ Lithography: 150 nm
+ DirectX Support: '8.1'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x DVI
+ Power Connectors: None
+ Length: 190 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SGT.yaml b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SGT.yaml
new file mode 100644
index 000000000..ba8755da0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Matrox/Parhelia/Parhelia-Precision-SGT.yaml
@@ -0,0 +1,33 @@
+name: Parhelia-Precision-SGT
+humanName: Parhelia Precision SGT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Matrox
+ Vendor: Matrox
+ Architecture: Parhelia
+ Lithography: 150 nm
+ DirectX Support: '8.1'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x DVI
+ Power Connectors: None
+ Length: 190 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Moore-Threads/MUSA.yaml b/specs/GPUs-CONSUMER/Moore-Threads/MUSA.yaml
new file mode 100644
index 000000000..55e4fd7f0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Moore-Threads/MUSA.yaml
@@ -0,0 +1,22 @@
+name: MUSA
+humanName: MUSA
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 12 nm
+ DirectX Support: '12.2'
+ Vulkan Support: '1.4'
+ Release Date: 'Unknown'
+ Manufacturer: Moore-Threads
+sections:
+ - header: WHOLE RANGE
+ members:
+ - MTT-S30
+ - MTT-S50
+ - MTT-S70
+ - MTT-S80
+ - MTT-S1000M
+ - MTT-S2000
+ - MTT-S3000
+ - MTT-S4000
diff --git a/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S1000M.yaml b/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S1000M.yaml
new file mode 100644
index 000000000..fe073943a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S1000M.yaml
@@ -0,0 +1,33 @@
+name: MTT-S1000M
+humanName: MTT S1000M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Moore-Threads
+ Vendor: Moore-Threads
+ Architecture: MUSA
+ Lithography: 12 nm
+ DirectX Support: '12.2'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: 'Unknown'
+ GPU Base Frequency: 1000 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 224.0 GB/s
+ VRAM Capacity: 4 GiB
+ VRAM Type: GDDR6
+ VRAM Bus Width: 128 bit
+ Render Output Unit Count: 64
+ Texture Mapping Unit Count: 64
+ Shader Processor Count: 1024
+ Die Size: unknown
+ GPU: MTT Gen 1
+ TDP: 35 W
+ FP32 Compute: 2.048 TFLOPS
+ FP64 Compute: 32.00 GFLOPS (1:64)
+ Slot Width: Single-slot
+ Outputs: 2x DisplayPort 1.2
+ Power Connectors: None
+ Length: 159 mm
+ Width: 80 mm
diff --git a/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S2000.yaml b/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S2000.yaml
new file mode 100644
index 000000000..46fa6194e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S2000.yaml
@@ -0,0 +1,33 @@
+name: MTT-S2000
+humanName: MTT S2000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Moore-Threads
+ Vendor: Moore-Threads
+ Architecture: MUSA
+ Lithography: 12 nm
+ DirectX Support: '12.2'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: 'Unknown'
+ GPU Base Frequency: 1300 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 448.0 GB/s
+ VRAM Capacity: 32 GiB
+ VRAM Type: GDDR6
+ VRAM Bus Width: 256 bit
+ Render Output Unit Count: 256
+ Texture Mapping Unit Count: 256
+ Shader Processor Count: 4096
+ Die Size: unknown
+ GPU: MTT Gen 1
+ TDP: 150 W
+ FP32 Compute: 10.65 TFLOPS
+ FP64 Compute: 166.4 GFLOPS (1:64)
+ Slot Width: Dual-slot
+ Outputs: 2x DisplayPort 1.2
+ Power Connectors: 1x 8-pin
+ Length: 266 mm
+ Width: 111 mm
diff --git a/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S30.yaml b/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S30.yaml
new file mode 100644
index 000000000..69d8d96f8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S30.yaml
@@ -0,0 +1,33 @@
+name: MTT-S30
+humanName: MTT S30
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Moore-Threads
+ Vendor: Moore-Threads
+ Architecture: MUSA
+ Lithography: 12 nm
+ DirectX Support: '12.2'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: 'Unknown'
+ GPU Base Frequency: 1300 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 224.0 GB/s
+ VRAM Capacity: 4 GiB
+ VRAM Type: GDDR6
+ VRAM Bus Width: 128 bit
+ Render Output Unit Count: 64
+ Texture Mapping Unit Count: 64
+ Shader Processor Count: 1024
+ Die Size: unknown
+ GPU: MTT Gen 1
+ TDP: 40 W
+ FP32 Compute: 2.662 TFLOPS
+ FP64 Compute: 41.60 GFLOPS (1:64)
+ Slot Width: Single-slot
+ Outputs: 2x DisplayPort 1.2
+ Power Connectors: None
+ Length: 159 mm
+ Width: 80 mm
diff --git a/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S3000.yaml b/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S3000.yaml
new file mode 100644
index 000000000..8b4245c7b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S3000.yaml
@@ -0,0 +1,34 @@
+name: MTT-S3000
+humanName: MTT S3000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Moore-Threads
+ Vendor: Moore-Threads
+ Architecture: MUSA
+ Lithography: 12 nm
+ DirectX Support: '12.2'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: 'Unknown'
+ GPU Base Frequency: 1900 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 448.0 GB/s
+ VRAM Capacity: 32 GiB
+ VRAM Type: GDDR6
+ VRAM Bus Width: 256 bit
+ Render Output Unit Count: 256
+ Texture Mapping Unit Count: 256
+ Shader Processor Count: 4096
+ Die Size: unknown
+ GPU: Chunxiao
+ TDP: 250 W
+ FP32 Compute: 15.56 TFLOPS
+ FP64 Compute: 243.2 GFLOPS (1:64)
+ Slot Width: Dual-slot
+ Outputs: 2x DisplayPort 1.4a
+ Power Connectors: 1x 8-pin
+ Length: 269 mm
+ Width: 111 mm
+ Height: 39 mm
diff --git a/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S4000.yaml b/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S4000.yaml
new file mode 100644
index 000000000..d1a0d36d5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S4000.yaml
@@ -0,0 +1,36 @@
+name: MTT-S4000
+humanName: MTT S4000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Moore-Threads
+ Vendor: Moore-Threads
+ Architecture: MUSA
+ Lithography: 12 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '128'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: 'Unknown'
+ GPU Base Frequency: 1500 MHz
+ VRAM Frequency: 2000 MHz
+ VRAM Bandwidth: 768.0 GB/s
+ VRAM Capacity: 48 GiB
+ VRAM Type: GDDR6
+ VRAM Bus Width: 384 bit
+ Render Output Unit Count: 512
+ Texture Mapping Unit Count: 512
+ Shader Processor Count: 8192
+ Die Size: unknown
+ GPU: Chunxiao
+ TDP: 450 W
+ FP32 Compute: 24.58 TFLOPS
+ FP64 Compute: 384.0 GFLOPS (1:64)
+ Slot Width: Dual-slot
+ Outputs: 4x DisplayPort 1.4a
+ Power Connectors: 2x 8-pin
+ Length: 266 mm
+ Width: 112 mm
+ Height: 39 mm
+ Tensor Cores: 128
diff --git a/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S50.yaml b/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S50.yaml
new file mode 100644
index 000000000..3fe797d7b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S50.yaml
@@ -0,0 +1,35 @@
+name: MTT-S50
+humanName: MTT S50
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Moore-Threads
+ Vendor: Moore-Threads
+ Architecture: MUSA
+ Lithography: 12 nm
+ DirectX Support: '12.2'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: 'Unknown'
+ GPU Base Frequency: 1200 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 448.0 GB/s
+ VRAM Capacity: 8 GiB
+ VRAM Type: GDDR6
+ VRAM Bus Width: 256 bit
+ Render Output Unit Count: 128
+ Texture Mapping Unit Count: 128
+ Shader Processor Count: 2048
+ Die Size: unknown
+ GPU: MTT Gen 1
+ TDP: 85 W
+ FP32 Compute: 4.915 TFLOPS
+ FP64 Compute: 76.80 GFLOPS (1:64)
+ Slot Width: Dual-slot
+ Outputs:
+ - 1x HDMI 2.0
+ - 2x DisplayPort 1.2
+ Power Connectors: 1x 6-pin
+ Length: 251 mm
+ Width: 111 mm
diff --git a/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S70.yaml b/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S70.yaml
new file mode 100644
index 000000000..40d7a0e99
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S70.yaml
@@ -0,0 +1,36 @@
+name: MTT-S70
+humanName: MTT S70
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Moore-Threads
+ Vendor: Moore-Threads
+ Architecture: MUSA
+ Lithography: 12 nm
+ DirectX Support: '12.2'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: 'Unknown'
+ GPU Base Frequency: 1600 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 392.0 GB/s
+ VRAM Capacity: 7 GiB
+ VRAM Type: GDDR6
+ VRAM Bus Width: 224 bit
+ Render Output Unit Count: 224
+ Texture Mapping Unit Count: 224
+ Shader Processor Count: 3584
+ Die Size: unknown
+ GPU: Chunxiao
+ TDP: 220 W
+ FP32 Compute: 11.47 TFLOPS
+ FP64 Compute: 179.2 GFLOPS (1:64)
+ Slot Width: Dual-slot
+ Outputs:
+ - 1x HDMI 2.1
+ - 3x DisplayPort 1.4a
+ Power Connectors: 1x 8-pin
+ Length: 285 mm
+ Width: 112 mm
+ Height: 49 mm
diff --git a/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S80.yaml b/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S80.yaml
new file mode 100644
index 000000000..621bfdf36
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Moore-Threads/MUSA/MTT-S80.yaml
@@ -0,0 +1,36 @@
+name: MTT-S80
+humanName: MTT S80
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Moore-Threads
+ Vendor: Moore-Threads
+ Architecture: MUSA
+ Lithography: 12 nm
+ DirectX Support: '12.2'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: 'Unknown'
+ GPU Base Frequency: 1800 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 448.0 GB/s
+ VRAM Capacity: 16 GiB
+ VRAM Type: GDDR6
+ VRAM Bus Width: 256 bit
+ Render Output Unit Count: 256
+ Texture Mapping Unit Count: 256
+ Shader Processor Count: 4096
+ Die Size: unknown
+ GPU: Chunxiao
+ TDP: 255 W
+ FP32 Compute: 14.75 TFLOPS
+ FP64 Compute: 230.4 GFLOPS (1:64)
+ Slot Width: Dual-slot
+ Outputs:
+ - 1x HDMI 2.1
+ - 3x DisplayPort 1.4a
+ Power Connectors: 1x 8-pin
+ Length: 285 mm
+ Width: 112 mm
+ Height: 49 mm
diff --git a/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace.yaml
new file mode 100644
index 000000000..851d25b6f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace.yaml
@@ -0,0 +1,70 @@
+name: Ada-Lovelace
+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: Main RTX Range (Consumer)
+ members:
+ - GeForce-RTX-4090-D
+ - GeForce-RTX-4090
+ - GeForce-RTX-4080-SUPER
+ - GeForce-RTX-4080
+ - GeForce-RTX-4070-Ti-SUPER
+ - GeForce-RTX-4070-Ti
+ - GeForce-RTX-4070-SUPER
+ - GeForce-RTX-4070
+ - GeForce-RTX-4070-10-GB
+ - GeForce-RTX-4060-Ti-16-GB
+ - GeForce-RTX-4060-Ti-8-GB
+ - GeForce-RTX-4060
+ - header: RTX Mobile
+ members:
+ - GeForce-RTX-4090-Mobile
+ - 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: Workstation RTX
+ members:
+ - 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-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-X2
+ - RTX-5000-Embedded-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
new file mode 100644
index 000000000..203da00ea
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Max-Q.yaml
@@ -0,0 +1,37 @@
+name: GeForce-RTX-4050-Max-Q
+humanName: GeForce RTX 4050 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml
new file mode 100644
index 000000000..a7df989fe
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050-Mobile.yaml
@@ -0,0 +1,65 @@
+name: GeForce-RTX-4050-Mobile
+humanName: GeForce RTX 4050 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4050.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050.yaml
new file mode 100644
index 000000000..4212720b8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4050.yaml
@@ -0,0 +1,39 @@
+name: GeForce-RTX-4050
+humanName: GeForce RTX 4050
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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: 2505 MHz
+ GPU Boost Frequency: 2640 MHz
+ VRAM Frequency: 2250 MHz
+ VRAM Bandwidth: 216.0 GB/s
+ VRAM Capacity: 6 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4060-AD106.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-AD106.yaml
new file mode 100644
index 000000000..2407d5769
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-AD106.yaml
@@ -0,0 +1,39 @@
+name: GeForce-RTX-4060-AD106
+humanName: GeForce RTX 4060 AD106
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml
new file mode 100644
index 000000000..ed51e5197
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Max-Q.yaml
@@ -0,0 +1,37 @@
+name: GeForce-RTX-4060-Max-Q
+humanName: GeForce RTX 4060 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml
new file mode 100644
index 000000000..79dae4a93
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Mobile.yaml
@@ -0,0 +1,65 @@
+name: GeForce-RTX-4060-Mobile
+humanName: GeForce RTX 4060 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Ti-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Ti-16-GB.yaml
new file mode 100644
index 000000000..e73259a9a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Ti-16-GB.yaml
@@ -0,0 +1,43 @@
+name: GeForce-RTX-4060-Ti-16-GB
+humanName: GeForce RTX 4060 Ti 16 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Ti-8-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Ti-8-GB.yaml
new file mode 100644
index 000000000..9c1d694fe
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060-Ti-8-GB.yaml
@@ -0,0 +1,43 @@
+name: GeForce-RTX-4060-Ti-8-GB
+humanName: GeForce RTX 4060 Ti 8 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4060.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060.yaml
new file mode 100644
index 000000000..8b18066d3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4060.yaml
@@ -0,0 +1,71 @@
+name: GeForce-RTX-4060
+humanName: GeForce RTX 4060
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4070-10-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-10-GB.yaml
new file mode 100644
index 000000000..5ceba3de4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-10-GB.yaml
@@ -0,0 +1,41 @@
+name: GeForce-RTX-4070-10-GB
+humanName: GeForce RTX 4070 10 GB
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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: 'Never Released'
+ GPU Base Frequency: 2355 MHz
+ GPU Boost Frequency: 2520 MHz
+ VRAM Frequency: 1313 MHz
+ VRAM Bandwidth: 420.2 GB/s
+ VRAM Capacity: 10 GiB
+ VRAM Type: GDDR6X
+ VRAM Bus Width: 160 bit
+ Render Output Unit Count: 80
+ Texture Mapping Unit Count: 224
+ Shader Processor Count: 7168
+ Die Size: 294 mm²
+ GPU: AD104
+ GPU Variant: AD104-275-A1
+ TDP: 220 W
+ FP32 Compute: 36.13 TFLOPS
+ FP64 Compute: 564.5 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/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml
new file mode 100644
index 000000000..f68223cf6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Max-Q.yaml
@@ -0,0 +1,37 @@
+name: GeForce-RTX-4070-Max-Q
+humanName: GeForce RTX 4070 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml
new file mode 100644
index 000000000..2eb225882
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Mobile.yaml
@@ -0,0 +1,65 @@
+name: GeForce-RTX-4070-Mobile
+humanName: GeForce RTX 4070 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml
new file mode 100644
index 000000000..250d97a13
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-SUPER.yaml
@@ -0,0 +1,71 @@
+name: GeForce-RTX-4070-SUPER
+humanName: GeForce RTX 4070 SUPER
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Ti-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Ti-SUPER.yaml
new file mode 100644
index 000000000..fd5741494
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Ti-SUPER.yaml
@@ -0,0 +1,71 @@
+name: GeForce-RTX-4070-Ti-SUPER
+humanName: GeForce RTX 4070 Ti SUPER
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Ti.yaml
new file mode 100644
index 000000000..3d4cdd454
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070-Ti.yaml
@@ -0,0 +1,71 @@
+name: GeForce-RTX-4070-Ti
+humanName: GeForce RTX 4070 Ti
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4070.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070.yaml
new file mode 100644
index 000000000..eb5469047
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4070.yaml
@@ -0,0 +1,71 @@
+name: GeForce-RTX-4070
+humanName: GeForce RTX 4070
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml
new file mode 100644
index 000000000..95b24e7d8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-12-GB.yaml
@@ -0,0 +1,42 @@
+name: GeForce-RTX-4080-12-GB
+humanName: GeForce RTX 4080 12 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml
new file mode 100644
index 000000000..ebe085460
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Max-Q.yaml
@@ -0,0 +1,37 @@
+name: GeForce-RTX-4080-Max-Q
+humanName: GeForce RTX 4080 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml
new file mode 100644
index 000000000..d286abfad
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Mobile.yaml
@@ -0,0 +1,65 @@
+name: GeForce-RTX-4080-Mobile
+humanName: GeForce RTX 4080 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml
new file mode 100644
index 000000000..bf7aab8b2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-SUPER.yaml
@@ -0,0 +1,71 @@
+name: GeForce-RTX-4080-SUPER
+humanName: GeForce RTX 4080 SUPER
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Ti.yaml
new file mode 100644
index 000000000..2935407d8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080-Ti.yaml
@@ -0,0 +1,43 @@
+name: GeForce-RTX-4080-Ti
+humanName: GeForce RTX 4080 Ti
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4080.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080.yaml
new file mode 100644
index 000000000..6d6356647
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4080.yaml
@@ -0,0 +1,43 @@
+name: GeForce-RTX-4080
+humanName: GeForce RTX 4080
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4090-D.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-D.yaml
new file mode 100644
index 000000000..a874c77f2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-D.yaml
@@ -0,0 +1,43 @@
+name: GeForce-RTX-4090-D
+humanName: GeForce RTX 4090 D
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml
new file mode 100644
index 000000000..6ece95a7f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Max-Q.yaml
@@ -0,0 +1,37 @@
+name: GeForce-RTX-4090-Max-Q
+humanName: GeForce RTX 4090 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml
new file mode 100644
index 000000000..772637e74
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Mobile.yaml
@@ -0,0 +1,65 @@
+name: GeForce-RTX-4090-Mobile
+humanName: GeForce RTX 4090 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Ti.yaml
new file mode 100644
index 000000000..763e09255
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090-Ti.yaml
@@ -0,0 +1,43 @@
+name: GeForce-RTX-4090-Ti
+humanName: GeForce RTX 4090 Ti
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/GeForce-RTX-4090.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090.yaml
new file mode 100644
index 000000000..e089ba9f8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/GeForce-RTX-4090.yaml
@@ -0,0 +1,71 @@
+name: GeForce-RTX-4090
+humanName: GeForce RTX 4090
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/RTX-2000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Ada-Generation.yaml
new file mode 100644
index 000000000..0430cbb39
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Ada-Generation.yaml
@@ -0,0 +1,67 @@
+name: RTX-2000-Ada-Generation
+humanName: RTX 2000 Ada Generation
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml
new file mode 100644
index 000000000..2ca196b83
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Embedded-Ada-Generation.yaml
@@ -0,0 +1,37 @@
+name: RTX-2000-Embedded-Ada-Generation
+humanName: RTX 2000 Embedded Ada Generation
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml
new file mode 100644
index 000000000..ff866a546
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Max-Q-Ada-Generation.yaml
@@ -0,0 +1,38 @@
+name: RTX-2000-Max-Q-Ada-Generation
+humanName: RTX 2000 Max-Q Ada Generation
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml
new file mode 100644
index 000000000..ff9d3031d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-2000-Mobile-Ada-Generation.yaml
@@ -0,0 +1,38 @@
+name: RTX-2000-Mobile-Ada-Generation
+humanName: RTX 2000 Mobile Ada Generation
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml
new file mode 100644
index 000000000..f53b5f2ce
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3000-Mobile-Ada-Generation.yaml
@@ -0,0 +1,38 @@
+name: RTX-3000-Mobile-Ada-Generation
+humanName: RTX 3000 Mobile Ada Generation
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml
new file mode 100644
index 000000000..381177469
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Embedded-Ada-Generation.yaml
@@ -0,0 +1,37 @@
+name: RTX-3500-Embedded-Ada-Generation
+humanName: RTX 3500 Embedded Ada Generation
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml
new file mode 100644
index 000000000..a81227b20
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-3500-Mobile-Ada-Generation.yaml
@@ -0,0 +1,38 @@
+name: RTX-3500-Mobile-Ada-Generation
+humanName: RTX 3500 Mobile Ada Generation
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/RTX-4000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Ada-Generation.yaml
new file mode 100644
index 000000000..e7f2a81de
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Ada-Generation.yaml
@@ -0,0 +1,67 @@
+name: RTX-4000-Ada-Generation
+humanName: RTX 4000 Ada Generation
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml
new file mode 100644
index 000000000..cd2fe00d1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-Mobile-Ada-Generation.yaml
@@ -0,0 +1,38 @@
+name: RTX-4000-Mobile-Ada-Generation
+humanName: RTX 4000 Mobile Ada Generation
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml
new file mode 100644
index 000000000..929e3a6b6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4000-SFF-Ada-Generation.yaml
@@ -0,0 +1,67 @@
+name: RTX-4000-SFF-Ada-Generation
+humanName: RTX 4000 SFF Ada Generation
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/RTX-4500-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4500-Ada-Generation.yaml
new file mode 100644
index 000000000..b4db6d490
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-4500-Ada-Generation.yaml
@@ -0,0 +1,67 @@
+name: RTX-4500-Ada-Generation
+humanName: RTX 4500 Ada Generation
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/RTX-5000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Ada-Generation.yaml
new file mode 100644
index 000000000..48c225146
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Ada-Generation.yaml
@@ -0,0 +1,68 @@
+name: RTX-5000-Ada-Generation
+humanName: RTX 5000 Ada Generation
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation-X2.yaml
new file mode 100644
index 000000000..5774cbd16
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation-X2.yaml
@@ -0,0 +1,35 @@
+name: RTX-5000-Embedded-Ada-Generation-X2
+humanName: RTX 5000 Embedded Ada Generation X2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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: 150 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/Nvidia/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml
new file mode 100644
index 000000000..5356a541b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Embedded-Ada-Generation.yaml
@@ -0,0 +1,37 @@
+name: RTX-5000-Embedded-Ada-Generation
+humanName: RTX 5000 Embedded Ada Generation
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml
new file mode 100644
index 000000000..1c491dc7d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Max-Q-Ada-Generation.yaml
@@ -0,0 +1,38 @@
+name: RTX-5000-Max-Q-Ada-Generation
+humanName: RTX 5000 Max-Q Ada Generation
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml
new file mode 100644
index 000000000..577d63de8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5000-Mobile-Ada-Generation.yaml
@@ -0,0 +1,38 @@
+name: RTX-5000-Mobile-Ada-Generation
+humanName: RTX 5000 Mobile Ada Generation
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/RTX-5880-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5880-Ada-Generation.yaml
new file mode 100644
index 000000000..72ee2ea07
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-5880-Ada-Generation.yaml
@@ -0,0 +1,40 @@
+name: RTX-5880-Ada-Generation
+humanName: RTX 5880 Ada Generation
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/RTX-6000-Ada-Generation.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-6000-Ada-Generation.yaml
new file mode 100644
index 000000000..0daa36601
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/RTX-6000-Ada-Generation.yaml
@@ -0,0 +1,68 @@
+name: RTX-6000-Ada-Generation
+humanName: RTX 6000 Ada Generation
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ada-Lovelace/TITAN-Ada.yaml b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/TITAN-Ada.yaml
new file mode 100644
index 000000000..673090f9d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ada-Lovelace/TITAN-Ada.yaml
@@ -0,0 +1,43 @@
+name: TITAN-Ada
+humanName: TITAN Ada
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere.yaml
new file mode 100644
index 000000000..d8dd6701b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere.yaml
@@ -0,0 +1,118 @@
+name: Ampere
+humanName: Ampere
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 8 nm
+ DirectX Support: '12.2'
+ Vulkan Support: '1.3'
+ Release Date: '2020-05-14'
+ Manufacturer: Nvidia
+sections:
+ - 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: Mobile
+ members:
+ - GeForce-MX570
+ - GeForce-MX570-A
+ - header: Uncategorised
+ members:
+ - 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
+ - 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
diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-PCIe-40-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-PCIe-40-GB.yaml
new file mode 100644
index 000000000..2a37c2008
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-PCIe-40-GB.yaml
@@ -0,0 +1,37 @@
+name: A800-PCIe-40-GB
+humanName: A800 PCIe 40 GB
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-PCIe-80-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-PCIe-80-GB.yaml
new file mode 100644
index 000000000..e204525b4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-PCIe-80-GB.yaml
@@ -0,0 +1,37 @@
+name: A800-PCIe-80-GB
+humanName: A800 PCIe 80 GB
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-SXM4-80-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-SXM4-80-GB.yaml
new file mode 100644
index 000000000..fa71252f7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/A800-SXM4-80-GB.yaml
@@ -0,0 +1,35 @@
+name: A800-SXM4-80-GB
+humanName: A800 SXM4 80 GB
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-170HX-10-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-170HX-10-GB.yaml
new file mode 100644
index 000000000..e1c42fd3e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-170HX-10-GB.yaml
@@ -0,0 +1,36 @@
+name: CMP-170HX-10-GB
+humanName: CMP 170HX 10 GB
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-170HX-8-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-170HX-8-GB.yaml
new file mode 100644
index 000000000..ea45ae4ef
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-170HX-8-GB.yaml
@@ -0,0 +1,36 @@
+name: CMP-170HX-8-GB
+humanName: CMP 170HX 8 GB
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-70HX.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-70HX.yaml
new file mode 100644
index 000000000..fbeee260c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-70HX.yaml
@@ -0,0 +1,40 @@
+name: CMP-70HX
+humanName: CMP 70HX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-90HX.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-90HX.yaml
new file mode 100644
index 000000000..395f5c058
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/CMP-90HX.yaml
@@ -0,0 +1,40 @@
+name: CMP-90HX
+humanName: CMP 90HX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/DRIVE-A100-PROD.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/DRIVE-A100-PROD.yaml
new file mode 100644
index 000000000..5213fc03a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/DRIVE-A100-PROD.yaml
@@ -0,0 +1,35 @@
+name: DRIVE-A100-PROD
+humanName: DRIVE A100 PROD
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-MX570-A.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-MX570-A.yaml
new file mode 100644
index 000000000..abef2336a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-MX570-A.yaml
@@ -0,0 +1,37 @@
+name: GeForce-MX570-A
+humanName: GeForce MX570 A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-MX570.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-MX570.yaml
new file mode 100644
index 000000000..a5dd7cf51
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-MX570.yaml
@@ -0,0 +1,47 @@
+name: GeForce-MX570
+humanName: GeForce MX570
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..3487a3fb2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Max-Q.yaml
@@ -0,0 +1,41 @@
+name: GeForce-RTX-2050-Max-Q
+humanName: GeForce RTX 2050 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-2050-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Mobile.yaml
new file mode 100644
index 000000000..539ec8aff
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-2050-Mobile.yaml
@@ -0,0 +1,41 @@
+name: GeForce-RTX-2050-Mobile
+humanName: GeForce RTX 2050 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3050-4-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-4-GB.yaml
new file mode 100644
index 000000000..7bfb8ba55
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-4-GB.yaml
@@ -0,0 +1,42 @@
+name: GeForce-RTX-3050-4-GB
+humanName: GeForce RTX 3050 4 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3050-6-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-6-GB.yaml
new file mode 100644
index 000000000..4ba71d3ec
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-6-GB.yaml
@@ -0,0 +1,42 @@
+name: GeForce-RTX-3050-6-GB
+humanName: GeForce RTX 3050 6 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3050-8-GB-GA107.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-8-GB-GA107.yaml
new file mode 100644
index 000000000..f94efe1f1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-8-GB-GA107.yaml
@@ -0,0 +1,43 @@
+name: GeForce-RTX-3050-8-GB-GA107
+humanName: GeForce RTX 3050 8 GB GA107
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3050-8-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-8-GB.yaml
new file mode 100644
index 000000000..ef5310ca8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-8-GB.yaml
@@ -0,0 +1,42 @@
+name: GeForce-RTX-3050-8-GB
+humanName: GeForce RTX 3050 8 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/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
new file mode 100644
index 000000000..9b53f9bd0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-4-GB.yaml
@@ -0,0 +1,36 @@
+name: GeForce-RTX-3050-Max-Q-Refresh-4-GB
+humanName: GeForce RTX 3050 Max-Q Refresh 4 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/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
new file mode 100644
index 000000000..3888fb6e6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q-Refresh-6-GB.yaml
@@ -0,0 +1,36 @@
+name: GeForce-RTX-3050-Max-Q-Refresh-6-GB
+humanName: GeForce RTX 3050 Max-Q Refresh 6 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3050-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q.yaml
new file mode 100644
index 000000000..cd62b9bba
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Max-Q.yaml
@@ -0,0 +1,36 @@
+name: GeForce-RTX-3050-Max-Q
+humanName: GeForce RTX 3050 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml
new file mode 100644
index 000000000..c80f10d14
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-4-GB.yaml
@@ -0,0 +1,36 @@
+name: GeForce-RTX-3050-Mobile-Refresh-4-GB
+humanName: GeForce RTX 3050 Mobile Refresh 4 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml
new file mode 100644
index 000000000..d46e6b3d3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile-Refresh-6-GB.yaml
@@ -0,0 +1,36 @@
+name: GeForce-RTX-3050-Mobile-Refresh-6-GB
+humanName: GeForce RTX 3050 Mobile Refresh 6 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3050-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile.yaml
new file mode 100644
index 000000000..ea98ef3ff
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Mobile.yaml
@@ -0,0 +1,64 @@
+name: GeForce-RTX-3050-Mobile
+humanName: GeForce RTX 3050 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3050-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-OEM.yaml
new file mode 100644
index 000000000..1ab03e298
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-OEM.yaml
@@ -0,0 +1,40 @@
+name: GeForce-RTX-3050-OEM
+humanName: GeForce RTX 3050 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml
new file mode 100644
index 000000000..627812dbe
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Max-Q.yaml
@@ -0,0 +1,36 @@
+name: GeForce-RTX-3050-Ti-Max-Q
+humanName: GeForce RTX 3050 Ti Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml
new file mode 100644
index 000000000..eeeafcd3d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3050-Ti-Mobile.yaml
@@ -0,0 +1,63 @@
+name: GeForce-RTX-3050-Ti-Mobile
+humanName: GeForce RTX 3050 Ti Mobile
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3060-12-GB-GA104.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-12-GB-GA104.yaml
new file mode 100644
index 000000000..e4cf955f7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-12-GB-GA104.yaml
@@ -0,0 +1,42 @@
+name: GeForce-RTX-3060-12-GB-GA104
+humanName: GeForce RTX 3060 12 GB GA104
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3060-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-12-GB.yaml
new file mode 100644
index 000000000..a7b6c5caf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-12-GB.yaml
@@ -0,0 +1,42 @@
+name: GeForce-RTX-3060-12-GB
+humanName: GeForce RTX 3060 12 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3060-3840SP.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-3840SP.yaml
new file mode 100644
index 000000000..3082261b6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-3840SP.yaml
@@ -0,0 +1,42 @@
+name: GeForce-RTX-3060-3840SP
+humanName: GeForce RTX 3060 3840SP
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3060-8-GB-GA104.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-8-GB-GA104.yaml
new file mode 100644
index 000000000..15f7d9dea
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-8-GB-GA104.yaml
@@ -0,0 +1,42 @@
+name: GeForce-RTX-3060-8-GB-GA104
+humanName: GeForce RTX 3060 8 GB GA104
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3060-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Max-Q.yaml
new file mode 100644
index 000000000..60d872bed
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Max-Q.yaml
@@ -0,0 +1,35 @@
+name: GeForce-RTX-3060-Max-Q
+humanName: GeForce RTX 3060 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3060-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Mobile.yaml
new file mode 100644
index 000000000..0a91f4b48
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Mobile.yaml
@@ -0,0 +1,62 @@
+name: GeForce-RTX-3060-Mobile
+humanName: GeForce RTX 3060 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3060-Ti-GA103.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti-GA103.yaml
new file mode 100644
index 000000000..3a6cb7c8b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti-GA103.yaml
@@ -0,0 +1,42 @@
+name: GeForce-RTX-3060-Ti-GA103
+humanName: GeForce RTX 3060 Ti GA103
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml
new file mode 100644
index 000000000..f708559c0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti-GDDR6X.yaml
@@ -0,0 +1,42 @@
+name: GeForce-RTX-3060-Ti-GDDR6X
+humanName: GeForce RTX 3060 Ti GDDR6X
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3060-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti.yaml
new file mode 100644
index 000000000..c2a2452a1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3060-Ti.yaml
@@ -0,0 +1,69 @@
+name: GeForce-RTX-3060-Ti
+humanName: GeForce RTX 3060 Ti
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3070-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Max-Q.yaml
new file mode 100644
index 000000000..670b79d57
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Max-Q.yaml
@@ -0,0 +1,36 @@
+name: GeForce-RTX-3070-Max-Q
+humanName: GeForce RTX 3070 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3070-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Mobile.yaml
new file mode 100644
index 000000000..0fca14617
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Mobile.yaml
@@ -0,0 +1,63 @@
+name: GeForce-RTX-3070-Mobile
+humanName: GeForce RTX 3070 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3070-Ti-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-16-GB.yaml
new file mode 100644
index 000000000..febb6e502
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-16-GB.yaml
@@ -0,0 +1,42 @@
+name: GeForce-RTX-3070-Ti-16-GB
+humanName: GeForce RTX 3070 Ti 16 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3070-Ti-8-GB-GA102.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-8-GB-GA102.yaml
new file mode 100644
index 000000000..a314e5d37
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-8-GB-GA102.yaml
@@ -0,0 +1,42 @@
+name: GeForce-RTX-3070-Ti-8-GB-GA102
+humanName: GeForce RTX 3070 Ti 8 GB GA102
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml
new file mode 100644
index 000000000..b80bf4dad
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Max-Q.yaml
@@ -0,0 +1,35 @@
+name: GeForce-RTX-3070-Ti-Max-Q
+humanName: GeForce RTX 3070 Ti Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml
new file mode 100644
index 000000000..6b69d1fff
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti-Mobile.yaml
@@ -0,0 +1,62 @@
+name: GeForce-RTX-3070-Ti-Mobile
+humanName: GeForce RTX 3070 Ti Mobile
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3070-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti.yaml
new file mode 100644
index 000000000..b8766f66e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-Ti.yaml
@@ -0,0 +1,69 @@
+name: GeForce-RTX-3070-Ti
+humanName: GeForce RTX 3070 Ti
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3070-TiM.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-TiM.yaml
new file mode 100644
index 000000000..4fd600ed6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070-TiM.yaml
@@ -0,0 +1,44 @@
+# I dont think we bother with this part on the DB, the same as 3070 ti mobile, but in desktop form on ali express...
+# This part exists in the DB, but isnt listed.
+name: GeForce-RTX-3070-TiM
+humanName: GeForce RTX 3070 TiM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070.yaml
new file mode 100644
index 000000000..c0e6c04f5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3070.yaml
@@ -0,0 +1,69 @@
+name: GeForce-RTX-3070
+humanName: GeForce RTX 3070
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3080-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-12-GB.yaml
new file mode 100644
index 000000000..c5f05cab1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-12-GB.yaml
@@ -0,0 +1,43 @@
+name: GeForce-RTX-3080-12-GB
+humanName: GeForce RTX 3080 12 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3080-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Max-Q.yaml
new file mode 100644
index 000000000..2eef9e7ff
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Max-Q.yaml
@@ -0,0 +1,36 @@
+name: GeForce-RTX-3080-Max-Q
+humanName: GeForce RTX 3080 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3080-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Mobile.yaml
new file mode 100644
index 000000000..47ea48579
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Mobile.yaml
@@ -0,0 +1,63 @@
+name: GeForce-RTX-3080-Mobile
+humanName: GeForce RTX 3080 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3080-Ti-20-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-20-GB.yaml
new file mode 100644
index 000000000..d4045388a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-20-GB.yaml
@@ -0,0 +1,43 @@
+name: GeForce-RTX-3080-Ti-20-GB
+humanName: GeForce RTX 3080 Ti 20 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml
new file mode 100644
index 000000000..ee5573524
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Max-Q.yaml
@@ -0,0 +1,36 @@
+name: GeForce-RTX-3080-Ti-Max-Q
+humanName: GeForce RTX 3080 Ti Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml
new file mode 100644
index 000000000..fda9f6ee1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti-Mobile.yaml
@@ -0,0 +1,63 @@
+name: GeForce-RTX-3080-Ti-Mobile
+humanName: GeForce RTX 3080 Ti Mobile
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3080-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti.yaml
new file mode 100644
index 000000000..240532b57
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080-Ti.yaml
@@ -0,0 +1,70 @@
+name: GeForce-RTX-3080-Ti
+humanName: GeForce RTX 3080 Ti
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3080.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080.yaml
new file mode 100644
index 000000000..bba1ab153
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3080.yaml
@@ -0,0 +1,70 @@
+name: GeForce-RTX-3080
+humanName: GeForce RTX 3080
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3090-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3090-Ti.yaml
new file mode 100644
index 000000000..59cc38013
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3090-Ti.yaml
@@ -0,0 +1,70 @@
+name: GeForce-RTX-3090-Ti
+humanName: GeForce RTX 3090 Ti
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/GeForce-RTX-3090.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3090.yaml
new file mode 100644
index 000000000..40f16c0d6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/GeForce-RTX-3090.yaml
@@ -0,0 +1,70 @@
+name: GeForce-RTX-3090
+humanName: GeForce RTX 3090
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/Jetson-AGX-Orin-32-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-AGX-Orin-32-GB.yaml
new file mode 100644
index 000000000..142b8c552
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-AGX-Orin-32-GB.yaml
@@ -0,0 +1,36 @@
+name: Jetson-AGX-Orin-32-GB
+humanName: Jetson AGX Orin 32 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Embedded
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 930 MHz
+ VRAM Frequency: 1600 MHz
+ VRAM Bandwidth: 204.8 GB/s
+ VRAM Capacity: 32 GiB
+ 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/Nvidia/Ampere/Jetson-AGX-Orin-64-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-AGX-Orin-64-GB.yaml
new file mode 100644
index 000000000..143dd07e8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-AGX-Orin-64-GB.yaml
@@ -0,0 +1,36 @@
+name: Jetson-AGX-Orin-64-GB
+humanName: Jetson AGX Orin 64 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Embedded
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 1300 MHz
+ VRAM Frequency: 1600 MHz
+ VRAM Bandwidth: 204.8 GB/s
+ VRAM Capacity: 64 GiB
+ 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/Nvidia/Ampere/Jetson-Orin-NX-16-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-NX-16-GB.yaml
new file mode 100644
index 000000000..e26b356d2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-NX-16-GB.yaml
@@ -0,0 +1,37 @@
+name: Jetson-Orin-NX-16-GB
+humanName: Jetson Orin NX 16 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Embedded
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 918 MHz
+ VRAM Frequency: 1600 MHz
+ VRAM Bandwidth: 102.4 GB/s
+ VRAM Capacity: 16 GiB
+ 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/Nvidia/Ampere/Jetson-Orin-NX-8-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-NX-8-GB.yaml
new file mode 100644
index 000000000..d42e30523
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-NX-8-GB.yaml
@@ -0,0 +1,37 @@
+name: Jetson-Orin-NX-8-GB
+humanName: Jetson Orin NX 8 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Embedded
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 765 MHz
+ VRAM Frequency: 1600 MHz
+ VRAM Bandwidth: 102.4 GB/s
+ VRAM Capacity: 8 GiB
+ 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/Nvidia/Ampere/Jetson-Orin-Nano-4-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-Nano-4-GB.yaml
new file mode 100644
index 000000000..db56b50bd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-Nano-4-GB.yaml
@@ -0,0 +1,36 @@
+name: Jetson-Orin-Nano-4-GB
+humanName: Jetson Orin Nano 4 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Embedded
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 1067 MHz
+ VRAM Bandwidth: 34.14 GB/s
+ VRAM Capacity: 4 GiB
+ 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/Nvidia/Ampere/Jetson-Orin-Nano-8-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-Nano-8-GB.yaml
new file mode 100644
index 000000000..9b6676709
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/Jetson-Orin-Nano-8-GB.yaml
@@ -0,0 +1,36 @@
+name: Jetson-Orin-Nano-8-GB
+humanName: Jetson Orin Nano 8 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Embedded
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 1067 MHz
+ VRAM Bandwidth: 68.29 GB/s
+ VRAM Capacity: 8 GiB
+ 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/Nvidia/Ampere/PG506-207.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-207.yaml
new file mode 100644
index 000000000..427ae57cb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-207.yaml
@@ -0,0 +1,37 @@
+name: PG506-207
+humanName: PG506-207
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-217.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-217.yaml
new file mode 100644
index 000000000..7835013f6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-217.yaml
@@ -0,0 +1,37 @@
+name: PG506-217
+humanName: PG506-217
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-232.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-232.yaml
new file mode 100644
index 000000000..309b6ef9e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-232.yaml
@@ -0,0 +1,37 @@
+name: PG506-232
+humanName: PG506-232
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-242.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-242.yaml
new file mode 100644
index 000000000..329adda0d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/PG506-242.yaml
@@ -0,0 +1,37 @@
+name: PG506-242
+humanName: PG506-242
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Embedded.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Embedded.yaml
new file mode 100644
index 000000000..e19a76868
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Embedded.yaml
@@ -0,0 +1,37 @@
+name: RTX-A1000-Embedded
+humanName: RTX A1000 Embedded
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A1000-Mobile-6-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile-6-GB.yaml
new file mode 100644
index 000000000..34bac0204
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile-6-GB.yaml
@@ -0,0 +1,38 @@
+name: RTX-A1000-Mobile-6-GB
+humanName: RTX A1000 Mobile 6 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A1000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile.yaml
new file mode 100644
index 000000000..4325715c6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A1000-Mobile.yaml
@@ -0,0 +1,38 @@
+name: RTX-A1000-Mobile
+humanName: RTX A1000 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A2000-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-12-GB.yaml
new file mode 100644
index 000000000..cdb8e8ca1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-12-GB.yaml
@@ -0,0 +1,39 @@
+name: RTX-A2000-12-GB
+humanName: RTX A2000 12 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A2000-Embedded.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Embedded.yaml
new file mode 100644
index 000000000..86002680f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Embedded.yaml
@@ -0,0 +1,38 @@
+name: RTX-A2000-Embedded
+humanName: RTX A2000 Embedded
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A2000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Max-Q.yaml
new file mode 100644
index 000000000..efa439528
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Max-Q.yaml
@@ -0,0 +1,38 @@
+name: RTX-A2000-Max-Q
+humanName: RTX A2000 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A2000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Mobile.yaml
new file mode 100644
index 000000000..2f0b8f499
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000-Mobile.yaml
@@ -0,0 +1,55 @@
+name: RTX-A2000-Mobile
+humanName: RTX A2000 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000.yaml
new file mode 100644
index 000000000..7ee895592
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A2000.yaml
@@ -0,0 +1,67 @@
+name: RTX-A2000
+humanName: RTX A2000
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A3000-Mobile-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile-12-GB.yaml
new file mode 100644
index 000000000..3c6a2961d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile-12-GB.yaml
@@ -0,0 +1,37 @@
+name: RTX-A3000-Mobile-12-GB
+humanName: RTX A3000 Mobile 12 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A3000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile.yaml
new file mode 100644
index 000000000..de2bfb3ae
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A3000-Mobile.yaml
@@ -0,0 +1,54 @@
+name: RTX-A3000-Mobile
+humanName: RTX A3000 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A4-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4-Mobile.yaml
new file mode 100644
index 000000000..9347f1442
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4-Mobile.yaml
@@ -0,0 +1,38 @@
+name: RTX-A4-Mobile
+humanName: RTX A4 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A4000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Max-Q.yaml
new file mode 100644
index 000000000..45a2997df
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Max-Q.yaml
@@ -0,0 +1,37 @@
+name: RTX-A4000-Max-Q
+humanName: RTX A4000 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A4000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Mobile.yaml
new file mode 100644
index 000000000..8a0998018
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000-Mobile.yaml
@@ -0,0 +1,37 @@
+name: RTX-A4000-Mobile
+humanName: RTX A4000 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000.yaml
new file mode 100644
index 000000000..649087028
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000.yaml
@@ -0,0 +1,67 @@
+name: RTX-A4000
+humanName: RTX A4000
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A4000H.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000H.yaml
new file mode 100644
index 000000000..6ec5b4bf2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4000H.yaml
@@ -0,0 +1,40 @@
+name: RTX-A4000H
+humanName: RTX A4000H
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A4500-Embedded.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Embedded.yaml
new file mode 100644
index 000000000..a99615190
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Embedded.yaml
@@ -0,0 +1,37 @@
+name: RTX-A4500-Embedded
+humanName: RTX A4500 Embedded
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A4500-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Max-Q.yaml
new file mode 100644
index 000000000..e5c14ad46
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Max-Q.yaml
@@ -0,0 +1,37 @@
+name: RTX-A4500-Max-Q
+humanName: RTX A4500 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A4500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Mobile.yaml
new file mode 100644
index 000000000..a85f4a8a5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500-Mobile.yaml
@@ -0,0 +1,37 @@
+name: RTX-A4500-Mobile
+humanName: RTX A4500 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A4500.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500.yaml
new file mode 100644
index 000000000..3ee1cb2a1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A4500.yaml
@@ -0,0 +1,66 @@
+name: RTX-A4500
+humanName: RTX A4500
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A500-Embedded.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Embedded.yaml
new file mode 100644
index 000000000..b60235f02
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Embedded.yaml
@@ -0,0 +1,37 @@
+name: RTX-A500-Embedded
+humanName: RTX A500 Embedded
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Mobile.yaml
new file mode 100644
index 000000000..62d5a6a2e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500-Mobile.yaml
@@ -0,0 +1,38 @@
+name: RTX-A500-Mobile
+humanName: RTX A500 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A500.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500.yaml
new file mode 100644
index 000000000..a31aa175c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A500.yaml
@@ -0,0 +1,37 @@
+name: RTX-A500
+humanName: RTX A500
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A5000-12Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-12Q.yaml
new file mode 100644
index 000000000..1174f6699
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-12Q.yaml
@@ -0,0 +1,39 @@
+name: RTX-A5000-12Q
+humanName: RTX A5000-12Q
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A5000-8Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-8Q.yaml
new file mode 100644
index 000000000..c0dd085f7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-8Q.yaml
@@ -0,0 +1,39 @@
+name: RTX-A5000-8Q
+humanName: RTX A5000-8Q
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A5000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Max-Q.yaml
new file mode 100644
index 000000000..8a33a3a8a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Max-Q.yaml
@@ -0,0 +1,37 @@
+name: RTX-A5000-Max-Q
+humanName: RTX A5000 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A5000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Mobile.yaml
new file mode 100644
index 000000000..d64901408
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000-Mobile.yaml
@@ -0,0 +1,37 @@
+name: RTX-A5000-Mobile
+humanName: RTX A5000 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000.yaml
new file mode 100644
index 000000000..93ffb9a79
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5000.yaml
@@ -0,0 +1,66 @@
+name: RTX-A5000
+humanName: RTX A5000
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A5500-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Max-Q.yaml
new file mode 100644
index 000000000..8a346be72
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Max-Q.yaml
@@ -0,0 +1,37 @@
+name: RTX-A5500-Max-Q
+humanName: RTX A5500 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A5500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Mobile.yaml
new file mode 100644
index 000000000..68c2ac22e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500-Mobile.yaml
@@ -0,0 +1,37 @@
+name: RTX-A5500-Mobile
+humanName: RTX A5500 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A5500.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500.yaml
new file mode 100644
index 000000000..56d2bfb6d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A5500.yaml
@@ -0,0 +1,66 @@
+name: RTX-A5500
+humanName: RTX A5500
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Ampere/RTX-A6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A6000.yaml
new file mode 100644
index 000000000..325760de4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Ampere/RTX-A6000.yaml
@@ -0,0 +1,66 @@
+name: RTX-A6000
+humanName: RTX A6000
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Blackwell-2.0.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0.yaml
new file mode 100644
index 000000000..3c392357c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0.yaml
@@ -0,0 +1,43 @@
+name: Blackwell-2.0
+humanName: Blackwell 2.0
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ Vulkan Support: '1.4'
+ Release Date: '2025'
+ Manufacturer: Nvidia
+sections:
+ - header: Main RTX Range (Consumer)
+ members:
+ - GeForce-RTX-5090-D
+ - GeForce-RTX-5090
+ - GeForce-RTX-5080
+ - GeForce-RTX-5070-Ti
+ - GeForce-RTX-5070
+ - GeForce-RTX-5060-Ti
+ - GeForce-RTX-5060
+ - GeForce-RTX-5050
+ - header: RTX Mobile
+ members:
+ - GeForce-RTX-5090-Mobile
+ - GeForce-RTX-5080-Mobile
+ - GeForce-RTX-5070-Ti-Mobile
+ - GeForce-RTX-5070-Mobile
+ - GeForce-RTX-5060-Mobile
+ - GeForce-RTX-5050-Mobile
+ - header: PRO
+ members:
+ - RTX-PRO-500-Blackwell-Mobile
+ - RTX-PRO-1000-Blackwell-Mobile
+ - RTX-PRO-2000-Blackwell-Mobile
+ - RTX-PRO-3000-Blackwell-Mobile
+ - RTX-PRO-4000-Blackwell
+ - RTX-PRO-4000-Blackwell-Mobile
+ - RTX-PRO-4500-Blackwell
+ - RTX-PRO-5000-Blackwell
+ - RTX-PRO-5000-Blackwell-Mobile
+ - RTX-PRO-6000-Blackwell
+ - RTX-PRO-6000-Blackwell-Max-Q
diff --git a/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5050-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5050-Mobile.yaml
new file mode 100644
index 000000000..757f4197a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5050-Mobile.yaml
@@ -0,0 +1,39 @@
+name: GeForce-RTX-5050-Mobile
+humanName: GeForce RTX 5050 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '80'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: '2025'
+ GPU Base Frequency: 2235 MHz
+ GPU Boost Frequency: 2520 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 224.0 GB/s
+ VRAM Capacity: 8 GiB
+ VRAM Type: GDDR6
+ VRAM Bus Width: 128 bit
+ Render Output Unit Count: 32
+ Texture Mapping Unit Count: 80
+ Shader Processor Count: 2560
+ Die Size: unknown
+ GPU: GB207
+ GPU Variant: GB207
+ TDP: 115 W
+ FP32 Compute: 12.90 TFLOPS
+ FP64 Compute: 201.6 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/Nvidia/Blackwell-2.0/GeForce-RTX-5050.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5050.yaml
new file mode 100644
index 000000000..68e6478af
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5050.yaml
@@ -0,0 +1,40 @@
+name: GeForce-RTX-5050
+humanName: GeForce RTX 5050
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '80'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: '2025'
+ GPU Base Frequency: 2235 MHz
+ GPU Boost Frequency: 2520 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 224.0 GB/s
+ VRAM Capacity: 8 GiB
+ VRAM Type: GDDR6
+ VRAM Bus Width: 128 bit
+ Render Output Unit Count: 32
+ Texture Mapping Unit Count: 80
+ Shader Processor Count: 2560
+ Die Size: unknown
+ GPU: GB207
+ GPU Variant: GB207
+ TDP: 100 W
+ FP32 Compute: 12.90 TFLOPS
+ FP64 Compute: 201.6 GFLOPS (1:64)
+ Slot Width: Dual-slot
+ Outputs:
+ - 1x HDMI 2.1b
+ - 3x DisplayPort 2.1b
+ Power Connectors: 1x 16-pin
+ Ray Tracing Cores: 20
+ Tensor Cores: 80
diff --git a/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5060-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5060-Mobile.yaml
new file mode 100644
index 000000000..1dba4224a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5060-Mobile.yaml
@@ -0,0 +1,39 @@
+name: GeForce-RTX-5060-Mobile
+humanName: GeForce RTX 5060 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '112'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: '2025'
+ GPU Base Frequency: 2235 MHz
+ GPU Boost Frequency: 2520 MHz
+ VRAM Frequency: 2000 MHz
+ VRAM Bandwidth: 512.0 GB/s
+ VRAM Capacity: 8 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 128 bit
+ Render Output Unit Count: 32
+ Texture Mapping Unit Count: 112
+ Shader Processor Count: 3584
+ Die Size: unknown
+ GPU: GB206
+ GPU Variant: GB206
+ TDP: 115 W
+ FP32 Compute: 18.06 TFLOPS
+ FP64 Compute: 282.2 GFLOPS (1:64)
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Ray Tracing Cores: 28
+ Tensor Cores: 112
diff --git a/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5060-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5060-Ti.yaml
new file mode 100644
index 000000000..7eaf91808
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5060-Ti.yaml
@@ -0,0 +1,40 @@
+name: GeForce-RTX-5060-Ti
+humanName: GeForce RTX 5060 Ti
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '144'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: 'Mar 2025'
+ GPU Base Frequency: 2235 MHz
+ GPU Boost Frequency: 2520 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 448.0 GB/s
+ VRAM Capacity: 16 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 128 bit
+ Render Output Unit Count: 48
+ Texture Mapping Unit Count: 144
+ Shader Processor Count: 4608
+ Die Size: unknown
+ GPU: GB206
+ GPU Variant: GB206
+ TDP: 170 W
+ FP32 Compute: 23.22 TFLOPS
+ FP64 Compute: 362.9 GFLOPS (1:64)
+ Slot Width: Dual-slot
+ Outputs:
+ - 1x HDMI 2.1b
+ - 3x DisplayPort 2.1b
+ Power Connectors: 1x 16-pin
+ Ray Tracing Cores: 36
+ Tensor Cores: 144
diff --git a/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5060.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5060.yaml
new file mode 100644
index 000000000..e83aab1d3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5060.yaml
@@ -0,0 +1,40 @@
+name: GeForce-RTX-5060
+humanName: GeForce RTX 5060
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '144'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: 'Mar 2025'
+ GPU Base Frequency: 2235 MHz
+ GPU Boost Frequency: 2520 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 448.0 GB/s
+ VRAM Capacity: 8 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 128 bit
+ Render Output Unit Count: 48
+ Texture Mapping Unit Count: 144
+ Shader Processor Count: 4608
+ Die Size: unknown
+ GPU: GB206
+ GPU Variant: GB206
+ TDP: 170 W
+ FP32 Compute: 23.22 TFLOPS
+ FP64 Compute: 362.9 GFLOPS (1:64)
+ Slot Width: Dual-slot
+ Outputs:
+ - 1x HDMI 2.1b
+ - 3x DisplayPort 2.1b
+ Power Connectors: 1x 16-pin
+ Ray Tracing Cores: 36
+ Tensor Cores: 144
diff --git a/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5070-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5070-Mobile.yaml
new file mode 100644
index 000000000..5290dcdd0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5070-Mobile.yaml
@@ -0,0 +1,74 @@
+name: GeForce-RTX-5070-Mobile
+humanName: GeForce RTX 5070 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:2:2
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) YUV 4:2:2
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.264 (AVCHD) 4:2:0 10 Bit
+ - H.264 (AVCHD) 4:2:2 8 Bit
+ - H.264 (AVCHD) 4:2:2 10 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:2:2 8 Bit
+ - H.265 (HEVC) 4:2:2 10 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Consumer
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '144'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: '2025'
+ GPU Base Frequency: 2235 MHz
+ GPU Boost Frequency: 2520 MHz
+ VRAM Frequency: 2000 MHz
+ VRAM Bandwidth: 512.0 GB/s
+ VRAM Capacity: 8 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 128 bit
+ Render Output Unit Count: 48
+ Texture Mapping Unit Count: 144
+ Shader Processor Count: 4608
+ Die Size: unknown
+ GPU: GB206
+ GPU Variant: GB206
+ TDP: 50 W
+ FP32 Compute: 23.22 TFLOPS
+ FP64 Compute: 362.9 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/Nvidia/Blackwell-2.0/GeForce-RTX-5070-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5070-Ti-Mobile.yaml
new file mode 100644
index 000000000..a88f2a039
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5070-Ti-Mobile.yaml
@@ -0,0 +1,74 @@
+name: GeForce-RTX-5070-Ti-Mobile
+humanName: GeForce RTX 5070 Ti Mobile
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:2:2
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) YUV 4:2:2
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.264 (AVCHD) 4:2:0 10 Bit
+ - H.264 (AVCHD) 4:2:2 8 Bit
+ - H.264 (AVCHD) 4:2:2 10 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:2:2 8 Bit
+ - H.265 (HEVC) 4:2:2 10 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Consumer
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '184'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: '2025'
+ GPU Base Frequency: 2235 MHz
+ GPU Boost Frequency: 2520 MHz
+ VRAM Frequency: 2000 MHz
+ VRAM Bandwidth: 768.0 GB/s
+ VRAM Capacity: 12 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 192 bit
+ Render Output Unit Count: 64
+ Texture Mapping Unit Count: 184
+ Shader Processor Count: 5888
+ Die Size: 263 mm²
+ GPU: GB205
+ GPU Variant: GB205
+ TDP: 60 W
+ FP32 Compute: 29.68 TFLOPS
+ FP64 Compute: 463.7 GFLOPS (1:64)
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Ray Tracing Cores: 46
+ Tensor Cores: 184
diff --git a/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5070-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5070-Ti.yaml
new file mode 100644
index 000000000..7726851ca
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5070-Ti.yaml
@@ -0,0 +1,78 @@
+name: GeForce-RTX-5070-Ti
+humanName: GeForce RTX 5070 Ti
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:2:2
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) YUV 4:2:2
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.264 (AVCHD) 4:2:0 10 Bit
+ - H.264 (AVCHD) 4:2:2 8 Bit
+ - H.264 (AVCHD) 4:2:2 10 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:2:2 8 Bit
+ - H.265 (HEVC) 4:2:2 10 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '280'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: '2025-02-20'
+ GPU Base Frequency: 2295 MHz
+ GPU Boost Frequency: 2452 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 896.0 GB/s
+ VRAM Capacity: 16 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 256 bit
+ Render Output Unit Count: 96
+ Texture Mapping Unit Count: 280
+ Shader Processor Count: 8960
+ Die Size: 378 mm²
+ GPU: GB203
+ GPU Variant: GB203-300-A1
+ TDP: 300 W
+ FP32 Compute: 43.94 TFLOPS
+ FP64 Compute: 686.6 GFLOPS (1:64)
+ Slot Width: Dual-slot
+ Outputs:
+ - 1x HDMI 2.1b
+ - 3x DisplayPort 2.1b
+ Power Connectors: 1x 16-pin
+ Length: 304 mm
+ Width: 137 mm
+ Height: 48 mm
+ Ray Tracing Cores: 70
+ Tensor Cores: 280
diff --git a/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5070.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5070.yaml
new file mode 100644
index 000000000..1bc3c14bf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5070.yaml
@@ -0,0 +1,78 @@
+name: GeForce-RTX-5070
+humanName: GeForce RTX 5070
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:2:2
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) YUV 4:2:2
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.264 (AVCHD) 4:2:0 10 Bit
+ - H.264 (AVCHD) 4:2:2 8 Bit
+ - H.264 (AVCHD) 4:2:2 10 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:2:2 8 Bit
+ - H.265 (HEVC) 4:2:2 10 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '192'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: '2025-03-04'
+ GPU Base Frequency: 2325 MHz
+ GPU Boost Frequency: 2512 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 672.0 GB/s
+ VRAM Capacity: 12 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 192 bit
+ Render Output Unit Count: 80
+ Texture Mapping Unit Count: 192
+ Shader Processor Count: 6144
+ Die Size: 263 mm²
+ GPU: GB205
+ GPU Variant: GB205-300-A1
+ TDP: 250 W
+ FP32 Compute: 30.87 TFLOPS
+ FP64 Compute: 482.3 GFLOPS (1:64)
+ Slot Width: Dual-slot
+ Outputs:
+ - 1x HDMI 2.1b
+ - 3x DisplayPort 2.1b
+ Power Connectors: 1x 16-pin
+ Length: 245 mm
+ Width: 115 mm
+ Height: 40 mm
+ Ray Tracing Cores: 48
+ Tensor Cores: 192
diff --git a/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5080-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5080-Mobile.yaml
new file mode 100644
index 000000000..908b86939
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5080-Mobile.yaml
@@ -0,0 +1,73 @@
+name: GeForce-RTX-5080-Mobile
+humanName: GeForce RTX 5080 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:2:2
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) YUV 4:2:2
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.264 (AVCHD) 4:2:0 10 Bit
+ - H.264 (AVCHD) 4:2:2 8 Bit
+ - H.264 (AVCHD) 4:2:2 10 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:2:2 8 Bit
+ - H.265 (HEVC) 4:2:2 10 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Consumer
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '256'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: '2025'
+ GPU Base Frequency: 975 MHz
+ GPU Boost Frequency: 1500 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 896.0 GB/s
+ VRAM Capacity: 16 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 256 bit
+ Render Output Unit Count: 96
+ Texture Mapping Unit Count: 256
+ Shader Processor Count: 8192
+ Die Size: 378 mm²
+ GPU: GB203
+ TDP: 80 W
+ FP32 Compute: 24.58 TFLOPS
+ FP64 Compute: 384.0 GFLOPS (1:64)
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Ray Tracing Cores: 64
+ Tensor Cores: 256
diff --git a/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5080.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5080.yaml
new file mode 100644
index 000000000..1fe7d2ebb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5080.yaml
@@ -0,0 +1,78 @@
+name: GeForce-RTX-5080
+humanName: GeForce RTX 5080
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:2:2
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) YUV 4:2:2
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.264 (AVCHD) 4:2:0 10 Bit
+ - H.264 (AVCHD) 4:2:2 8 Bit
+ - H.264 (AVCHD) 4:2:2 10 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:2:2 8 Bit
+ - H.265 (HEVC) 4:2:2 10 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '336'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: '2025-01-30'
+ GPU Base Frequency: 2295 MHz
+ GPU Boost Frequency: 2617 MHz
+ VRAM Frequency: 1875 MHz
+ VRAM Bandwidth: 960.0 GB/s
+ VRAM Capacity: 16 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 256 bit
+ Render Output Unit Count: 112
+ Texture Mapping Unit Count: 336
+ Shader Processor Count: 10752
+ Die Size: 378 mm²
+ GPU: GB203
+ GPU Variant: GB203-400-A1
+ TDP: 360 W
+ FP32 Compute: 56.28 TFLOPS
+ FP64 Compute: 879.3 GFLOPS (1:64)
+ Slot Width: Dual-slot
+ Outputs:
+ - 1x HDMI 2.1b
+ - 3x DisplayPort 2.1b
+ Power Connectors: 1x 16-pin
+ Length: 304 mm
+ Width: 137 mm
+ Height: 40 mm
+ Ray Tracing Cores: 84
+ Tensor Cores: 336
diff --git a/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5090-D.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5090-D.yaml
new file mode 100644
index 000000000..a393a243c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5090-D.yaml
@@ -0,0 +1,42 @@
+name: GeForce-RTX-5090-D
+humanName: GeForce RTX 5090 D
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '680'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: '2025-01-30'
+ GPU Base Frequency: 2017 MHz
+ GPU Boost Frequency: 2407 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 1.79 TB/s
+ VRAM Capacity: 32 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 512 bit
+ Render Output Unit Count: 176
+ Texture Mapping Unit Count: 680
+ Shader Processor Count: 21760
+ Die Size: 750 mm²
+ GPU: GB202
+ TDP: 575 W
+ FP32 Compute: 104.8 TFLOPS
+ FP64 Compute: 1.637 TFLOPS (1:64)
+ Slot Width: Dual-slot
+ Outputs:
+ - 1x HDMI 2.1b
+ - 3x DisplayPort 2.1b
+ Power Connectors: 1x 16-pin
+ Length: 304 mm
+ Width: 137 mm
+ Height: 48 mm
+ Ray Tracing Cores: 170
+ Tensor Cores: 680
diff --git a/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5090-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5090-Mobile.yaml
new file mode 100644
index 000000000..2c4232081
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5090-Mobile.yaml
@@ -0,0 +1,73 @@
+name: GeForce-RTX-5090-Mobile
+humanName: GeForce RTX 5090 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:2:2
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) YUV 4:2:2
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.264 (AVCHD) 4:2:0 10 Bit
+ - H.264 (AVCHD) 4:2:2 8 Bit
+ - H.264 (AVCHD) 4:2:2 10 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:2:2 8 Bit
+ - H.265 (HEVC) 4:2:2 10 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Consumer
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '328'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: '2025'
+ GPU Base Frequency: 990 MHz
+ GPU Boost Frequency: 1515 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 896.0 GB/s
+ VRAM Capacity: 24 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 256 bit
+ Render Output Unit Count: 112
+ Texture Mapping Unit Count: 328
+ Shader Processor Count: 10496
+ Die Size: 378 mm²
+ GPU: GB203
+ TDP: 95 W
+ FP32 Compute: 31.80 TFLOPS
+ FP64 Compute: 496.9 GFLOPS (1:64)
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Ray Tracing Cores: 82
+ Tensor Cores: 328
diff --git a/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5090.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5090.yaml
new file mode 100644
index 000000000..85c02c630
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/GeForce-RTX-5090.yaml
@@ -0,0 +1,78 @@
+name: GeForce-RTX-5090
+humanName: GeForce RTX 5090
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:2:2
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) YUV 4:2:2
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.264 (AVCHD) 4:2:0 10 Bit
+ - H.264 (AVCHD) 4:2:2 8 Bit
+ - H.264 (AVCHD) 4:2:2 10 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:2:2 8 Bit
+ - H.265 (HEVC) 4:2:2 10 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '680'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: '2025-01-30'
+ GPU Base Frequency: 2017 MHz
+ GPU Boost Frequency: 2407 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 1.79 TB/s
+ VRAM Capacity: 32 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 512 bit
+ Render Output Unit Count: 176
+ Texture Mapping Unit Count: 680
+ Shader Processor Count: 21760
+ Die Size: 750 mm²
+ GPU: GB202
+ GPU Variant: GB202-300-A1
+ TDP: 575 W
+ FP32 Compute: 104.8 TFLOPS
+ FP64 Compute: 1.637 TFLOPS (1:64)
+ Slot Width: Dual-slot
+ Outputs:
+ - 1x HDMI 2.1b
+ - 3x DisplayPort 2.1b
+ Power Connectors: 1x 16-pin
+ Length: 304 mm
+ Width: 137 mm
+ Height: 40 mm
+ Ray Tracing Cores: 170
+ Tensor Cores: 680
diff --git a/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-1000-Blackwell-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-1000-Blackwell-Mobile.yaml
new file mode 100644
index 000000000..e6257acd5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-1000-Blackwell-Mobile.yaml
@@ -0,0 +1,39 @@
+name: RTX-PRO-1000-Blackwell-Mobile
+humanName: RTX PRO 1000 Blackwell Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '80'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: 'Unknown'
+ GPU Base Frequency: 2235 MHz
+ GPU Boost Frequency: 2520 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 448.0 GB/s
+ VRAM Capacity: 8 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 128 bit
+ Render Output Unit Count: 32
+ Texture Mapping Unit Count: 80
+ Shader Processor Count: 2560
+ Die Size: unknown
+ GPU: GB207
+ GPU Variant: GB207
+ TDP: 35 W
+ FP32 Compute: 12.90 TFLOPS
+ FP64 Compute: 201.6 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/Nvidia/Blackwell-2.0/RTX-PRO-2000-Blackwell-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-2000-Blackwell-Mobile.yaml
new file mode 100644
index 000000000..c0fb170ab
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-2000-Blackwell-Mobile.yaml
@@ -0,0 +1,39 @@
+name: RTX-PRO-2000-Blackwell-Mobile
+humanName: RTX PRO 2000 Blackwell Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '104'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: 'Unknown'
+ GPU Base Frequency: 952 MHz
+ GPU Boost Frequency: 1455 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 448.0 GB/s
+ VRAM Capacity: 8 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 128 bit
+ Render Output Unit Count: 32
+ Texture Mapping Unit Count: 104
+ Shader Processor Count: 3328
+ Die Size: 181 mm²
+ GPU: GB206
+ GPU Variant: GB206
+ TDP: 45 W
+ FP32 Compute: 9.684 TFLOPS
+ FP64 Compute: 151.3 GFLOPS (1:64)
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Ray Tracing Cores: 26
+ Tensor Cores: 104
diff --git a/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-3000-Blackwell-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-3000-Blackwell-Mobile.yaml
new file mode 100644
index 000000000..6797d0dd9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-3000-Blackwell-Mobile.yaml
@@ -0,0 +1,39 @@
+name: RTX-PRO-3000-Blackwell-Mobile
+humanName: RTX PRO 3000 Blackwell Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '184'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: 'Unknown'
+ GPU Base Frequency: 847 MHz
+ GPU Boost Frequency: 1447 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 672.0 GB/s
+ VRAM Capacity: 12 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 192 bit
+ Render Output Unit Count: 80
+ Texture Mapping Unit Count: 184
+ Shader Processor Count: 5888
+ Die Size: 263 mm²
+ GPU: GB205
+ GPU Variant: GB205
+ TDP: 60 W
+ FP32 Compute: 17.04 TFLOPS
+ FP64 Compute: 266.2 GFLOPS (1:64)
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Ray Tracing Cores: 46
+ Tensor Cores: 184
diff --git a/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-4000-Blackwell-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-4000-Blackwell-Mobile.yaml
new file mode 100644
index 000000000..7f246f0ca
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-4000-Blackwell-Mobile.yaml
@@ -0,0 +1,38 @@
+name: RTX-PRO-4000-Blackwell-Mobile
+humanName: RTX PRO 4000 Blackwell Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '240'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: 'Unknown'
+ GPU Base Frequency: 975 MHz
+ GPU Boost Frequency: 1500 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 896.0 GB/s
+ VRAM Capacity: 16 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 256 bit
+ Render Output Unit Count: 96
+ Texture Mapping Unit Count: 240
+ Shader Processor Count: 7680
+ Die Size: 378 mm²
+ GPU: GB203
+ TDP: 80 W
+ FP32 Compute: 23.04 TFLOPS
+ FP64 Compute: 360.0 GFLOPS (1:64)
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Ray Tracing Cores: 60
+ Tensor Cores: 240
diff --git a/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-4000-Blackwell.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-4000-Blackwell.yaml
new file mode 100644
index 000000000..90b5697ca
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-4000-Blackwell.yaml
@@ -0,0 +1,40 @@
+name: RTX-PRO-4000-Blackwell
+humanName: RTX PRO 4000 Blackwell
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '280'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: '2025-03-18'
+ GPU Base Frequency: 1590 MHz
+ GPU Boost Frequency: 2617 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 672.0 GB/s
+ VRAM Capacity: 24 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 192 bit
+ Render Output Unit Count: 96
+ Texture Mapping Unit Count: 280
+ Shader Processor Count: 8960
+ Die Size: 378 mm²
+ GPU: GB203
+ TDP: 140 W
+ FP32 Compute: 46.90 TFLOPS
+ FP64 Compute: 732.8 GFLOPS (1:64)
+ Slot Width: Single-slot
+ Outputs: 4x DisplayPort 2.1b
+ Power Connectors: 1x 16-pin
+ Length: 241 mm
+ Width: 111 mm
+ Height: 20 mm
+ Ray Tracing Cores: 70
+ Tensor Cores: 280
diff --git a/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-4500-Blackwell.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-4500-Blackwell.yaml
new file mode 100644
index 000000000..d0de0e252
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-4500-Blackwell.yaml
@@ -0,0 +1,40 @@
+name: RTX-PRO-4500-Blackwell
+humanName: RTX PRO 4500 Blackwell
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '328'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: '2025-03-18'
+ GPU Base Frequency: 1590 MHz
+ GPU Boost Frequency: 2617 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 896.0 GB/s
+ VRAM Capacity: 32 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 256 bit
+ Render Output Unit Count: 112
+ Texture Mapping Unit Count: 328
+ Shader Processor Count: 10496
+ Die Size: 378 mm²
+ GPU: GB203
+ TDP: 200 W
+ FP32 Compute: 54.94 TFLOPS
+ FP64 Compute: 858.4 GFLOPS (1:64)
+ Slot Width: Dual-slot
+ Outputs: 4x DisplayPort 2.1b
+ Power Connectors: 1x 16-pin
+ Length: 267 mm
+ Width: 111 mm
+ Height: 40 mm
+ Ray Tracing Cores: 82
+ Tensor Cores: 328
diff --git a/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-500-Blackwell-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-500-Blackwell-Mobile.yaml
new file mode 100644
index 000000000..9d0511cf0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-500-Blackwell-Mobile.yaml
@@ -0,0 +1,38 @@
+name: RTX-PRO-500-Blackwell-Mobile
+humanName: RTX PRO 500 Blackwell Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '56'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: 'Unknown'
+ GPU Base Frequency: 2235 MHz
+ GPU Boost Frequency: 2520 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 336.0 GB/s
+ VRAM Capacity: 6 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 96 bit
+ Render Output Unit Count: 24
+ Texture Mapping Unit Count: 56
+ Shader Processor Count: 1792
+ Die Size: unknown
+ GPU: GB207
+ 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: 14
+ Tensor Cores: 56
diff --git a/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-5000-Blackwell-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-5000-Blackwell-Mobile.yaml
new file mode 100644
index 000000000..1daae76c7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-5000-Blackwell-Mobile.yaml
@@ -0,0 +1,38 @@
+name: RTX-PRO-5000-Blackwell-Mobile
+humanName: RTX PRO 5000 Blackwell Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '328'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: 'Unknown'
+ GPU Base Frequency: 990 MHz
+ GPU Boost Frequency: 1515 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 896.0 GB/s
+ VRAM Capacity: 24 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 256 bit
+ Render Output Unit Count: 112
+ Texture Mapping Unit Count: 328
+ Shader Processor Count: 10496
+ Die Size: 378 mm²
+ GPU: GB203
+ TDP: 95 W
+ FP32 Compute: 31.80 TFLOPS
+ FP64 Compute: 496.9 GFLOPS (1:64)
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Ray Tracing Cores: 82
+ Tensor Cores: 328
diff --git a/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-5000-Blackwell.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-5000-Blackwell.yaml
new file mode 100644
index 000000000..777290276
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-5000-Blackwell.yaml
@@ -0,0 +1,40 @@
+name: RTX-PRO-5000-Blackwell
+humanName: RTX PRO 5000 Blackwell
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '440'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: '2025-03-18'
+ GPU Base Frequency: 1590 MHz
+ GPU Boost Frequency: 2617 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 1.34 TB/s
+ VRAM Capacity: 48 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 384 bit
+ Render Output Unit Count: 176
+ Texture Mapping Unit Count: 440
+ Shader Processor Count: 14080
+ Die Size: 750 mm²
+ GPU: GB202
+ TDP: 300 W
+ FP32 Compute: 73.69 TFLOPS
+ FP64 Compute: 1,151 GFLOPS (1:64)
+ Slot Width: Dual-slot
+ Outputs: 4x DisplayPort 2.1b
+ Power Connectors: 1x 16-pin
+ Length: 267 mm
+ Width: 111 mm
+ Height: 40 mm
+ Ray Tracing Cores: 110
+ Tensor Cores: 440
diff --git a/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-6000-Blackwell-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-6000-Blackwell-Max-Q.yaml
new file mode 100644
index 000000000..0454ed167
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-6000-Blackwell-Max-Q.yaml
@@ -0,0 +1,41 @@
+name: RTX-PRO-6000-Blackwell-Max-Q
+humanName: RTX PRO 6000 Blackwell Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '752'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: '2025-03-18'
+ GPU Base Frequency: 1590 MHz
+ GPU Boost Frequency: 2288 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 1.79 TB/s
+ VRAM Capacity: 96 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 512 bit
+ Render Output Unit Count: 192
+ Texture Mapping Unit Count: 752
+ Shader Processor Count: 24064
+ Die Size: 750 mm²
+ GPU: GB202
+ TDP: 300 W
+ FP32 Compute: 110.1 TFLOPS
+ FP64 Compute: 1.721 TFLOPS (1:64)
+ Slot Width: Dual-slot
+ Outputs: 4x DisplayPort 2.1b
+ Power Connectors: 1x 16-pin
+ Length: 267 mm
+ Width: 111 mm
+ Height: 40 mm
+ Ray Tracing Cores: 188
+ Tensor Cores: 752
diff --git a/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-6000-Blackwell.yaml b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-6000-Blackwell.yaml
new file mode 100644
index 000000000..c94f96a1e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Blackwell-2.0/RTX-PRO-6000-Blackwell.yaml
@@ -0,0 +1,40 @@
+name: RTX-PRO-6000-Blackwell
+humanName: RTX PRO 6000 Blackwell
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '752'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: '2025-03-18'
+ GPU Base Frequency: 1590 MHz
+ GPU Boost Frequency: 2617 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 1.79 TB/s
+ VRAM Capacity: 96 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 512 bit
+ Render Output Unit Count: 192
+ Texture Mapping Unit Count: 752
+ Shader Processor Count: 24064
+ Die Size: 750 mm²
+ GPU: GB202
+ TDP: 600 W
+ FP32 Compute: 126.0 TFLOPS
+ FP64 Compute: 1.968 TFLOPS (1:64)
+ Slot Width: Dual-slot
+ Outputs: 4x DisplayPort 2.1b
+ Power Connectors: 1x 16-pin
+ Length: 304 mm
+ Width: 137 mm
+ Height: 40 mm
+ Ray Tracing Cores: 188
+ Tensor Cores: 752
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius.yaml
new file mode 100644
index 000000000..8107a06d9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius.yaml
@@ -0,0 +1,71 @@
+name: Celsius
+humanName: Celsius
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 150-220 nm
+ DirectX Support: '7.0'
+ Vulkan Support: 'N/A'
+ Release Date: '1999'
+ Manufacturer: Nvidia
+sections:
+ - header: GeForce
+ members:
+ - GeForce-PCX-4300
+ - GeForce-6200-AGP
+ - GeForce2-Go-100
+ - GeForce-256-SDR
+ - GeForce-256-DDR
+ - GeForce4-MX-4000-Rev.-2
+ - GeForce4-MX-4000-PCI
+ - GeForce4-MX-4000
+ - GeForce4-MX-440-SE
+ - GeForce4-MX-440-8x
+ - GeForce4-MX-440-Mac-Edition
+ - GeForce4-MX-440
+ - GeForce4-MX-420-PCI
+ - GeForce4-MX-420
+ - GeForce4-MX-+-nForce2
+ - GeForce4-488-Go
+ - GeForce4-460-Go
+ - GeForce4-448-Go
+ - GeForce4-440-Go
+ - GeForce4-420-Go
+ - GeForce4-410-Go
+ - GeForce2-Ultra
+ - GeForce2-Ti
+ - GeForce2-PRO
+ - GeForce2-MX-PCI
+ - GeForce2-MX-DH-Pro-TV-PCI
+ - GeForce2-MX-DH-Pro-TV
+ - GeForce2-MX-400-PCI
+ - GeForce2-MX-400
+ - GeForce2-MX-200-PCI
+ - GeForce2-MX-200-LP
+ - GeForce2-MX-200
+ - GeForce2-MX-+-nForce-420
+ - GeForce2-MX-+-nForce-220
+ - GeForce2-MX
+ - GeForce2-GTS-PRO
+ - GeForce2-GTS
+ - GeForce2-Go-200
+ - GeForce2-Go
+ - header: Quadro
+ members:
+ - 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/Nvidia/Celsius/GeForce-256-DDR.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-DDR.yaml
new file mode 100644
index 000000000..cf6b3ff20
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-DDR.yaml
@@ -0,0 +1,32 @@
+name: GeForce-256-DDR
+humanName: GeForce 256 DDR
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 120 MHz
+ VRAM Frequency: 150 MHz
+ VRAM Bandwidth: 4.800 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-SDR.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-SDR.yaml
new file mode 100644
index 000000000..9e5b0e32d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-256-SDR.yaml
@@ -0,0 +1,32 @@
+name: GeForce-256-SDR
+humanName: GeForce 256 SDR
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 120 MHz
+ VRAM Frequency: 143 MHz
+ VRAM Bandwidth: 1.144 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-6200-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-6200-AGP.yaml
new file mode 100644
index 000000000..dd2ac8faf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-6200-AGP.yaml
@@ -0,0 +1,33 @@
+name: GeForce-6200-AGP
+humanName: GeForce 6200 AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 230 MHz
+ VRAM Frequency: 66 MHz
+ VRAM Bandwidth: 1.056 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VGA1x S-Video
+ Power Connectors: None
+ Length: 168 mm
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-PCX-4300.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-PCX-4300.yaml
new file mode 100644
index 000000000..f71e3daa3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce-PCX-4300.yaml
@@ -0,0 +1,34 @@
+name: GeForce-PCX-4300
+humanName: GeForce PCX 4300
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS-PRO.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS-PRO.yaml
new file mode 100644
index 000000000..81c7f6f55
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS-PRO.yaml
@@ -0,0 +1,33 @@
+name: GeForce2-GTS-PRO
+humanName: GeForce2 GTS PRO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA2x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS.yaml
new file mode 100644
index 000000000..373491b27
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-GTS.yaml
@@ -0,0 +1,33 @@
+name: GeForce2-GTS
+humanName: GeForce2 GTS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 5.312 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-100.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-100.yaml
new file mode 100644
index 000000000..b31cc49b8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-100.yaml
@@ -0,0 +1,32 @@
+name: GeForce2-Go-100
+humanName: GeForce2 Go 100
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 125 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 1.328 GB/s
+ VRAM Capacity: 16 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-200.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-200.yaml
new file mode 100644
index 000000000..04717d08e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go-200.yaml
@@ -0,0 +1,32 @@
+name: GeForce2-Go-200
+humanName: GeForce2 Go 200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 143 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go.yaml
new file mode 100644
index 000000000..b7e262b36
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Go.yaml
@@ -0,0 +1,32 @@
+name: GeForce2-Go
+humanName: GeForce2 Go
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 143 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-+-nForce-220.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-+-nForce-220.yaml
new file mode 100644
index 000000000..0f0fa1f68
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-+-nForce-220.yaml
@@ -0,0 +1,31 @@
+name: GeForce2-MX-+-nForce-220
+humanName: GeForce2 MX + nForce 220
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 175 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: 4
+ Shader Processor Count: 0
+ Die Size: 65 mm²
+ GPU: Crush11
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-+-nForce-420.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-+-nForce-420.yaml
new file mode 100644
index 000000000..abe481e8a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-+-nForce-420.yaml
@@ -0,0 +1,31 @@
+name: GeForce2-MX-+-nForce-420
+humanName: GeForce2 MX + nForce 420
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 175 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: 4
+ Shader Processor Count: 0
+ Die Size: 65 mm²
+ GPU: Crush11
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-LP.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-LP.yaml
new file mode 100644
index 000000000..233e1be84
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-LP.yaml
@@ -0,0 +1,33 @@
+name: GeForce2-MX-200-LP
+humanName: GeForce2 MX 200 LP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 175 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 1.328 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-PCI.yaml
new file mode 100644
index 000000000..710370014
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200-PCI.yaml
@@ -0,0 +1,33 @@
+name: GeForce2-MX-200-PCI
+humanName: GeForce2 MX 200 PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 175 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 1.328 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200.yaml
new file mode 100644
index 000000000..5b611e9e4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-200.yaml
@@ -0,0 +1,35 @@
+name: GeForce2-MX-200
+humanName: GeForce2 MX 200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 175 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 1.328 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400-PCI.yaml
new file mode 100644
index 000000000..418ad1647
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400-PCI.yaml
@@ -0,0 +1,33 @@
+name: GeForce2-MX-400-PCI
+humanName: GeForce2 MX 400 PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400.yaml
new file mode 100644
index 000000000..be281f29a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-400.yaml
@@ -0,0 +1,35 @@
+name: GeForce2-MX-400
+humanName: GeForce2 MX 400
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..129d73d94
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV-PCI.yaml
@@ -0,0 +1,32 @@
+name: GeForce2-MX-DH-Pro-TV-PCI
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 2x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..2bf42bf3e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-DH-Pro-TV.yaml
@@ -0,0 +1,32 @@
+name: GeForce2-MX-DH-Pro-TV
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 2x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-PCI.yaml
new file mode 100644
index 000000000..4c0de635a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX-PCI.yaml
@@ -0,0 +1,32 @@
+name: GeForce2-MX-PCI
+humanName: GeForce2 MX PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 175 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 1.328 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX.yaml
new file mode 100644
index 000000000..403921eff
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-MX.yaml
@@ -0,0 +1,32 @@
+name: GeForce2-MX
+humanName: GeForce2 MX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 175 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-PRO.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-PRO.yaml
new file mode 100644
index 000000000..8c9401836
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-PRO.yaml
@@ -0,0 +1,34 @@
+name: GeForce2-PRO
+humanName: GeForce2 PRO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Length: 183 mm
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ti.yaml
new file mode 100644
index 000000000..c49e1f724
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ti.yaml
@@ -0,0 +1,34 @@
+name: GeForce2-Ti
+humanName: GeForce2 Ti
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA2x S-Video
+ Power Connectors: None
+ Length: 165 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ultra.yaml
new file mode 100644
index 000000000..a566547cf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce2-Ultra.yaml
@@ -0,0 +1,36 @@
+name: GeForce2-Ultra
+humanName: GeForce2 Ultra
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 230 MHz
+ VRAM Bandwidth: 7.360 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Length: 183 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-410-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-410-Go.yaml
new file mode 100644
index 000000000..0d9e10b82
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-410-Go.yaml
@@ -0,0 +1,32 @@
+name: GeForce4-410-Go
+humanName: GeForce4 410 Go
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 16 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-420-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-420-Go.yaml
new file mode 100644
index 000000000..2378f769b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-420-Go.yaml
@@ -0,0 +1,32 @@
+name: GeForce4-420-Go
+humanName: GeForce4 420 Go
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-440-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-440-Go.yaml
new file mode 100644
index 000000000..2b92f7357
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-440-Go.yaml
@@ -0,0 +1,32 @@
+name: GeForce4-440-Go
+humanName: GeForce4 440 Go
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 220 MHz
+ VRAM Frequency: 220 MHz
+ VRAM Bandwidth: 7.040 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-448-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-448-Go.yaml
new file mode 100644
index 000000000..d8cccaa76
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-448-Go.yaml
@@ -0,0 +1,31 @@
+name: GeForce4-448-Go
+humanName: GeForce4 448 Go
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-460-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-460-Go.yaml
new file mode 100644
index 000000000..8bd4d33f7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-460-Go.yaml
@@ -0,0 +1,32 @@
+name: GeForce4-460-Go
+humanName: GeForce4 460 Go
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-488-Go.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-488-Go.yaml
new file mode 100644
index 000000000..4aef72344
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-488-Go.yaml
@@ -0,0 +1,31 @@
+name: GeForce4-488-Go
+humanName: GeForce4 488 Go
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 275 MHz
+ VRAM Bandwidth: 8.800 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-+-nForce2.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-+-nForce2.yaml
new file mode 100644
index 000000000..348100370
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-+-nForce2.yaml
@@ -0,0 +1,31 @@
+name: GeForce4-MX-+-nForce2
+humanName: GeForce4 MX + nForce2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base 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: 2
+ Texture Mapping Unit Count: 4
+ Shader Processor Count: 0
+ Die Size: 65 mm²
+ GPU: Crush17
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-PCI.yaml
new file mode 100644
index 000000000..51e0c54d5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-PCI.yaml
@@ -0,0 +1,36 @@
+name: GeForce4-MX-4000-PCI
+humanName: GeForce4 MX 4000 PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..93ec71f04
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000-Rev.-2.yaml
@@ -0,0 +1,36 @@
+name: GeForce4-MX-4000-Rev.-2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x VGA
+ - 1x S-Video
+ Power Connectors: None
+ Length: 168 mm
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000.yaml
new file mode 100644
index 000000000..52cb97b42
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-4000.yaml
@@ -0,0 +1,34 @@
+name: GeForce4-MX-4000
+humanName: GeForce4 MX 4000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Length: 168 mm
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420-PCI.yaml
new file mode 100644
index 000000000..84ce0530e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420-PCI.yaml
@@ -0,0 +1,35 @@
+name: GeForce4-MX-420-PCI
+humanName: GeForce4 MX 420 PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 1.328 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x VGA
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420.yaml
new file mode 100644
index 000000000..edac4d9c6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-420.yaml
@@ -0,0 +1,35 @@
+name: GeForce4-MX-420
+humanName: GeForce4 MX 420
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x VGA
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-8x.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-8x.yaml
new file mode 100644
index 000000000..643fbc54c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-8x.yaml
@@ -0,0 +1,35 @@
+name: GeForce4-MX-440-8x
+humanName: GeForce4 MX 440-8x
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 275 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 2.000 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x VGA
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..376ce3cf9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-Mac-Edition.yaml
@@ -0,0 +1,31 @@
+name: GeForce4-MX-440-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ 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
new file mode 100644
index 000000000..4e94c9728
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440-SE.yaml
@@ -0,0 +1,35 @@
+name: GeForce4-MX-440-SE
+humanName: GeForce4 MX 440-SE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 5.312 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x VGA
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440.yaml
new file mode 100644
index 000000000..84584f9a9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/GeForce4-MX-440.yaml
@@ -0,0 +1,35 @@
+name: GeForce4-MX-440
+humanName: GeForce4 MX 440
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 275 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-280-SD.yaml b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-280-SD.yaml
new file mode 100644
index 000000000..a016cb9d5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-280-SD.yaml
@@ -0,0 +1,32 @@
+name: Quadro-NVS-280-SD
+humanName: Quadro NVS 280 SD
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ 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
new file mode 100644
index 000000000..b90cf98b1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro-NVS-50-PCI.yaml
@@ -0,0 +1,34 @@
+name: Quadro-NVS-50-PCI
+humanName: Quadro NVS 50 PCI
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 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
new file mode 100644
index 000000000..675193f66
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro.yaml
@@ -0,0 +1,32 @@
+name: Quadro
+humanName: Quadro
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Celsius
+ Lithography: 220 nm
+ DirectX Support: '7.0'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ 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
new file mode 100644
index 000000000..7d177815b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Go.yaml
@@ -0,0 +1,31 @@
+name: Quadro2-Go
+humanName: Quadro2 Go
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 143 MHz
+ VRAM Frequency: 181 MHz
+ VRAM Bandwidth: 2.896 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ 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
new file mode 100644
index 000000000..da07b606e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR-Low-Profile.yaml
@@ -0,0 +1,32 @@
+name: Quadro2-MXR-Low-Profile
+humanName: Quadro2 MXR Low Profile
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 183 MHz
+ VRAM Bandwidth: 2.928 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ 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
new file mode 100644
index 000000000..4072c0069
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-MXR.yaml
@@ -0,0 +1,32 @@
+name: Quadro2-MXR
+humanName: Quadro2 MXR
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 183 MHz
+ VRAM Bandwidth: 2.928 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ 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
new file mode 100644
index 000000000..c9c55992a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro2-Pro.yaml
@@ -0,0 +1,35 @@
+name: Quadro2-Pro
+humanName: Quadro2 Pro
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ - 1x 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
new file mode 100644
index 000000000..facb7a331
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS-PCI.yaml
@@ -0,0 +1,35 @@
+name: Quadro4-100-NVS-PCI
+humanName: Quadro4 100 NVS PCI
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 5.312 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ - 1x 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
new file mode 100644
index 000000000..7a4a5e5f2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-100-NVS.yaml
@@ -0,0 +1,32 @@
+name: Quadro4-100-NVS
+humanName: Quadro4 100 NVS
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 5.312 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ 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
new file mode 100644
index 000000000..36c6b5524
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-200-NVS.yaml
@@ -0,0 +1,32 @@
+name: Quadro4-200-NVS
+humanName: Quadro4 200 NVS
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ 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
new file mode 100644
index 000000000..f894845a7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-380-XGL.yaml
@@ -0,0 +1,34 @@
+name: Quadro4-380-XGL
+humanName: Quadro4 380 XGL
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 275 MHz
+ VRAM Frequency: 256 MHz
+ VRAM Bandwidth: 8.192 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ - 1x 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
new file mode 100644
index 000000000..07490ed95
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-400-NVS-PCI.yaml
@@ -0,0 +1,31 @@
+name: Quadro4-400-NVS-PCI
+humanName: Quadro4 400 NVS PCI
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 220 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 5.312 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ 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
new file mode 100644
index 000000000..628e568bf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-Go-GL.yaml
@@ -0,0 +1,31 @@
+name: Quadro4-500-Go-GL
+humanName: Quadro4 500 Go GL
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 220 MHz
+ VRAM Frequency: 220 MHz
+ VRAM Bandwidth: 3.520 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: SDR
+ 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
+ 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
new file mode 100644
index 000000000..e4bc186f7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-500-XGL.yaml
@@ -0,0 +1,33 @@
+name: Quadro4-500-XGL
+humanName: Quadro4 500 XGL
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ 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
new file mode 100644
index 000000000..946fcf271
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-550-XGL.yaml
@@ -0,0 +1,32 @@
+name: Quadro4-550-XGL
+humanName: Quadro4 550 XGL
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 270 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ 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
new file mode 100644
index 000000000..746461c42
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Celsius/Quadro4-580-XGL.yaml
@@ -0,0 +1,31 @@
+name: Quadro4-580-XGL
+humanName: Quadro4 580 XGL
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x LFH60
+ Power Connectors: None
+ Pixel Shaders: 2
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie.yaml
new file mode 100644
index 000000000..9dbf690fe
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie.yaml
@@ -0,0 +1,161 @@
+name: Curie
+humanName: Curie
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 90-130 nm
+ DirectX Support: '9.3'
+ Vulkan Support: 'N/A'
+ Release Date: '2003-12-22'
+ Manufacturer: Nvidia
+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
+ - 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/Nvidia/Curie/GeForce-6100-+-nForce-400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-400.yaml
new file mode 100644
index 000000000..bd51d7aaf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-400.yaml
@@ -0,0 +1,32 @@
+name: GeForce-6100-+-nForce-400
+humanName: GeForce 6100 + nForce 400
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 425 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
+ Shader Processor Count: 0
+ Die Size: unknown
+ GPU: C61
+ GPU Variant: NF-6100-400-N-A2
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-405.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-405.yaml
new file mode 100644
index 000000000..368507589
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-405.yaml
@@ -0,0 +1,32 @@
+name: GeForce-6100-+-nForce-405
+humanName: GeForce 6100 + nForce 405
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 425 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
+ Shader Processor Count: 0
+ Die Size: unknown
+ GPU: C61
+ GPU Variant: NF-6100-405-N-A2
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-420.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-420.yaml
new file mode 100644
index 000000000..9e125e0f3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-420.yaml
@@ -0,0 +1,32 @@
+name: GeForce-6100-+-nForce-420
+humanName: GeForce 6100 + nForce 420
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 425 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
+ Shader Processor Count: 0
+ Die Size: unknown
+ GPU: C61
+ GPU Variant: NF-6100-420-N-A2
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-430.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-430.yaml
new file mode 100644
index 000000000..3e700d6d5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100-+-nForce-430.yaml
@@ -0,0 +1,32 @@
+name: GeForce-6100-+-nForce-430
+humanName: GeForce 6100 + nForce 430
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 425 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
+ Shader Processor Count: 0
+ Die Size: unknown
+ GPU: C61
+ GPU Variant: NF-6100-430-N-A3
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100.yaml
new file mode 100644
index 000000000..c6ce4d428
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6100.yaml
@@ -0,0 +1,31 @@
+name: GeForce-6100
+humanName: GeForce 6100
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 425 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
+ Shader Processor Count: 0
+ Die Size: unknown
+ GPU: C51
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150-LE.yaml
new file mode 100644
index 000000000..32d773781
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150-LE.yaml
@@ -0,0 +1,31 @@
+name: GeForce-6150-LE
+humanName: GeForce 6150 LE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 425 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
+ Shader Processor Count: 0
+ Die Size: unknown
+ GPU: C51
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..b690128a8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150-SE-+-nForce-430.yaml
@@ -0,0 +1,31 @@
+name: GeForce-6150-SE-+-nForce-430
+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'
+ Vulkan Support: 'N/A'
+ 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
+ VRAM Type: System Shared
+ 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
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150.yaml
new file mode 100644
index 000000000..845c97996
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6150.yaml
@@ -0,0 +1,32 @@
+name: GeForce-6150
+humanName: GeForce 6150
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 475 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
+ Shader Processor Count: 0
+ Die Size: unknown
+ GPU: C51
+ GPU Variant: NF-6150-N-A2
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..7ce824e8e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP-512-MB.yaml
@@ -0,0 +1,35 @@
+name: GeForce-6200-LE-AGP-512-MB
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP.yaml
new file mode 100644
index 000000000..a38ee46ad
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-AGP.yaml
@@ -0,0 +1,35 @@
+name: GeForce-6200-LE-AGP
+humanName: GeForce 6200 LE AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 266 MHz
+ VRAM Bandwidth: 4.256 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-PCI.yaml
new file mode 100644
index 000000000..3028a1f04
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE-PCI.yaml
@@ -0,0 +1,35 @@
+name: GeForce-6200-LE-PCI
+humanName: GeForce 6200 LE PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 266 MHz
+ VRAM Bandwidth: 4.256 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Length: 168 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE.yaml
new file mode 100644
index 000000000..e35fec7a5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-LE.yaml
@@ -0,0 +1,34 @@
+name: GeForce-6200-LE
+humanName: GeForce 6200 LE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 266 MHz
+ VRAM Bandwidth: 2.128 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-PCI.yaml
new file mode 100644
index 000000000..e0571169a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-PCI.yaml
@@ -0,0 +1,35 @@
+name: GeForce-6200-PCI
+humanName: GeForce 6200 PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 280 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Length: 168 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-SE-TurboCache.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-SE-TurboCache.yaml
new file mode 100644
index 000000000..a83829b7d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-SE-TurboCache.yaml
@@ -0,0 +1,34 @@
+name: GeForce-6200-SE-TurboCache
+humanName: GeForce 6200 SE TurboCache
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 2.000 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-TurboCache.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-TurboCache.yaml
new file mode 100644
index 000000000..b302ee71a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-TurboCache.yaml
@@ -0,0 +1,34 @@
+name: GeForce-6200-TurboCache
+humanName: GeForce 6200 TurboCache
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 4.000 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Length: 165 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-X2-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-X2-PCI.yaml
new file mode 100644
index 000000000..8a2801c91
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200-X2-PCI.yaml
@@ -0,0 +1,33 @@
+name: GeForce-6200-X2-PCI
+humanName: GeForce 6200 X2 PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 280 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Single-slot
+ Outputs: 2x DMS-59
+ Power Connectors: 1x 6-pin
+ Length: 168 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200.yaml
new file mode 100644
index 000000000..648d1f5ec
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6200.yaml
@@ -0,0 +1,35 @@
+name: GeForce-6200
+humanName: GeForce 6200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 275 MHz
+ VRAM Bandwidth: 8.800 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Length: 190 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6500.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6500.yaml
new file mode 100644
index 000000000..5b2d6a163
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6500.yaml
@@ -0,0 +1,33 @@
+name: GeForce-6500
+humanName: GeForce 6500
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 266 MHz
+ VRAM Bandwidth: 8.512 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-AGP.yaml
new file mode 100644
index 000000000..97caee946
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-AGP.yaml
@@ -0,0 +1,34 @@
+name: GeForce-6600-AGP
+humanName: GeForce 6600 AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-AGP.yaml
new file mode 100644
index 000000000..fdfdfcdce
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-AGP.yaml
@@ -0,0 +1,34 @@
+name: GeForce-6600-GT-AGP
+humanName: GeForce 6600 GT AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 475 MHz
+ VRAM Bandwidth: 15.20 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-Dual.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-Dual.yaml
new file mode 100644
index 000000000..6f4426319
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT-Dual.yaml
@@ -0,0 +1,34 @@
+name: GeForce-6600-GT-Dual
+humanName: GeForce 6600 GT Dual
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 560 MHz
+ VRAM Bandwidth: 17.92 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT.yaml
new file mode 100644
index 000000000..a7c141e90
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-GT.yaml
@@ -0,0 +1,34 @@
+name: GeForce-6600-GT
+humanName: GeForce 6600 GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 16.00 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE-AGP.yaml
new file mode 100644
index 000000000..7598dbe7b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE-AGP.yaml
@@ -0,0 +1,34 @@
+name: GeForce-6600-LE-AGP
+humanName: GeForce 6600 LE AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE.yaml
new file mode 100644
index 000000000..d1693ac80
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-LE.yaml
@@ -0,0 +1,34 @@
+name: GeForce-6600-LE
+humanName: GeForce 6600 LE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-VE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-VE.yaml
new file mode 100644
index 000000000..e70025ebb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600-VE.yaml
@@ -0,0 +1,34 @@
+name: GeForce-6600-VE
+humanName: GeForce 6600 VE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600.yaml
new file mode 100644
index 000000000..29aa1380c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6600.yaml
@@ -0,0 +1,34 @@
+name: GeForce-6600
+humanName: GeForce 6600
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6610-XL.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6610-XL.yaml
new file mode 100644
index 000000000..54740b1a3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6610-XL.yaml
@@ -0,0 +1,34 @@
+name: GeForce-6610-XL
+humanName: GeForce 6610 XL
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6700-XL.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6700-XL.yaml
new file mode 100644
index 000000000..cd84329c1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6700-XL.yaml
@@ -0,0 +1,34 @@
+name: GeForce-6700-XL
+humanName: GeForce 6700 XL
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 525 MHz
+ VRAM Frequency: 550 MHz
+ VRAM Bandwidth: 17.60 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GS.yaml
new file mode 100644
index 000000000..438cf1501
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GS.yaml
@@ -0,0 +1,34 @@
+name: GeForce-6800-GS
+humanName: GeForce 6800 GS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 32.00 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 12
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-DDL.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-DDL.yaml
new file mode 100644
index 000000000..b353e4e14
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-DDL.yaml
@@ -0,0 +1,34 @@
+name: GeForce-6800-GT-DDL
+humanName: GeForce 6800 GT DDL
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 32.00 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 80 W
+ Slot Width: Dual-slot
+ Outputs: 2x DVI
+ Power Connectors: None
+ Length: 305 mm
+ Pixel Shaders: 16
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-Dual.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-Dual.yaml
new file mode 100644
index 000000000..52bacc154
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT-Dual.yaml
@@ -0,0 +1,34 @@
+name: GeForce-6800-GT-Dual
+humanName: GeForce 6800 GT Dual
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 32.00 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 16
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT.yaml
new file mode 100644
index 000000000..85338a4a8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GT.yaml
@@ -0,0 +1,35 @@
+name: GeForce-6800-GT
+humanName: GeForce 6800 GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 16.00 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 16
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GTO.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GTO.yaml
new file mode 100644
index 000000000..8f0f5bb20
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-GTO.yaml
@@ -0,0 +1,33 @@
+name: GeForce-6800-GTO
+humanName: GeForce 6800 GTO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 32.00 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Slot Width: Dual-slot
+ Outputs: 2x DVI
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 12
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-LE.yaml
new file mode 100644
index 000000000..cc6a0b520
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-LE.yaml
@@ -0,0 +1,34 @@
+name: GeForce-6800-LE
+humanName: GeForce 6800 LE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 325 MHz
+ VRAM Frequency: 300 MHz
+ VRAM Bandwidth: 19.20 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra-DDL.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra-DDL.yaml
new file mode 100644
index 000000000..17ed4e9f7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra-DDL.yaml
@@ -0,0 +1,34 @@
+name: GeForce-6800-Ultra-DDL
+humanName: GeForce 6800 Ultra DDL
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 550 MHz
+ VRAM Bandwidth: 35.20 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 100 W
+ Slot Width: Dual-slot
+ Outputs: 2x DVI
+ Power Connectors: None
+ Length: 305 mm
+ Pixel Shaders: 16
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra.yaml
new file mode 100644
index 000000000..0d3dc9495
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-Ultra.yaml
@@ -0,0 +1,36 @@
+name: GeForce-6800-Ultra
+humanName: GeForce 6800 Ultra
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 425 MHz
+ VRAM Frequency: 550 MHz
+ VRAM Bandwidth: 35.20 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 81 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Length: 197 mm
+ Pixel Shaders: 16
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XE.yaml
new file mode 100644
index 000000000..a261d8daf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XE.yaml
@@ -0,0 +1,34 @@
+name: GeForce-6800-XE
+humanName: GeForce 6800 XE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 275 MHz
+ VRAM Frequency: 266 MHz
+ VRAM Bandwidth: 8.512 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XT.yaml
new file mode 100644
index 000000000..07f946cf4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800-XT.yaml
@@ -0,0 +1,34 @@
+name: GeForce-6800-XT
+humanName: GeForce 6800 XT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 266 MHz
+ VRAM Bandwidth: 8.512 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800.yaml
new file mode 100644
index 000000000..c7c9b9d88
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-6800.yaml
@@ -0,0 +1,34 @@
+name: GeForce-6800
+humanName: GeForce 6800
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 325 MHz
+ VRAM Frequency: 350 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 12
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7000M-+-nForce-610M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7000M-+-nForce-610M.yaml
new file mode 100644
index 000000000..49794c277
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7000M-+-nForce-610M.yaml
@@ -0,0 +1,32 @@
+name: GeForce-7000M-+-nForce-610M
+humanName: GeForce 7000M + nForce 610M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 350 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
+ Shader Processor Count: 0
+ Die Size: 81 mm²
+ GPU: C67
+ GPU Variant: MCP67MV-A2
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7025-+-nForce-630a.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7025-+-nForce-630a.yaml
new file mode 100644
index 000000000..98ea78de4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7025-+-nForce-630a.yaml
@@ -0,0 +1,32 @@
+name: GeForce-7025-+-nForce-630a
+humanName: GeForce 7025 + nForce 630a
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 425 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
+ Shader Processor Count: 0
+ Die Size: 81 mm²
+ GPU: C68
+ GPU Variant: NF-7025-630A-A1
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-610i.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-610i.yaml
new file mode 100644
index 000000000..0e9aa4635
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-610i.yaml
@@ -0,0 +1,32 @@
+name: GeForce-7050-+-nForce-610i
+humanName: GeForce 7050 + nForce 610i
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base 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: 2
+ Shader Processor Count: 0
+ Die Size: 81 mm²
+ GPU: C73B
+ GPU Variant: NF-7050-610I-A2
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-620i.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-620i.yaml
new file mode 100644
index 000000000..a0454d00b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-620i.yaml
@@ -0,0 +1,33 @@
+name: GeForce-7050-+-nForce-620i
+humanName: GeForce 7050 + nForce 620i
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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
+ Shader Processor Count: 0
+ Die Size: 81 mm²
+ GPU: C73
+ GPU Variant: NF-7050-620i-A1
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-630a.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-630a.yaml
new file mode 100644
index 000000000..8a33582b5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-630a.yaml
@@ -0,0 +1,32 @@
+name: GeForce-7050-+-nForce-630a
+humanName: GeForce 7050 + nForce 630a
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 425 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
+ Shader Processor Count: 0
+ Die Size: unknown
+ GPU: C61
+ GPU Variant: NF-7025-630A-A1
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-630i.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-630i.yaml
new file mode 100644
index 000000000..2a8a7e5a5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-+-nForce-630i.yaml
@@ -0,0 +1,33 @@
+name: GeForce-7050-+-nForce-630i
+humanName: GeForce 7050 + nForce 630i
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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
+ Shader Processor Count: 0
+ Die Size: 81 mm²
+ GPU: C73
+ GPU Variant: NF-7050-630i-A1
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..ef0296510
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-PV-+-nForce-630a.yaml
@@ -0,0 +1,32 @@
+name: GeForce-7050-PV-+-nForce-630a
+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'
+ Vulkan Support: 'N/A'
+ 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
+ VRAM Type: System Shared
+ 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
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..e881b7e20
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7050-SE-+-nForce-630a.yaml
@@ -0,0 +1,32 @@
+name: GeForce-7050-SE-+-nForce-630a
+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'
+ Vulkan Support: 'N/A'
+ 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
+ VRAM Type: System Shared
+ 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
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-+-nForce-630i.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-+-nForce-630i.yaml
new file mode 100644
index 000000000..abe4b80ba
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-+-nForce-630i.yaml
@@ -0,0 +1,32 @@
+name: GeForce-7100-+-nForce-630i
+humanName: GeForce 7100 + nForce 630i
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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: 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: 2
+ Shader Processor Count: 0
+ Die Size: 81 mm²
+ GPU: C73
+ GPU Variant: NF-7100
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-GS.yaml
new file mode 100644
index 000000000..fb759365c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7100-GS.yaml
@@ -0,0 +1,34 @@
+name: GeForce-7100-GS
+humanName: GeForce 7100 GS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 266 MHz
+ VRAM Bandwidth: 4.256 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7150-+-nForce-630i.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7150-+-nForce-630i.yaml
new file mode 100644
index 000000000..5b86f15b8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7150-+-nForce-630i.yaml
@@ -0,0 +1,32 @@
+name: GeForce-7150-+-nForce-630i
+humanName: GeForce 7150 + nForce 630i
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base 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
+ Shader Processor Count: 0
+ Die Size: 81 mm²
+ GPU: C73
+ GPU Variant: NF-7150-610i-A1
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7150M-+-nForce-630M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7150M-+-nForce-630M.yaml
new file mode 100644
index 000000000..811feeede
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7150M-+-nForce-630M.yaml
@@ -0,0 +1,32 @@
+name: GeForce-7150M-+-nForce-630M
+humanName: GeForce 7150M + nForce 630M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 425 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
+ Shader Processor Count: 0
+ Die Size: 81 mm²
+ GPU: C67
+ GPU Variant: MCP67MV-A2
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7200-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7200-GS.yaml
new file mode 100644
index 000000000..a5aaba9a8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7200-GS.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7200-GS
+humanName: GeForce 7200 GS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 334 MHz
+ VRAM Bandwidth: 5.344 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..0d877dbfe
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS-Low-Profile.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7300-GS-Low-Profile
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: 23 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS.yaml
new file mode 100644
index 000000000..5e2234e91
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GS.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7300-GS
+humanName: GeForce 7300 GS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 266 MHz
+ VRAM Bandwidth: 4.256 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: 23 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-AGP.yaml
new file mode 100644
index 000000000..5ae0ae612
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-AGP.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7300-GT-AGP
+humanName: GeForce 7300 GT AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 325 MHz
+ VRAM Bandwidth: 10.40 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: 24 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..70a4ec477
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT-Mac-Edition.yaml
@@ -0,0 +1,31 @@
+name: GeForce-7300-GT-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 24 W
+ 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
new file mode 100644
index 000000000..ce0f76a8a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-GT.yaml
@@ -0,0 +1,34 @@
+name: GeForce-7300-GT
+humanName: GeForce 7300 GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 325 MHz
+ VRAM Bandwidth: 10.40 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-LE.yaml
new file mode 100644
index 000000000..8aa6a3d5d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-LE.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7300-LE
+humanName: GeForce 7300 LE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 324 MHz
+ VRAM Bandwidth: 5.184 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-SE.yaml
new file mode 100644
index 000000000..45adb3e3f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7300-SE.yaml
@@ -0,0 +1,34 @@
+name: GeForce-7300-SE
+humanName: GeForce 7300 SE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 266 MHz
+ VRAM Bandwidth: 4.256 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7350-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7350-LE.yaml
new file mode 100644
index 000000000..13bdd13ce
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7350-LE.yaml
@@ -0,0 +1,34 @@
+name: GeForce-7350-LE
+humanName: GeForce 7350 LE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7500-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7500-LE.yaml
new file mode 100644
index 000000000..6ea847ae2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7500-LE.yaml
@@ -0,0 +1,34 @@
+name: GeForce-7500-LE
+humanName: GeForce 7500 LE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 475 MHz
+ VRAM Frequency: 405 MHz
+ VRAM Bandwidth: 6.480 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS-AGP.yaml
new file mode 100644
index 000000000..d74cc5614
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS-AGP.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7600-GS-AGP
+humanName: GeForce 7600 GS AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 725 MHz
+ VRAM Bandwidth: 23.20 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 27 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 12
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS.yaml
new file mode 100644
index 000000000..d88044d73
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GS.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7600-GS
+humanName: GeForce 7600 GS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: 27 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 12
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-AGP.yaml
new file mode 100644
index 000000000..b049e7686
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-AGP.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7600-GT-AGP
+humanName: GeForce 7600 GT AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 560 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 40 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 12
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..5cb45eae5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT-Mac-Edition.yaml
@@ -0,0 +1,31 @@
+name: GeForce-7600-GT-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 40 W
+ 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
new file mode 100644
index 000000000..501285b71
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-GT.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7600-GT
+humanName: GeForce 7600 GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 560 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 40 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 12
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-LE.yaml
new file mode 100644
index 000000000..17556f444
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7600-LE.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7600-LE
+humanName: GeForce 7600 LE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7650-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7650-GS.yaml
new file mode 100644
index 000000000..8fe471115
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7650-GS.yaml
@@ -0,0 +1,34 @@
+name: GeForce-7650-GS
+humanName: GeForce 7650 GS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 12
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..6d5068b30
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-20Pipes-AGP.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7800-GS+-20Pipes-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 75 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 20
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..c77d6a5eb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-24Pipes-AGP.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7800-GS+-24Pipes-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 75 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 24
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-AGP.yaml
new file mode 100644
index 000000000..56e2dc495
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS+-AGP.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7800-GS+-AGP
+humanName: GeForce 7800 GS+ AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 375 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 38.40 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 75 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 16
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..bbf0ac9a3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-20Pipes-AGP.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7800-GS-20Pipes-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 75 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 20
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..68fd4a6ba
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-24Pipes-AGP.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7800-GS-24Pipes-AGP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 75 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 24
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-AGP.yaml
new file mode 100644
index 000000000..73487cc6d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GS-AGP.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7800-GS-AGP
+humanName: GeForce 7800 GS AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 375 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 38.40 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 75 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 16
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT-Dual.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT-Dual.yaml
new file mode 100644
index 000000000..7de951f2a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT-Dual.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7800-GT-Dual
+humanName: GeForce 7800 GT Dual
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 32.00 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 120 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 2x VGA1x S-Video
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 20
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT.yaml
new file mode 100644
index 000000000..2da0b93b1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GT.yaml
@@ -0,0 +1,37 @@
+name: GeForce-7800-GT
+humanName: GeForce 7800 GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 32.00 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 65 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Length: 226 mm
+ Width: 111 mm
+ Pixel Shaders: 20
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX-512.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX-512.yaml
new file mode 100644
index 000000000..23f391d55
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX-512.yaml
@@ -0,0 +1,37 @@
+name: GeForce-7800-GTX-512
+humanName: GeForce 7800 GTX 512
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 108 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Length: 228 mm
+ Width: 111 mm
+ Height: 38 mm
+ Pixel Shaders: 24
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX.yaml
new file mode 100644
index 000000000..cdf9a3007
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7800-GTX.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7800-GTX
+humanName: GeForce 7800 GTX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 430 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 38.40 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 86 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Length: 228 mm
+ Pixel Shaders: 24
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS-AGP.yaml
new file mode 100644
index 000000000..5996bcd4b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS-AGP.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7900-GS-AGP
+humanName: GeForce 7900 GS AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 660 MHz
+ VRAM Bandwidth: 42.24 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 65 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 20
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS.yaml
new file mode 100644
index 000000000..303d19fec
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GS.yaml
@@ -0,0 +1,36 @@
+name: GeForce-7900-GS
+humanName: GeForce 7900 GS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 660 MHz
+ VRAM Bandwidth: 42.24 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 49 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Length: 198 mm
+ Pixel Shaders: 20
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GT.yaml
new file mode 100644
index 000000000..5f6b68476
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GT.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7900-GT
+humanName: GeForce 7900 GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 660 MHz
+ VRAM Bandwidth: 42.24 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 48 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 24
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTO.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTO.yaml
new file mode 100644
index 000000000..70c0c4d15
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTO.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7900-GTO
+humanName: GeForce 7900 GTO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 660 MHz
+ VRAM Bandwidth: 42.24 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 81 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 24
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTX.yaml
new file mode 100644
index 000000000..a2bb5e585
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GTX.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7900-GTX
+humanName: GeForce 7900 GTX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 84 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 24
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GX2.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GX2.yaml
new file mode 100644
index 000000000..fb362160d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7900-GX2.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7900-GX2
+humanName: GeForce 7900 GX2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 38.40 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 2x 6-pin
+ Length: 312 mm
+ Pixel Shaders: 24
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT-AGP.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT-AGP.yaml
new file mode 100644
index 000000000..644dccff0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT-AGP.yaml
@@ -0,0 +1,35 @@
+name: GeForce-7950-GT-AGP
+humanName: GeForce 7950 GT AGP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 38.40 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 65 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x Molex
+ Pixel Shaders: 24
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT.yaml
new file mode 100644
index 000000000..03eb9af85
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GT.yaml
@@ -0,0 +1,38 @@
+name: GeForce-7950-GT
+humanName: GeForce 7950 GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 44.80 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: GDDR3
+ 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
+ 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
+ Pixel Shaders: 24
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GX2.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GX2.yaml
new file mode 100644
index 000000000..8217b4e3d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-7950-GX2.yaml
@@ -0,0 +1,37 @@
+name: GeForce-7950-GX2
+humanName: GeForce 7950 GX2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 38.40 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 110 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Length: 229 mm
+ Width: 111 mm
+ Pixel Shaders: 24
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..c76049c43
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6100-+-nForce-Go-430.yaml
@@ -0,0 +1,32 @@
+name: GeForce-Go-6100-+-nForce-Go-430
+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'
+ Vulkan Support: 'N/A'
+ 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
+ VRAM Type: System Shared
+ 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
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 2
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..28d59fbf3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6150-+-nForce-Go-430.yaml
@@ -0,0 +1,32 @@
+name: GeForce-Go-6150-+-nForce-Go-430
+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'
+ Vulkan Support: 'N/A'
+ 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
+ VRAM Type: System Shared
+ 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
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 2
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200-TE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200-TE.yaml
new file mode 100644
index 000000000..416717983
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200-TE.yaml
@@ -0,0 +1,33 @@
+name: GeForce-Go-6200-TE
+humanName: GeForce Go 6200 TE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 300 MHz
+ VRAM Bandwidth: 4.800 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200.yaml
new file mode 100644
index 000000000..c67c539c4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6200.yaml
@@ -0,0 +1,32 @@
+name: GeForce-Go-6200
+humanName: GeForce Go 6200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 300 MHz
+ VRAM Bandwidth: 4.800 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 16 W
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6250.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6250.yaml
new file mode 100644
index 000000000..fa3261b1a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6250.yaml
@@ -0,0 +1,32 @@
+name: GeForce-Go-6250
+humanName: GeForce Go 6250
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 350 MHz
+ VRAM Bandwidth: 5.600 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 10 W
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6400.yaml
new file mode 100644
index 000000000..6ff4116a1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6400.yaml
@@ -0,0 +1,32 @@
+name: GeForce-Go-6400
+humanName: GeForce Go 6400
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 350 MHz
+ VRAM Bandwidth: 5.600 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..e9ca7341a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-NPB-128M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-Go-6600-NPB-128M
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: MXM Module
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-TE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-TE.yaml
new file mode 100644
index 000000000..0dd5c0e44
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600-TE.yaml
@@ -0,0 +1,33 @@
+name: GeForce-Go-6600-TE
+humanName: GeForce Go 6600 TE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 225 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600.yaml
new file mode 100644
index 000000000..8cf33c722
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6600.yaml
@@ -0,0 +1,33 @@
+name: GeForce-Go-6600
+humanName: GeForce Go 6600
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 350 MHz
+ VRAM Bandwidth: 11.20 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: MXM Module
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800-Ultra.yaml
new file mode 100644
index 000000000..3af7ac4db
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800-Ultra.yaml
@@ -0,0 +1,32 @@
+name: GeForce-Go-6800-Ultra
+humanName: GeForce Go 6800 Ultra
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 38.40 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 89 W
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 12
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800.yaml
new file mode 100644
index 000000000..8935f5dc3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-6800.yaml
@@ -0,0 +1,32 @@
+name: GeForce-Go-6800
+humanName: GeForce Go 6800
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 550 MHz
+ VRAM Bandwidth: 35.20 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: MXM Module
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 12
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7200.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7200.yaml
new file mode 100644
index 000000000..6f7e8a484
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7200.yaml
@@ -0,0 +1,32 @@
+name: GeForce-Go-7200
+humanName: GeForce Go 7200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 350 MHz
+ VRAM Bandwidth: 2.800 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300.yaml
new file mode 100644
index 000000000..99912c8cb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300.yaml
@@ -0,0 +1,32 @@
+name: GeForce-Go-7300
+humanName: GeForce Go 7300
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 350 MHz
+ VRAM Bandwidth: 5.600 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300T.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300T.yaml
new file mode 100644
index 000000000..516bdc955
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7300T.yaml
@@ -0,0 +1,32 @@
+name: GeForce-Go-7300T
+humanName: GeForce Go 7300T
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 350 MHz
+ VRAM Bandwidth: 5.600 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400.yaml
new file mode 100644
index 000000000..d75f42be1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400.yaml
@@ -0,0 +1,32 @@
+name: GeForce-Go-7400
+humanName: GeForce Go 7400
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 450 MHz
+ VRAM Bandwidth: 3.600 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400T.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400T.yaml
new file mode 100644
index 000000000..b123abd1a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7400T.yaml
@@ -0,0 +1,32 @@
+name: GeForce-Go-7400T
+humanName: GeForce Go 7400T
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 450 MHz
+ VRAM Bandwidth: 7.200 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7450.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7450.yaml
new file mode 100644
index 000000000..95bb91a6c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7450.yaml
@@ -0,0 +1,31 @@
+name: GeForce-Go-7450
+humanName: GeForce Go 7450
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR2
+ 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
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600-GT.yaml
new file mode 100644
index 000000000..264059af8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600-GT.yaml
@@ -0,0 +1,32 @@
+name: GeForce-Go-7600-GT
+humanName: GeForce Go 7600 GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 19.20 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 12
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600.yaml
new file mode 100644
index 000000000..488a3ff11
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7600.yaml
@@ -0,0 +1,32 @@
+name: GeForce-Go-7600
+humanName: GeForce Go 7600
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 350 MHz
+ VRAM Bandwidth: 11.20 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7700.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7700.yaml
new file mode 100644
index 000000000..92111b940
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7700.yaml
@@ -0,0 +1,32 @@
+name: GeForce-Go-7700
+humanName: GeForce Go 7700
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 16.00 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 12
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800-GTX.yaml
new file mode 100644
index 000000000..6dac56dc3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800-GTX.yaml
@@ -0,0 +1,32 @@
+name: GeForce-Go-7800-GTX
+humanName: GeForce Go 7800 GTX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 440 MHz
+ VRAM Frequency: 550 MHz
+ VRAM Bandwidth: 35.20 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: MXM Module
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 24
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800.yaml
new file mode 100644
index 000000000..b4a39f8e8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7800.yaml
@@ -0,0 +1,31 @@
+name: GeForce-Go-7800
+humanName: GeForce Go 7800
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 550 MHz
+ VRAM Bandwidth: 35.20 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 16
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GS.yaml
new file mode 100644
index 000000000..5f73bc475
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GS.yaml
@@ -0,0 +1,31 @@
+name: GeForce-Go-7900-GS
+humanName: GeForce Go 7900 GS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 375 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 32.00 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: MXM Module
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 20
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GTX.yaml
new file mode 100644
index 000000000..6edc580dc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-GTX.yaml
@@ -0,0 +1,32 @@
+name: GeForce-Go-7900-GTX
+humanName: GeForce Go 7900 GTX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 38.40 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: MXM Module
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 24
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-SE.yaml
new file mode 100644
index 000000000..903dd6079
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7900-SE.yaml
@@ -0,0 +1,31 @@
+name: GeForce-Go-7900-SE
+humanName: GeForce Go 7900 SE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 333 MHz
+ VRAM Bandwidth: 21.31 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 12
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7950-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7950-GTX.yaml
new file mode 100644
index 000000000..e99805392
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/GeForce-Go-7950-GTX.yaml
@@ -0,0 +1,32 @@
+name: GeForce-Go-7950-GTX
+humanName: GeForce Go 7950 GTX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 575 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 44.80 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: MXM Module
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 24
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1400.yaml
new file mode 100644
index 000000000..63b7a150c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1400.yaml
@@ -0,0 +1,36 @@
+name: Quadro-FX-1400
+humanName: Quadro FX 1400
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 300 MHz
+ VRAM Bandwidth: 19.20 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 55 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Width: 111 mm
+ Pixel Shaders: 12
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500.yaml
new file mode 100644
index 000000000..593779ff9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500.yaml
@@ -0,0 +1,37 @@
+name: Quadro-FX-1500
+humanName: Quadro FX 1500
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 325 MHz
+ VRAM Frequency: 625 MHz
+ VRAM Bandwidth: 40.00 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 65 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Length: 173 mm
+ Width: 111 mm
+ Pixel Shaders: 16
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500M.yaml
new file mode 100644
index 000000000..e27bd5659
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-1500M.yaml
@@ -0,0 +1,33 @@
+name: Quadro-FX-1500M
+humanName: Quadro FX 1500M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 375 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 32.00 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 45 W
+ Slot Width: MXM Module
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 20
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-2500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-2500M.yaml
new file mode 100644
index 000000000..55562598e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-2500M.yaml
@@ -0,0 +1,32 @@
+name: Quadro-FX-2500M
+humanName: Quadro FX 2500M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 38.40 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: MXM Module
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 24
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3400.yaml
new file mode 100644
index 000000000..bc924b175
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3400.yaml
@@ -0,0 +1,37 @@
+name: Quadro-FX-3400
+humanName: Quadro FX 3400
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 450 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 101 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Length: 226 mm
+ Width: 111 mm
+ Pixel Shaders: 12
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3450.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3450.yaml
new file mode 100644
index 000000000..b76959164
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3450.yaml
@@ -0,0 +1,37 @@
+name: Quadro-FX-3450
+humanName: Quadro FX 3450
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 425 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 32.00 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 83 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Length: 226 mm
+ Width: 111 mm
+ Pixel Shaders: 12
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350.yaml
new file mode 100644
index 000000000..e52527786
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350.yaml
@@ -0,0 +1,36 @@
+name: Quadro-FX-350
+humanName: Quadro FX 350
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 405 MHz
+ VRAM Bandwidth: 6.480 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ Power Connectors: None
+ Length: 168 mm
+ Width: 111 mm
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500.yaml
new file mode 100644
index 000000000..070dae1b2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500.yaml
@@ -0,0 +1,36 @@
+name: Quadro-FX-3500
+humanName: Quadro FX 3500
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 660 MHz
+ VRAM Bandwidth: 42.24 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Length: 173 mm
+ Width: 111 mm
+ Pixel Shaders: 20
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500M.yaml
new file mode 100644
index 000000000..21a509b05
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-3500M.yaml
@@ -0,0 +1,32 @@
+name: Quadro-FX-3500M
+humanName: Quadro FX 3500M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 575 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 38.40 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: MXM Module
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 24
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350M.yaml
new file mode 100644
index 000000000..75628be01
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-350M.yaml
@@ -0,0 +1,32 @@
+name: Quadro-FX-350M
+humanName: Quadro FX 350M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 450 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 15 W
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000-SDI.yaml
new file mode 100644
index 000000000..28972fa9c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000-SDI.yaml
@@ -0,0 +1,37 @@
+name: Quadro-FX-4000-SDI
+humanName: Quadro FX 4000 SDI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 425 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 32.00 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 150 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 1x DVI
+ - 4x SDI
+ Power Connectors: 1x 6-pin
+ Length: 214 mm
+ Width: 111 mm
+ Pixel Shaders: 12
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000.yaml
new file mode 100644
index 000000000..07dfef834
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4000.yaml
@@ -0,0 +1,37 @@
+name: Quadro-FX-4000
+humanName: Quadro FX 4000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 375 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 32.00 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 142 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 2x Molex
+ Length: 214 mm
+ Width: 111 mm
+ Pixel Shaders: 16
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400.yaml
new file mode 100644
index 000000000..75ecf3499
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400.yaml
@@ -0,0 +1,36 @@
+name: Quadro-FX-4400
+humanName: Quadro FX 4400
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 375 MHz
+ VRAM Frequency: 525 MHz
+ VRAM Bandwidth: 33.60 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 83 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Width: 111 mm
+ Pixel Shaders: 16
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400G.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400G.yaml
new file mode 100644
index 000000000..81a4334e9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4400G.yaml
@@ -0,0 +1,35 @@
+name: Quadro-FX-4400G
+humanName: Quadro FX 4400G
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 375 MHz
+ VRAM Frequency: 525 MHz
+ VRAM Bandwidth: 33.60 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 83 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Pixel Shaders: 16
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-SDI.yaml
new file mode 100644
index 000000000..9f38d655a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-SDI.yaml
@@ -0,0 +1,36 @@
+name: Quadro-FX-4500-SDI
+humanName: Quadro FX 4500 SDI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 430 MHz
+ VRAM Frequency: 525 MHz
+ VRAM Bandwidth: 33.60 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: Triple-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Length: 267 mm
+ Width: 111 mm
+ Pixel Shaders: 24
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-X2.yaml
new file mode 100644
index 000000000..4b417ff8f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500-X2.yaml
@@ -0,0 +1,35 @@
+name: Quadro-FX-4500-X2
+humanName: Quadro FX 4500 X2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 605 MHz
+ VRAM Bandwidth: 38.72 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 145 W
+ Slot Width: Dual-slot
+ Outputs: 4x DVI
+ Power Connectors: 2x 6-pin
+ Length: 305 mm
+ Width: 111 mm
+ Pixel Shaders: 24
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500.yaml
new file mode 100644
index 000000000..6a0c9f468
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-4500.yaml
@@ -0,0 +1,38 @@
+name: Quadro-FX-4500
+humanName: Quadro FX 4500
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 430 MHz
+ VRAM Frequency: 525 MHz
+ VRAM Bandwidth: 33.60 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: GDDR3
+ 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
+ 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
+ Pixel Shaders: 24
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-540.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-540.yaml
new file mode 100644
index 000000000..531698d05
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-540.yaml
@@ -0,0 +1,37 @@
+name: Quadro-FX-540
+humanName: Quadro FX 540
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 25 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Length: 198 mm
+ Width: 111 mm
+ Pixel Shaders: 8
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550.yaml
new file mode 100644
index 000000000..a63d887c7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550.yaml
@@ -0,0 +1,37 @@
+name: Quadro-FX-550
+humanName: Quadro FX 550
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 360 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 30 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Length: 198 mm
+ Width: 111 mm
+ Pixel Shaders: 8
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500-SDI.yaml
new file mode 100644
index 000000000..4368bd508
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500-SDI.yaml
@@ -0,0 +1,36 @@
+name: Quadro-FX-5500-SDI
+humanName: Quadro FX 5500 SDI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 505 MHz
+ VRAM Bandwidth: 32.32 GB/s
+ VRAM Capacity: 1024 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: Triple-slot
+ Outputs:
+ - 3x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Length: 229 mm
+ Width: 111 mm
+ Pixel Shaders: 24
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500.yaml
new file mode 100644
index 000000000..cafae1fff
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-5500.yaml
@@ -0,0 +1,36 @@
+name: Quadro-FX-5500
+humanName: Quadro FX 5500
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 505 MHz
+ VRAM Bandwidth: 32.32 GB/s
+ VRAM Capacity: 1024 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Length: 229 mm
+ Width: 111 mm
+ Pixel Shaders: 24
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550M.yaml
new file mode 100644
index 000000000..a2d742760
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-550M.yaml
@@ -0,0 +1,30 @@
+name: Quadro-FX-550M
+humanName: Quadro FX 550M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 16.00 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR3
+ 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
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 12
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-560.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-560.yaml
new file mode 100644
index 000000000..5dc8046d5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-560.yaml
@@ -0,0 +1,36 @@
+name: Quadro-FX-560
+humanName: Quadro FX 560
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 19.20 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Length: 198 mm
+ Width: 111 mm
+ Pixel Shaders: 12
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go1400.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go1400.yaml
new file mode 100644
index 000000000..c4c2c9d96
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go1400.yaml
@@ -0,0 +1,32 @@
+name: Quadro-FX-Go1400
+humanName: Quadro FX Go1400
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 275 MHz
+ VRAM Frequency: 295 MHz
+ VRAM Bandwidth: 18.88 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: MXM Module
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go540.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go540.yaml
new file mode 100644
index 000000000..db0890fe2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-FX-Go540.yaml
@@ -0,0 +1,33 @@
+name: Quadro-FX-Go540
+humanName: Quadro FX Go540
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 225 MHz
+ VRAM Bandwidth: 7.200 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 25 W
+ Slot Width: MXM Module
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-110M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-110M.yaml
new file mode 100644
index 000000000..6dbe4ff91
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-110M.yaml
@@ -0,0 +1,33 @@
+name: Quadro-NVS-110M
+humanName: Quadro NVS 110M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 300 MHz
+ VRAM Bandwidth: 4.800 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 10 W
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-120M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-120M.yaml
new file mode 100644
index 000000000..2ad60d5f2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-120M.yaml
@@ -0,0 +1,32 @@
+name: Quadro-NVS-120M
+humanName: Quadro NVS 120M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 11.20 GB/s
+ VRAM Capacity: 512 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: MXM Module
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-210S.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-210S.yaml
new file mode 100644
index 000000000..755fb42bd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-210S.yaml
@@ -0,0 +1,31 @@
+name: Quadro-NVS-210S
+humanName: Quadro NVS 210S
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 425 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
+ Shader Processor Count: 0
+ Die Size: unknown
+ GPU: C51
+ TDP: 11 W
+ Slot Width: IGP
+ Outputs: Motherboard Dependent
+ Pixel Shaders: 2
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-285.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-285.yaml
new file mode 100644
index 000000000..0f05f63d9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-285.yaml
@@ -0,0 +1,34 @@
+name: Quadro-NVS-285
+humanName: Quadro NVS 285
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 275 MHz
+ VRAM Frequency: 300 MHz
+ VRAM Bandwidth: 4.800 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: 18 W
+ Slot Width: Single-slot
+ Outputs: 1x DMS-59
+ Power Connectors: None
+ Length: 168 mm
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-300M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-300M.yaml
new file mode 100644
index 000000000..43a63436e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-300M.yaml
@@ -0,0 +1,32 @@
+name: Quadro-NVS-300M
+humanName: Quadro NVS 300M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 16 W
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 8
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..e59f191c5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x1.yaml
@@ -0,0 +1,34 @@
+name: Quadro-NVS-440-PCIe-x1
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 31 W
+ Slot Width: Single-slot
+ Outputs: 2x DMS-59
+ Power Connectors: None
+ Length: 187 mm
+ Pixel Shaders: 8
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..2e5a4c1aa
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-440-PCIe-x16.yaml
@@ -0,0 +1,34 @@
+name: Quadro-NVS-440-PCIe-x16
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 31 W
+ Slot Width: Single-slot
+ Outputs: 2x DMS-59
+ Power Connectors: None
+ Length: 187 mm
+ Pixel Shaders: 8
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-510M.yaml b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-510M.yaml
new file mode 100644
index 000000000..1726b3c44
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-NVS-510M.yaml
@@ -0,0 +1,31 @@
+name: Quadro-NVS-510M
+humanName: Quadro NVS 510M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 19.20 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 24
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..0d9db307f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Curie/Quadro-Plex-1000-Model-II.yaml
@@ -0,0 +1,31 @@
+name: Quadro-Plex-1000-Model-II
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: GDDR3
+ 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
+ Outputs: No outputs
+ Length: 522 mm
+ Pixel Shaders: 24
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit.yaml
new file mode 100644
index 000000000..e543dac08
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit.yaml
@@ -0,0 +1,22 @@
+name: Fahrenheit
+humanName: Fahrenheit
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 250-350 nm
+ DirectX Support: '5.0'
+ Vulkan Support: 'N/A'
+ Release Date: '1998-03-23'
+ Manufacturer: Nvidia
+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/Nvidia/Fahrenheit/Riva-TNT.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT.yaml
new file mode 100644
index 000000000..4acf78352
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT.yaml
@@ -0,0 +1,32 @@
+name: Riva-TNT
+humanName: Riva TNT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 90 MHz
+ VRAM Frequency: 110 MHz
+ VRAM Bandwidth: 1.760 GB/s
+ VRAM Capacity: 16 MiB
+ VRAM Type: SDR
+ 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
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..00bd953fc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta-16.yaml
@@ -0,0 +1,33 @@
+name: Riva-TNT2-M64-Vanta-16
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta.yaml
new file mode 100644
index 000000000..cc93c9acb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64-Vanta.yaml
@@ -0,0 +1,33 @@
+name: Riva-TNT2-M64-Vanta
+humanName: Riva TNT2 M64 Vanta
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 100 MHz
+ VRAM Frequency: 133 MHz
+ VRAM Bandwidth: 1.064 GB/s
+ VRAM Capacity: 16 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64.yaml
new file mode 100644
index 000000000..87cf57f43
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-M64.yaml
@@ -0,0 +1,33 @@
+name: Riva-TNT2-M64
+humanName: Riva TNT2 M64
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 125 MHz
+ VRAM Frequency: 143 MHz
+ VRAM Bandwidth: 1.144 GB/s
+ VRAM Capacity: 16 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-PRO.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-PRO.yaml
new file mode 100644
index 000000000..8afe98bf8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-PRO.yaml
@@ -0,0 +1,33 @@
+name: Riva-TNT2-PRO
+humanName: Riva TNT2 PRO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 143 MHz
+ VRAM Frequency: 167 MHz
+ VRAM Bandwidth: 2.672 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-Ultra.yaml
new file mode 100644
index 000000000..e5dc93327
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2-Ultra.yaml
@@ -0,0 +1,33 @@
+name: Riva-TNT2-Ultra
+humanName: Riva TNT2 Ultra
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 150 MHz
+ VRAM Frequency: 183 MHz
+ VRAM Bandwidth: 2.928 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA2x S-Video
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2.yaml
new file mode 100644
index 000000000..53edd4cfa
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Riva-TNT2.yaml
@@ -0,0 +1,33 @@
+name: Riva-TNT2
+humanName: Riva TNT2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 125 MHz
+ VRAM Frequency: 150 MHz
+ VRAM Bandwidth: 2.400 GB/s
+ VRAM Capacity: 16 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Vanta-LT.yaml b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Vanta-LT.yaml
new file mode 100644
index 000000000..313ba0f17
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fahrenheit/Vanta-LT.yaml
@@ -0,0 +1,33 @@
+name: Vanta-LT
+humanName: Vanta LT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 105 MHz
+ VRAM Frequency: 100 MHz
+ VRAM Bandwidth: 800.0 MB/s
+ VRAM Capacity: 8 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA
+ Power Connectors: None
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0.yaml
new file mode 100644
index 000000000..2d90ac830
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0.yaml
@@ -0,0 +1,80 @@
+name: Fermi-2.0
+humanName: Fermi 2.0
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 40 nm
+ DirectX Support: '11.0'
+ Vulkan Support: 'N/A'
+ Release Date: '2010-11-09'
+ Manufacturer: Nvidia
+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
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-410M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-410M.yaml
new file mode 100644
index 000000000..39b97d87d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-410M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-410M
+humanName: GeForce 410M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 574 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..776109bd5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-510-OEM.yaml
@@ -0,0 +1,34 @@
+name: GeForce-510-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Fermi-2.0/GeForce-605-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-605-OEM.yaml
new file mode 100644
index 000000000..0e12edc02
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-605-OEM.yaml
@@ -0,0 +1,35 @@
+name: GeForce-605-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Fermi-2.0/GeForce-610.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-610.yaml
new file mode 100644
index 000000000..88aaaa581
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-610.yaml
@@ -0,0 +1,34 @@
+name: GeForce-610
+humanName: GeForce 610
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 738 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-610M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-610M.yaml
new file mode 100644
index 000000000..07494ff5d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-610M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-610M
+humanName: GeForce 610M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-620M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-620M.yaml
new file mode 100644
index 000000000..5a41d848d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-620M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-620M
+humanName: GeForce 620M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-705A.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-705A.yaml
new file mode 100644
index 000000000..bee5653d3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-705A.yaml
@@ -0,0 +1,33 @@
+name: GeForce-705A
+humanName: GeForce 705A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 475 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-705M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-705M.yaml
new file mode 100644
index 000000000..eb4df7047
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-705M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-705M
+humanName: GeForce 705M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 738 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-710M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-710M.yaml
new file mode 100644
index 000000000..994cee2de
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-710M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-710M
+humanName: GeForce 710M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 775 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-720A.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-720A.yaml
new file mode 100644
index 000000000..1de9ed088
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-720A.yaml
@@ -0,0 +1,33 @@
+name: GeForce-720A
+humanName: GeForce 720A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 775 MHz
+ VRAM Frequency: 1001 MHz
+ VRAM Bandwidth: 16.02 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-800A.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-800A.yaml
new file mode 100644
index 000000000..ef63ea64b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-800A.yaml
@@ -0,0 +1,33 @@
+name: GeForce-800A
+humanName: GeForce 800A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 475 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-800M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-800M.yaml
new file mode 100644
index 000000000..839d98b9b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-800M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-800M
+humanName: GeForce 800M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 738 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-820A.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-820A.yaml
new file mode 100644
index 000000000..27512e24f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-820A.yaml
@@ -0,0 +1,34 @@
+name: GeForce-820A
+humanName: GeForce 820A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 1001 MHz
+ VRAM Bandwidth: 16.02 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-820M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-820M.yaml
new file mode 100644
index 000000000..c09f63ac1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-820M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-820M
+humanName: GeForce 820M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..f32979ee3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-OEM.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-520-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Fermi-2.0/GeForce-GT-520-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-PCI.yaml
new file mode 100644
index 000000000..adae0ee00
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-PCI.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GT-520-PCI
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..4dd378623
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520-PCIe-x1.yaml
@@ -0,0 +1,36 @@
+name: GeForce-GT-520-PCIe-x1
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..d4c98dfb2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GT-520
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..8e09a67e9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-520MX.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-520MX
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..813dffc73
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-545-OEM.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-545-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Fermi-2.0/GeForce-GT-545.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-545.yaml
new file mode 100644
index 000000000..55a73b9fd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-545.yaml
@@ -0,0 +1,36 @@
+name: GeForce-GT-545
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..69e016418
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-550M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GT-550M
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..85277d20a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-555M-2-GB.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-555M-2-GB
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..e65235a6d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-555M-3-GB.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-555M-3-GB
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..26d734228
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-OEM.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-610-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Fermi-2.0/GeForce-GT-610-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-PCI.yaml
new file mode 100644
index 000000000..84d6b7012
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-PCI.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GT-610-PCI
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..4184dbb35
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610-PCIe-x1.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GT-610-PCIe-x1
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..8f5f9c786
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-610.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GT-610
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..9388cef37
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-620-OEM.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-620-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Fermi-2.0/GeForce-GT-625M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-625M.yaml
new file mode 100644
index 000000000..f047b4af0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-625M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-625M
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..662ca8bdd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-635M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-635M
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..af7c87bcb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-640-OEM-Rebrand.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-640-OEM-Rebrand
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Fermi-2.0/GeForce-GT-645-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-645-OEM.yaml
new file mode 100644
index 000000000..196389339
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-645-OEM.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GT-645-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Fermi-2.0/GeForce-GT-705-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-705-OEM.yaml
new file mode 100644
index 000000000..c41d6deee
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-705-OEM.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-705-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Fermi-2.0/GeForce-GT-710M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-710M.yaml
new file mode 100644
index 000000000..091077cb7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-710M.yaml
@@ -0,0 +1,32 @@
+name: GeForce-GT-710M
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..78006eb8a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-720A.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-720A
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..58897166e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GT-720M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-720M
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..d18e5d0bc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTS-450-Rev.-2.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTS-450-Rev.-2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..bfe530579
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTS-450-Rev.-3.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTS-450-Rev.-3
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..cfaca94d6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-460-SE-v2.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-460-SE-v2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..126d1e18c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-460-v2.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-460-v2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..3652dbffe
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-550-Ti.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-550-Ti
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..d5abc8e8a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-555-OEM.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-555-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Fermi-2.0/GeForce-GTX-560-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-OEM.yaml
new file mode 100644
index 000000000..2b1831ebb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-OEM.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-560-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Fermi-2.0/GeForce-GTX-560-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-SE.yaml
new file mode 100644
index 000000000..8908aa9da
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-SE.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-560-SE
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..4f4c9593b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti-448.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-560-Ti-448
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..d58b6e175
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti-OEM.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTX-560-Ti-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti.yaml
new file mode 100644
index 000000000..ee8675f5e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560-Ti.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-560-Ti
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..2afd8e7b1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-560
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..fe28cfc9d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-560M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTX-560M
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..a8a4ac44d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570-Rev.-2.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-570-Rev.-2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..021c80faf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-570
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..75e9bee3a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-570M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTX-570M
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..e109881ef
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580-Rev.-2.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-580-Rev.-2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..bf1e37476
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580.yaml
@@ -0,0 +1,38 @@
+name: GeForce-GTX-580
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..fbfaf0155
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-580M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTX-580M
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..07e286744
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-590.yaml
@@ -0,0 +1,39 @@
+name: GeForce-GTX-590
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..4e3a26a6b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-670M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTX-670M
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..dfad8eba8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/GeForce-GTX-675M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTX-675M
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-310.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-310.yaml
new file mode 100644
index 000000000..06e1f7296
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-310.yaml
@@ -0,0 +1,35 @@
+name: NVS-310
+humanName: NVS 310
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 523 MHz
+ VRAM Frequency: 875 MHz
+ VRAM Bandwidth: 14.00 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-315.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-315.yaml
new file mode 100644
index 000000000..3b4e2c812
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-315.yaml
@@ -0,0 +1,35 @@
+name: NVS-315
+humanName: NVS 315
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 523 MHz
+ VRAM Frequency: 875 MHz
+ VRAM Bandwidth: 14.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-4200M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-4200M.yaml
new file mode 100644
index 000000000..630738fac
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-4200M.yaml
@@ -0,0 +1,34 @@
+name: NVS-4200M
+humanName: NVS 4200M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 810 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-5200M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-5200M.yaml
new file mode 100644
index 000000000..17f20e735
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/NVS-5200M.yaml
@@ -0,0 +1,34 @@
+name: NVS-5200M
+humanName: NVS 5200M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-5010M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-5010M.yaml
new file mode 100644
index 000000000..e42f039e0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-5010M.yaml
@@ -0,0 +1,33 @@
+name: Quadro-5010M
+humanName: Quadro 5010M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 650 MHz
+ VRAM Bandwidth: 83.20 GB/s
+ VRAM Capacity: 4 GiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-7000.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-7000.yaml
new file mode 100644
index 000000000..cb540fa20
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-7000.yaml
@@ -0,0 +1,37 @@
+name: Quadro-7000
+humanName: Quadro 7000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 651 MHz
+ VRAM Frequency: 851 MHz
+ VRAM Bandwidth: 163.4 GB/s
+ VRAM Capacity: 6 GiB
+ 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
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..165a22db4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi-2.0/Quadro-Plex-7000.yaml
@@ -0,0 +1,34 @@
+name: Quadro-Plex-7000
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi.yaml
new file mode 100644
index 000000000..41c83c2bf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi.yaml
@@ -0,0 +1,69 @@
+name: Fermi
+humanName: Fermi
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 40 nm
+ DirectX Support: '11.0'
+ Vulkan Support: 'N/A'
+ Release Date: '2010-03-26'
+ Manufacturer: Nvidia
+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
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-615-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-615-OEM.yaml
new file mode 100644
index 000000000..b503279d0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-615-OEM.yaml
@@ -0,0 +1,31 @@
+name: GeForce-615-OEM
+humanName: GeForce 615 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 660 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/Nvidia/Fermi/GeForce-GT-415M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-415M.yaml
new file mode 100644
index 000000000..2fb0ec9f9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-415M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-415M
+humanName: GeForce GT 415M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-420-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-420-OEM.yaml
new file mode 100644
index 000000000..8cc61bc70
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-420-OEM.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-420-OEM
+humanName: GeForce GT 420 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 700 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/Nvidia/Fermi/GeForce-GT-420M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-420M.yaml
new file mode 100644
index 000000000..28d3a761d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-420M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-420M
+humanName: GeForce GT 420M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-425M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-425M.yaml
new file mode 100644
index 000000000..3484d3668
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-425M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-425M
+humanName: GeForce GT 425M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 560 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430-OEM.yaml
new file mode 100644
index 000000000..eeede4edf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430-OEM.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-430-OEM
+humanName: GeForce GT 430 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 700 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 2 GiB
+ 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/Nvidia/Fermi/GeForce-GT-430-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430-PCI.yaml
new file mode 100644
index 000000000..32a5b60f5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430-PCI.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GT-430-PCI
+humanName: GeForce GT 430 PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 700 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 9.600 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430.yaml
new file mode 100644
index 000000000..3c851756a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-430.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GT-430
+humanName: GeForce GT 430
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 700 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-435M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-435M.yaml
new file mode 100644
index 000000000..25a1d614f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-435M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-435M
+humanName: GeForce GT 435M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..41fa7cad7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440-Mac-Edition.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-440-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Fermi/GeForce-GT-440-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440-OEM.yaml
new file mode 100644
index 000000000..eba927732
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440-OEM.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-440-OEM
+humanName: GeForce GT 440 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 810 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 43.20 GB/s
+ VRAM Capacity: 1536 MiB
+ 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/Nvidia/Fermi/GeForce-GT-440.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440.yaml
new file mode 100644
index 000000000..ebe7b3c71
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-440.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GT-440
+humanName: GeForce GT 440
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 810 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-445M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-445M.yaml
new file mode 100644
index 000000000..dc9e18405
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-445M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-445M
+humanName: GeForce GT 445M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 590 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 38.40 GB/s
+ VRAM Capacity: 3 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-520M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-520M.yaml
new file mode 100644
index 000000000..6e96d66b1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-520M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-520M
+humanName: GeForce GT 520M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-525M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-525M.yaml
new file mode 100644
index 000000000..0da521525
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-525M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-525M
+humanName: GeForce GT 525M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 475 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-540M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-540M.yaml
new file mode 100644
index 000000000..cb1c35c06
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-540M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-540M
+humanName: GeForce GT 540M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 672 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-555M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-555M.yaml
new file mode 100644
index 000000000..876827a9a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-555M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-555M
+humanName: GeForce GT 555M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 753 MHz
+ VRAM Frequency: 785 MHz
+ VRAM Bandwidth: 50.24 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-620.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-620.yaml
new file mode 100644
index 000000000..cb491cf3c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-620.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GT-620
+humanName: GeForce GT 620
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 700 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-620M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-620M.yaml
new file mode 100644
index 000000000..346062e3c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-620M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-620M
+humanName: GeForce GT 620M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 475 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-630.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-630.yaml
new file mode 100644
index 000000000..2ff9990a1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-630.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GT-630
+humanName: GeForce GT 630
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 810 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-630M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-630M.yaml
new file mode 100644
index 000000000..eca9ebcef
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-630M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-630M
+humanName: GeForce GT 630M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 475 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-640M-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-640M-LE.yaml
new file mode 100644
index 000000000..08d533806
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-640M-LE.yaml
@@ -0,0 +1,31 @@
+name: GeForce-GT-640M-LE
+humanName: GeForce GT 640M LE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 753 MHz
+ VRAM Frequency: 785 MHz
+ VRAM Bandwidth: 50.24 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-730.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-730.yaml
new file mode 100644
index 000000000..bb507481a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GT-730.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GT-730
+humanName: GeForce GT 730
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 700 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTS-450-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTS-450-OEM.yaml
new file mode 100644
index 000000000..f8661aafa
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTS-450-OEM.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTS-450-OEM
+humanName: GeForce GTS 450 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 790 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 96.00 GB/s
+ VRAM Capacity: 1536 MiB
+ 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/Nvidia/Fermi/GeForce-GTS-450.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTS-450.yaml
new file mode 100644
index 000000000..11c0f0407
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTS-450.yaml
@@ -0,0 +1,38 @@
+name: GeForce-GTS-450
+humanName: GeForce GTS 450
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 783 MHz
+ VRAM Frequency: 902 MHz
+ VRAM Bandwidth: 57.73 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460-SE.yaml
new file mode 100644
index 000000000..f1576ad9b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460-SE.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-460-SE
+humanName: GeForce GTX 460 SE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 850 MHz
+ VRAM Bandwidth: 108.8 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460-X2.yaml
new file mode 100644
index 000000000..7ea07ab00
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460-X2.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-460-X2
+humanName: GeForce GTX 460 X2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 701 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 115.2 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460.yaml
new file mode 100644
index 000000000..1e223edd0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-460
+humanName: GeForce GTX 460
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 675 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 86.40 GB/s
+ VRAM Capacity: 768 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460M.yaml
new file mode 100644
index 000000000..762a47c40
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-460M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTX-460M
+humanName: GeForce GTX 460M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 675 MHz
+ VRAM Frequency: 625 MHz
+ VRAM Bandwidth: 60.00 GB/s
+ VRAM Capacity: 1536 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-465.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-465.yaml
new file mode 100644
index 000000000..5ba5b3ac0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-465.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-465
+humanName: GeForce GTX 465
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 608 MHz
+ VRAM Frequency: 802 MHz
+ VRAM Bandwidth: 102.7 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470-X2.yaml
new file mode 100644
index 000000000..67bb39f24
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470-X2.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GTX-470-X2
+humanName: GeForce GTX 470 X2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 608 MHz
+ VRAM Frequency: 837 MHz
+ VRAM Bandwidth: 107.1 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470.yaml
new file mode 100644
index 000000000..0cb936395
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-470
+humanName: GeForce GTX 470
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 608 MHz
+ VRAM Frequency: 837 MHz
+ VRAM Bandwidth: 133.9 GB/s
+ VRAM Capacity: 1280 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470M.yaml
new file mode 100644
index 000000000..609d2bcbb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-470M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTX-470M
+humanName: GeForce GTX 470M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 535 MHz
+ VRAM Frequency: 750 MHz
+ VRAM Bandwidth: 72.00 GB/s
+ VRAM Capacity: 1536 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..d79848b33
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480-Core-512.yaml
@@ -0,0 +1,36 @@
+name: GeForce-GTX-480-Core-512
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480.yaml
new file mode 100644
index 000000000..7323fd9b6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-480
+humanName: GeForce GTX 480
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 701 MHz
+ VRAM Frequency: 924 MHz
+ VRAM Bandwidth: 177.4 GB/s
+ VRAM Capacity: 1536 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480M.yaml
new file mode 100644
index 000000000..116750f4a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-480M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTX-480M
+humanName: GeForce GTX 480M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 425 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 76.80 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-485M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-485M.yaml
new file mode 100644
index 000000000..f22d55189
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-485M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTX-485M
+humanName: GeForce GTX 485M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 575 MHz
+ VRAM Frequency: 750 MHz
+ VRAM Bandwidth: 96.00 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-490.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-490.yaml
new file mode 100644
index 000000000..19deec1ab
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/GeForce-GTX-490.yaml
@@ -0,0 +1,39 @@
+name: GeForce-GTX-490
+humanName: GeForce GTX 490
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 608 MHz
+ VRAM Frequency: 854 MHz
+ VRAM Bandwidth: 164.0 GB/s
+ VRAM Capacity: 1536 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/NVS-5400M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/NVS-5400M.yaml
new file mode 100644
index 000000000..968b6e3ab
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/NVS-5400M.yaml
@@ -0,0 +1,34 @@
+name: NVS-5400M
+humanName: NVS 5400M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 660 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-1000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-1000M.yaml
new file mode 100644
index 000000000..8b511e7ea
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-1000M.yaml
@@ -0,0 +1,34 @@
+name: Quadro-1000M
+humanName: Quadro 1000M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 700 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000.yaml
new file mode 100644
index 000000000..ef3b87594
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000.yaml
@@ -0,0 +1,38 @@
+name: Quadro-2000
+humanName: Quadro 2000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 650 MHz
+ VRAM Bandwidth: 41.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000D.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000D.yaml
new file mode 100644
index 000000000..b06d4ffe7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000D.yaml
@@ -0,0 +1,36 @@
+name: Quadro-2000D
+humanName: Quadro 2000D
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 650 MHz
+ VRAM Bandwidth: 41.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000M.yaml
new file mode 100644
index 000000000..b9c7fdcd6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-2000M.yaml
@@ -0,0 +1,34 @@
+name: Quadro-2000M
+humanName: Quadro 2000M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-3000M-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-3000M-X2.yaml
new file mode 100644
index 000000000..4d700fd0a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-3000M-X2.yaml
@@ -0,0 +1,33 @@
+name: Quadro-3000M-X2
+humanName: Quadro 3000M X2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 625 MHz
+ VRAM Bandwidth: 80.00 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-3000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-3000M.yaml
new file mode 100644
index 000000000..c6d0101a7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-3000M.yaml
@@ -0,0 +1,34 @@
+name: Quadro-3000M
+humanName: Quadro 3000M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 625 MHz
+ VRAM Bandwidth: 80.00 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000-Mac-Edition.yaml
new file mode 100644
index 000000000..0d5d522b0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000-Mac-Edition.yaml
@@ -0,0 +1,36 @@
+name: Quadro-4000-Mac-Edition
+humanName: Quadro 4000 Mac Edition
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 475 MHz
+ VRAM Frequency: 702 MHz
+ VRAM Bandwidth: 89.86 GB/s
+ VRAM Capacity: 1792 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000.yaml
new file mode 100644
index 000000000..4d05568a0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000.yaml
@@ -0,0 +1,38 @@
+name: Quadro-4000
+humanName: Quadro 4000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 475 MHz
+ VRAM Frequency: 702 MHz
+ VRAM Bandwidth: 89.86 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000M.yaml
new file mode 100644
index 000000000..c6d51354d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-4000M.yaml
@@ -0,0 +1,34 @@
+name: Quadro-4000M
+humanName: Quadro 4000M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 475 MHz
+ VRAM Frequency: 625 MHz
+ VRAM Bandwidth: 80.00 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000-SDI.yaml
new file mode 100644
index 000000000..4c51c8a8d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000-SDI.yaml
@@ -0,0 +1,37 @@
+name: Quadro-5000-SDI
+humanName: Quadro 5000 SDI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 513 MHz
+ VRAM Frequency: 750 MHz
+ VRAM Bandwidth: 120.0 GB/s
+ VRAM Capacity: 2.5 GiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000.yaml
new file mode 100644
index 000000000..16f0e2f3a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000.yaml
@@ -0,0 +1,38 @@
+name: Quadro-5000
+humanName: Quadro 5000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 513 MHz
+ VRAM Frequency: 750 MHz
+ VRAM Bandwidth: 120.0 GB/s
+ VRAM Capacity: 2.5 GiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000M.yaml
new file mode 100644
index 000000000..03d9698f7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-5000M.yaml
@@ -0,0 +1,33 @@
+name: Quadro-5000M
+humanName: Quadro 5000M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 405 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 76.80 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-500M.yaml
new file mode 100644
index 000000000..c06a33673
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-500M.yaml
@@ -0,0 +1,34 @@
+name: Quadro-500M
+humanName: Quadro 500M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 560 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-600.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-600.yaml
new file mode 100644
index 000000000..aee8bdf0f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-600.yaml
@@ -0,0 +1,37 @@
+name: Quadro-600
+humanName: Quadro 600
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 640 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-6000-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-6000-SDI.yaml
new file mode 100644
index 000000000..c1c1b81b7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-6000-SDI.yaml
@@ -0,0 +1,37 @@
+name: Quadro-6000-SDI
+humanName: Quadro 6000 SDI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 574 MHz
+ VRAM Frequency: 747 MHz
+ VRAM Bandwidth: 143.4 GB/s
+ VRAM Capacity: 6 GiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-6000.yaml
new file mode 100644
index 000000000..bd0c680e4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Fermi/Quadro-6000.yaml
@@ -0,0 +1,38 @@
+name: Quadro-6000
+humanName: Quadro 6000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 574 MHz
+ VRAM Frequency: 747 MHz
+ VRAM Bandwidth: 143.4 GB/s
+ VRAM Capacity: 6 GiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Hopper.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper.yaml
new file mode 100644
index 000000000..bca84e6a9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Hopper.yaml
@@ -0,0 +1,22 @@
+name: Hopper
+humanName: Hopper
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 4 nm
+ DirectX Support: ''
+ Vulkan Support: 'N/A'
+ Release Date: '2023-03-21'
+ Manufacturer: Nvidia
+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/Nvidia/Hopper/H100-CNX.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-CNX.yaml
new file mode 100644
index 000000000..93454aeca
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-CNX.yaml
@@ -0,0 +1,37 @@
+name: H100-CNX
+humanName: H100 CNX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-PCIe-80-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-PCIe-80-GB.yaml
new file mode 100644
index 000000000..7a29fb875
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-PCIe-80-GB.yaml
@@ -0,0 +1,37 @@
+name: H100-PCIe-80-GB
+humanName: H100 PCIe 80 GB
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-PCIe-96-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-PCIe-96-GB.yaml
new file mode 100644
index 000000000..f48ee8694
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-PCIe-96-GB.yaml
@@ -0,0 +1,37 @@
+name: H100-PCIe-96-GB
+humanName: H100 PCIe 96 GB
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-64-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-64-GB.yaml
new file mode 100644
index 000000000..9511f2c98
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-64-GB.yaml
@@ -0,0 +1,35 @@
+name: H100-SXM5-64-GB
+humanName: H100 SXM5 64 GB
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-80-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-80-GB.yaml
new file mode 100644
index 000000000..b1a19ba5b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-80-GB.yaml
@@ -0,0 +1,35 @@
+name: H100-SXM5-80-GB
+humanName: H100 SXM5 80 GB
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-96-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-96-GB.yaml
new file mode 100644
index 000000000..fa08c01fc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Hopper/H100-SXM5-96-GB.yaml
@@ -0,0 +1,35 @@
+name: H100-SXM5-96-GB
+humanName: H100 SXM5 96 GB
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Hopper/H800-PCIe-80-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H800-PCIe-80-GB.yaml
new file mode 100644
index 000000000..0c84386a9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Hopper/H800-PCIe-80-GB.yaml
@@ -0,0 +1,37 @@
+name: H800-PCIe-80-GB
+humanName: H800 PCIe 80 GB
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Hopper/H800-SXM5.yaml b/specs/GPUs-CONSUMER/Nvidia/Hopper/H800-SXM5.yaml
new file mode 100644
index 000000000..c2f6c3fc3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Hopper/H800-SXM5.yaml
@@ -0,0 +1,35 @@
+name: H800-SXM5
+humanName: H800 SXM5
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin.yaml
new file mode 100644
index 000000000..d8fa5ab65
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin.yaml
@@ -0,0 +1,29 @@
+name: Kelvin
+humanName: Kelvin
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 150 nm
+ DirectX Support: '8.1'
+ Vulkan Support: 'N/A'
+ Release Date: '2001-02-27'
+ Manufacturer: Nvidia
+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
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti200.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti200.yaml
new file mode 100644
index 000000000..2d4f37100
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti200.yaml
@@ -0,0 +1,36 @@
+name: GeForce3-Ti200
+humanName: GeForce3 Ti200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 175 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Length: 183 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti500.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti500.yaml
new file mode 100644
index 000000000..b3be563a1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3-Ti500.yaml
@@ -0,0 +1,36 @@
+name: GeForce3-Ti500
+humanName: GeForce3 Ti500
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 240 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Length: 183 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3.yaml
new file mode 100644
index 000000000..b1d60553c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce3.yaml
@@ -0,0 +1,34 @@
+name: GeForce3
+humanName: GeForce3
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 230 MHz
+ VRAM Bandwidth: 7.360 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 1x VGA1x DB13W3
+ Power Connectors: None
+ Length: 165 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Go-4200.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Go-4200.yaml
new file mode 100644
index 000000000..1a921eba5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Go-4200.yaml
@@ -0,0 +1,32 @@
+name: GeForce4-Go-4200
+humanName: GeForce4 Go 4200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200-8X.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200-8X.yaml
new file mode 100644
index 000000000..fba288533
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200-8X.yaml
@@ -0,0 +1,35 @@
+name: GeForce4-Ti-4200-8X
+humanName: GeForce4 Ti 4200-8X
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 4.000 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200.yaml
new file mode 100644
index 000000000..bee507bb5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4200.yaml
@@ -0,0 +1,33 @@
+name: GeForce4-Ti-4200
+humanName: GeForce4 Ti 4200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs: 2x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4400.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4400.yaml
new file mode 100644
index 000000000..e01a12364
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4400.yaml
@@ -0,0 +1,35 @@
+name: GeForce4-Ti-4400
+humanName: GeForce4 Ti 4400
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 275 MHz
+ VRAM Frequency: 275 MHz
+ VRAM Bandwidth: 8.800 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Length: 216 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4600.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4600.yaml
new file mode 100644
index 000000000..c23d9a54f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4600.yaml
@@ -0,0 +1,36 @@
+name: GeForce4-Ti-4600
+humanName: GeForce4 Ti 4600
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 324 MHz
+ VRAM Bandwidth: 10.37 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Length: 216 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4800.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4800.yaml
new file mode 100644
index 000000000..cb1800e91
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/GeForce4-Ti-4800.yaml
@@ -0,0 +1,36 @@
+name: GeForce4-Ti-4800
+humanName: GeForce4 Ti 4800
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 325 MHz
+ VRAM Bandwidth: 10.40 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Length: 216 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro-DCC.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro-DCC.yaml
new file mode 100644
index 000000000..4945e2c64
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro-DCC.yaml
@@ -0,0 +1,35 @@
+name: Quadro-DCC
+humanName: Quadro DCC
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 230 MHz
+ VRAM Bandwidth: 3.680 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: SDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-Go-GL.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-Go-GL.yaml
new file mode 100644
index 000000000..757bbb6e2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-Go-GL.yaml
@@ -0,0 +1,32 @@
+name: Quadro4-700-Go-GL
+humanName: Quadro4 700 Go GL
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 199 MHz
+ VRAM Frequency: 223 MHz
+ VRAM Bandwidth: 7.136 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-XGL.yaml
new file mode 100644
index 000000000..4922ff886
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-700-XGL.yaml
@@ -0,0 +1,35 @@
+name: Quadro4-700-XGL
+humanName: Quadro4 700 XGL
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 275 MHz
+ VRAM Frequency: 225 MHz
+ VRAM Bandwidth: 7.200 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-750-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-750-XGL.yaml
new file mode 100644
index 000000000..2497df427
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-750-XGL.yaml
@@ -0,0 +1,35 @@
+name: Quadro4-750-XGL
+humanName: Quadro4 750 XGL
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 275 MHz
+ VRAM Frequency: 225 MHz
+ VRAM Bandwidth: 7.200 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-900-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-900-XGL.yaml
new file mode 100644
index 000000000..42ccf667b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-900-XGL.yaml
@@ -0,0 +1,35 @@
+name: Quadro4-900-XGL
+humanName: Quadro4 900 XGL
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 325 MHz
+ VRAM Bandwidth: 10.40 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-980-XGL.yaml b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-980-XGL.yaml
new file mode 100644
index 000000000..9de03458b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kelvin/Quadro4-980-XGL.yaml
@@ -0,0 +1,35 @@
+name: Quadro4-980-XGL
+humanName: Quadro4 980 XGL
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 325 MHz
+ VRAM Bandwidth: 10.40 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0.yaml
new file mode 100644
index 000000000..27b4dfd01
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/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: 28 nm
+ DirectX Support: '11.0'
+ Vulkan Support: '1.2.175'
+ Release Date: '2013-04-01'
+ Manufacturer: Nvidia
+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
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-710A.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-710A.yaml
new file mode 100644
index 000000000..7586c5503
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-710A.yaml
@@ -0,0 +1,32 @@
+name: GeForce-710A
+humanName: GeForce 710A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-805A.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-805A.yaml
new file mode 100644
index 000000000..2e06183bc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-805A.yaml
@@ -0,0 +1,34 @@
+name: GeForce-805A
+humanName: GeForce 805A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-810A.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-810A.yaml
new file mode 100644
index 000000000..d6239cfd7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-810A.yaml
@@ -0,0 +1,34 @@
+name: GeForce-810A
+humanName: GeForce 810A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-825M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-825M.yaml
new file mode 100644
index 000000000..3cd37dd52
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-825M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-825M
+humanName: GeForce 825M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-910M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-910M.yaml
new file mode 100644
index 000000000..293d5f881
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-910M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-910M
+humanName: GeForce 910M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-920A.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-920A.yaml
new file mode 100644
index 000000000..256f26f0d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-920A.yaml
@@ -0,0 +1,35 @@
+name: GeForce-920A
+humanName: GeForce 920A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-920M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-920M.yaml
new file mode 100644
index 000000000..71f43b9f9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-920M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-920M
+humanName: GeForce 920M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..77ec6972b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-630-Rev.-2-PCIe-x8.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GT-630-Rev.-2-PCIe-x8
+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'
+ Vulkan Support: '1.2.175'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..9007211c1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-630-Rev.-2.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GT-630-Rev.-2
+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'
+ Vulkan Support: '1.2.175'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..606af7a2b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-635-OEM.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-635-OEM
+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'
+ Vulkan Support: '1.2.175'
+ 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 MiB
+ 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/Nvidia/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml
new file mode 100644
index 000000000..5233cc57e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-640-Rev.-2.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GT-640-Rev.-2
+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'
+ Vulkan Support: '1.2.175'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..49d569d47
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710-OEM.yaml
@@ -0,0 +1,31 @@
+name: GeForce-GT-710-OEM
+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'
+ Vulkan Support: '1.2.175'
+ 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 MiB
+ 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/Nvidia/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml
new file mode 100644
index 000000000..bf4cec5d5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710-PCIe-x1.yaml
@@ -0,0 +1,38 @@
+name: GeForce-GT-710-PCIe-x1
+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'
+ Vulkan Support: '1.2.175'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..0ba41f3de
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-710.yaml
@@ -0,0 +1,36 @@
+name: GeForce-GT-710
+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'
+ Vulkan Support: '1.2.175'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..cc4cad7d4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-720.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GT-720
+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'
+ Vulkan Support: '1.2.175'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..6dc844521
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-730A.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-730A
+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'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..6bd950b84
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/GeForce-GT-735M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-735M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Jetson-TK1.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Jetson-TK1.yaml
new file mode 100644
index 000000000..e85113776
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Jetson-TK1.yaml
@@ -0,0 +1,35 @@
+name: Jetson-TK1
+humanName: Jetson TK1
+isPart: true
+type: Graphics Card
+data:
+ Market: Embedded
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Kepler-2.0/Quadro-K510M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K510M.yaml
new file mode 100644
index 000000000..c8cdcc329
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K510M.yaml
@@ -0,0 +1,33 @@
+name: Quadro-K510M
+humanName: Quadro K510M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 MiB
+ 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/Nvidia/Kepler-2.0/Quadro-K610M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K610M.yaml
new file mode 100644
index 000000000..fa5c312c1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler-2.0/Quadro-K610M.yaml
@@ -0,0 +1,34 @@
+name: Quadro-K610M
+humanName: Quadro K610M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 MiB
+ 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/Nvidia/Kepler.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler.yaml
new file mode 100644
index 000000000..6d5fa215a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler.yaml
@@ -0,0 +1,108 @@
+name: Kepler
+humanName: Kepler
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 28 nm
+ DirectX Support: '11.0'
+ Vulkan Support: '1.2.175'
+ Release Date: '2012-03-22'
+ Manufacturer: Nvidia
+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
+ - 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
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-810M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-810M.yaml
new file mode 100644
index 000000000..aa833df0a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-810M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-810M
+humanName: GeForce 810M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-1030-GK107.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-1030-GK107.yaml
new file mode 100644
index 000000000..6c531386c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-1030-GK107.yaml
@@ -0,0 +1,36 @@
+name: GeForce-GT-1030-GK107
+humanName: GeForce GT 1030 GK107
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 1058 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 80.00 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-630-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-630-OEM.yaml
new file mode 100644
index 000000000..17b31d8cf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-630-OEM.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-630-OEM
+humanName: GeForce GT 630 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 875 MHz
+ VRAM Frequency: 891 MHz
+ VRAM Bandwidth: 28.51 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/Nvidia/Kepler/GeForce-GT-640-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640-OEM.yaml
new file mode 100644
index 000000000..14022b3cb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640-OEM.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-640-OEM
+humanName: GeForce GT 640 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 797 MHz
+ VRAM Frequency: 891 MHz
+ VRAM Bandwidth: 28.51 GB/s
+ VRAM Capacity: 2 GiB
+ 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/Nvidia/Kepler/GeForce-GT-640M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640M-Mac-Edition.yaml
new file mode 100644
index 000000000..3e9af205d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640M-Mac-Edition.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-640M-Mac-Edition
+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'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640M.yaml
new file mode 100644
index 000000000..ffda669cc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-640M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-640M
+humanName: GeForce GT 640M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-645M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-645M.yaml
new file mode 100644
index 000000000..afd797e62
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-645M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-645M
+humanName: GeForce GT 645M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..b17dd8282
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-650M-Mac-Edition.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-650M-Mac-Edition
+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'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-650M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-650M.yaml
new file mode 100644
index 000000000..3eb10bd11
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-650M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-650M
+humanName: GeForce GT 650M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-720-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-720-OEM.yaml
new file mode 100644
index 000000000..9acfeaa20
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-720-OEM.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-720-OEM
+humanName: GeForce GT 720 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 993 MHz
+ VRAM Frequency: 891 MHz
+ VRAM Bandwidth: 28.51 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/Nvidia/Kepler/GeForce-GT-730-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-730-OEM.yaml
new file mode 100644
index 000000000..744c818cb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-730-OEM.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-730-OEM
+humanName: GeForce GT 730 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 902 MHz
+ VRAM Frequency: 1253 MHz
+ VRAM Bandwidth: 40.10 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/Nvidia/Kepler/GeForce-GT-730M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-730M.yaml
new file mode 100644
index 000000000..77397c254
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-730M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-730M
+humanName: GeForce GT 730M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740-OEM.yaml
new file mode 100644
index 000000000..0f2dc8f81
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740-OEM.yaml
@@ -0,0 +1,32 @@
+name: GeForce-GT-740-OEM
+humanName: GeForce GT 740 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 MiB
+ 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/Nvidia/Kepler/GeForce-GT-740.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740.yaml
new file mode 100644
index 000000000..0edf3a9f5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GT-740
+humanName: GeForce GT 740
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 993 MHz
+ VRAM Frequency: 1253 MHz
+ VRAM Bandwidth: 80.19 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740M.yaml
new file mode 100644
index 000000000..349be7528
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-740M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-740M
+humanName: GeForce GT 740M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-745A.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-745A.yaml
new file mode 100644
index 000000000..01df32919
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-745A.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-745A
+humanName: GeForce GT 745A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-745M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-745M.yaml
new file mode 100644
index 000000000..e880df4eb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-745M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-745M
+humanName: GeForce GT 745M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..680d1d476
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-750M-Mac-Edition.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-750M-Mac-Edition
+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'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-750M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-750M.yaml
new file mode 100644
index 000000000..4e364425d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-750M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-750M
+humanName: GeForce GT 750M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..9dc0ce6ed
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-755M-Mac-Edition.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-755M-Mac-Edition
+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'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-755M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-755M.yaml
new file mode 100644
index 000000000..c05eb735c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GT-755M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GT-755M
+humanName: GeForce GT 755M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-645-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-645-OEM.yaml
new file mode 100644
index 000000000..a2a74e687
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-645-OEM.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-645-OEM
+humanName: GeForce GTX 645 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 824 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/Nvidia/Kepler/GeForce-GTX-650-Ti-Boost.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650-Ti-Boost.yaml
new file mode 100644
index 000000000..8a8eb9e29
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650-Ti-Boost.yaml
@@ -0,0 +1,38 @@
+name: GeForce-GTX-650-Ti-Boost
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..e2985faef
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650-Ti-OEM.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTX-650-Ti-OEM
+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'
+ Vulkan Support: '1.2.175'
+ 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 GiB
+ 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/Nvidia/Kepler/GeForce-GTX-650.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650.yaml
new file mode 100644
index 000000000..4e2fd266d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-650.yaml
@@ -0,0 +1,36 @@
+name: GeForce-GTX-650
+humanName: GeForce GTX 650
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 1058 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 80.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660-OEM.yaml
new file mode 100644
index 000000000..a79dc0aab
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660-OEM.yaml
@@ -0,0 +1,36 @@
+name: GeForce-GTX-660-OEM
+humanName: GeForce GTX 660 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 MiB
+ 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/Nvidia/Kepler/GeForce-GTX-660-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660-Ti.yaml
new file mode 100644
index 000000000..7cc2f9dbd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660-Ti.yaml
@@ -0,0 +1,38 @@
+name: GeForce-GTX-660-Ti
+humanName: GeForce GTX 660 Ti
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660.yaml
new file mode 100644
index 000000000..9047cd26b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660.yaml
@@ -0,0 +1,38 @@
+name: GeForce-GTX-660
+humanName: GeForce GTX 660
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..1cfd86399
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660M-Mac-Edition.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTX-660M-Mac-Edition
+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'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660M.yaml
new file mode 100644
index 000000000..cfd3aac18
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-660M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-660M
+humanName: GeForce GTX 660M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-670.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-670.yaml
new file mode 100644
index 000000000..23d4d51f0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-670.yaml
@@ -0,0 +1,40 @@
+name: GeForce-GTX-670
+humanName: GeForce GTX 670
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-670MX.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-670MX.yaml
new file mode 100644
index 000000000..8e6c9a6c3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-670MX.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTX-670MX
+humanName: GeForce GTX 670MX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..395096e92
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-675MX-Mac-Edition.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-675MX-Mac-Edition
+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'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-675MX.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-675MX.yaml
new file mode 100644
index 000000000..3f05d9fdf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-675MX.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTX-675MX
+humanName: GeForce GTX 675MX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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: 654 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 115.2 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..36a23679a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680-Mac-Edition.yaml
@@ -0,0 +1,38 @@
+name: GeForce-GTX-680-Mac-Edition
+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'
+ 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 GiB
+ 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/Nvidia/Kepler/GeForce-GTX-680.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680.yaml
new file mode 100644
index 000000000..05bd72cd2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680.yaml
@@ -0,0 +1,40 @@
+name: GeForce-GTX-680
+humanName: GeForce GTX 680
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680M.yaml
new file mode 100644
index 000000000..a9a5bc2e0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-680M
+humanName: GeForce GTX 680M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..890e15d1b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-680MX-Mac-Edition.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-680MX-Mac-Edition
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-690.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-690.yaml
new file mode 100644
index 000000000..ee8e0962d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-690.yaml
@@ -0,0 +1,40 @@
+name: GeForce-GTX-690
+humanName: GeForce GTX 690
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..48326f727
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-750-Ti-OEM.yaml
@@ -0,0 +1,32 @@
+name: GeForce-GTX-750-Ti-OEM
+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'
+ 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 GiB
+ 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/Nvidia/Kepler/GeForce-GTX-760-OEM-Rebrand.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-OEM-Rebrand.yaml
new file mode 100644
index 000000000..299387c28
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-OEM-Rebrand.yaml
@@ -0,0 +1,36 @@
+name: GeForce-GTX-760-OEM-Rebrand
+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'
+ 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 MiB
+ 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/Nvidia/Kepler/GeForce-GTX-760-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-OEM.yaml
new file mode 100644
index 000000000..2f7a24c0b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-OEM.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-760-OEM
+humanName: GeForce GTX 760 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Kepler/GeForce-GTX-760-Ti-OEM-Rebrand.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-Ti-OEM-Rebrand.yaml
new file mode 100644
index 000000000..51501d98f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-Ti-OEM-Rebrand.yaml
@@ -0,0 +1,36 @@
+name: GeForce-GTX-760-Ti-OEM-Rebrand
+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'
+ 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 GiB
+ 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/Nvidia/Kepler/GeForce-GTX-760-Ti-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-Ti-OEM.yaml
new file mode 100644
index 000000000..2eb542309
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-Ti-OEM.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-760-Ti-OEM
+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'
+ 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 GiB
+ 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/Nvidia/Kepler/GeForce-GTX-760-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-X2.yaml
new file mode 100644
index 000000000..b2693866e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760-X2.yaml
@@ -0,0 +1,38 @@
+name: GeForce-GTX-760-X2
+humanName: GeForce GTX 760 X2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760.yaml
new file mode 100644
index 000000000..8af02e3f3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760.yaml
@@ -0,0 +1,38 @@
+name: GeForce-GTX-760
+humanName: GeForce GTX 760
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760A.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760A.yaml
new file mode 100644
index 000000000..5320b427b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760A.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-760A
+humanName: GeForce GTX 760A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760M.yaml
new file mode 100644
index 000000000..fea0664e3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-760M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-760M
+humanName: GeForce GTX 760M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-765M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-765M.yaml
new file mode 100644
index 000000000..e3ca36dad
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-765M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-765M
+humanName: GeForce GTX 765M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-770.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-770.yaml
new file mode 100644
index 000000000..20ad995fc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-770.yaml
@@ -0,0 +1,40 @@
+name: GeForce-GTX-770
+humanName: GeForce GTX 770
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-770M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-770M.yaml
new file mode 100644
index 000000000..c35ec5f3e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-770M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-770M
+humanName: GeForce GTX 770M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..d4f1fd515
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-775M-Mac-Edition.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-775M-Mac-Edition
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..d32aff7cd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-6-GB.yaml
@@ -0,0 +1,40 @@
+name: GeForce-GTX-780-6-GB
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..0ea76c160
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Rev.-2.yaml
@@ -0,0 +1,40 @@
+name: GeForce-GTX-780-Rev.-2
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..e21da1637
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Ti-6-GB.yaml
@@ -0,0 +1,39 @@
+name: GeForce-GTX-780-Ti-6-GB
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Ti.yaml
new file mode 100644
index 000000000..b0fb39aa3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780-Ti.yaml
@@ -0,0 +1,40 @@
+name: GeForce-GTX-780-Ti
+humanName: GeForce GTX 780 Ti
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780.yaml
new file mode 100644
index 000000000..d006f9c05
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780.yaml
@@ -0,0 +1,40 @@
+name: GeForce-GTX-780
+humanName: GeForce GTX 780
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..9a54ec0da
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780M-Mac-Edition.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-780M-Mac-Edition
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780M.yaml
new file mode 100644
index 000000000..39eeffd6f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-780M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-780M
+humanName: GeForce GTX 780M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-870M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-870M.yaml
new file mode 100644
index 000000000..170e58b68
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-870M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-870M
+humanName: GeForce GTX 870M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-880M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-880M.yaml
new file mode 100644
index 000000000..22b0b883e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-880M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-880M
+humanName: GeForce GTX 880M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN-BLACK.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN-BLACK.yaml
new file mode 100644
index 000000000..e36b409f3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN-BLACK.yaml
@@ -0,0 +1,40 @@
+name: GeForce-GTX-TITAN-BLACK
+humanName: GeForce GTX TITAN BLACK
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN-Z.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN-Z.yaml
new file mode 100644
index 000000000..9ec074bd8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN-Z.yaml
@@ -0,0 +1,40 @@
+name: GeForce-GTX-TITAN-Z
+humanName: GeForce GTX TITAN Z
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN.yaml
new file mode 100644
index 000000000..115d379c8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/GeForce-GTX-TITAN.yaml
@@ -0,0 +1,40 @@
+name: GeForce-GTX-TITAN
+humanName: GeForce GTX TITAN
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/NVS-1000.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/NVS-1000.yaml
new file mode 100644
index 000000000..a3d23937a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/NVS-1000.yaml
@@ -0,0 +1,33 @@
+name: NVS-1000
+humanName: NVS 1000
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 797 MHz
+ VRAM Frequency: 891 MHz
+ VRAM Bandwidth: 28.51 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/NVS-510.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/NVS-510.yaml
new file mode 100644
index 000000000..beab99b29
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/NVS-510.yaml
@@ -0,0 +1,35 @@
+name: NVS-510
+humanName: NVS 510
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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: 797 MHz
+ VRAM Frequency: 891 MHz
+ VRAM Bandwidth: 28.51 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-410.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-410.yaml
new file mode 100644
index 000000000..991aefad5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-410.yaml
@@ -0,0 +1,37 @@
+name: Quadro-410
+humanName: Quadro 410
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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: 706 MHz
+ VRAM Frequency: 891 MHz
+ VRAM Bandwidth: 14.26 GB/s
+ VRAM Capacity: 512 MiB
+ 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/Nvidia/Kepler/Quadro-4100.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-4100.yaml
new file mode 100644
index 000000000..bd4eae600
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-4100.yaml
@@ -0,0 +1,32 @@
+name: Quadro-4100
+humanName: Quadro 4100
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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: 797 MHz
+ VRAM Frequency: 891 MHz
+ VRAM Bandwidth: 57.02 GB/s
+ VRAM Capacity: 2 GiB
+ 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/Nvidia/Kepler/Quadro-K1000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1000M.yaml
new file mode 100644
index 000000000..4ed5d86eb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1000M.yaml
@@ -0,0 +1,33 @@
+name: Quadro-K1000M
+humanName: Quadro K1000M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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: 850 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 2 GiB
+ 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/Nvidia/Kepler/Quadro-K100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K100M.yaml
new file mode 100644
index 000000000..9d644127d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K100M.yaml
@@ -0,0 +1,34 @@
+name: Quadro-K100M
+humanName: Quadro K100M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Kepler/Quadro-K1100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1100M.yaml
new file mode 100644
index 000000000..fd35f89b3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K1100M.yaml
@@ -0,0 +1,33 @@
+name: Quadro-K1100M
+humanName: Quadro K1100M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Kepler/Quadro-K2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000.yaml
new file mode 100644
index 000000000..a4d029231
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000.yaml
@@ -0,0 +1,37 @@
+name: Quadro-K2000
+humanName: Quadro K2000
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 954 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 2 GiB
+ 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/Nvidia/Kepler/Quadro-K2000D.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000D.yaml
new file mode 100644
index 000000000..e8fff042d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000D.yaml
@@ -0,0 +1,37 @@
+name: Quadro-K2000D
+humanName: Quadro K2000D
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 954 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 2 GiB
+ 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/Nvidia/Kepler/Quadro-K2000M-Embedded.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M-Embedded.yaml
new file mode 100644
index 000000000..29834ca18
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M-Embedded.yaml
@@ -0,0 +1,32 @@
+name: Quadro-K2000M-Embedded
+humanName: Quadro K2000M Embedded
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Kepler/Quadro-K2000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M.yaml
new file mode 100644
index 000000000..c6e35041c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2000M.yaml
@@ -0,0 +1,34 @@
+name: Quadro-K2000M
+humanName: Quadro K2000M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Kepler/Quadro-K200M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K200M.yaml
new file mode 100644
index 000000000..73f6b52aa
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K200M.yaml
@@ -0,0 +1,34 @@
+name: Quadro-K200M
+humanName: Quadro K200M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Kepler/Quadro-K2100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2100M.yaml
new file mode 100644
index 000000000..0c8ab51e2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K2100M.yaml
@@ -0,0 +1,34 @@
+name: Quadro-K2100M
+humanName: Quadro K2100M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Kepler/Quadro-K3000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3000M.yaml
new file mode 100644
index 000000000..e31dabf87
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3000M.yaml
@@ -0,0 +1,34 @@
+name: Quadro-K3000M
+humanName: Quadro K3000M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Kepler/Quadro-K3100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3100M.yaml
new file mode 100644
index 000000000..caad8a375
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K3100M.yaml
@@ -0,0 +1,34 @@
+name: Quadro-K3100M
+humanName: Quadro K3100M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Kepler/Quadro-K4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000.yaml
new file mode 100644
index 000000000..5b507a44f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000.yaml
@@ -0,0 +1,37 @@
+name: Quadro-K4000
+humanName: Quadro K4000
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 810 MHz
+ VRAM Frequency: 1404 MHz
+ VRAM Bandwidth: 134.8 GB/s
+ VRAM Capacity: 3 GiB
+ 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/Nvidia/Kepler/Quadro-K4000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000M.yaml
new file mode 100644
index 000000000..c953fe0bb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4000M.yaml
@@ -0,0 +1,34 @@
+name: Quadro-K4000M
+humanName: Quadro K4000M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Kepler/Quadro-K4100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4100M.yaml
new file mode 100644
index 000000000..6d9647391
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4100M.yaml
@@ -0,0 +1,34 @@
+name: Quadro-K4100M
+humanName: Quadro K4100M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Kepler/Quadro-K420.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K420.yaml
new file mode 100644
index 000000000..9581079c7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K420.yaml
@@ -0,0 +1,37 @@
+name: Quadro-K420
+humanName: Quadro K420
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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: 876 MHz
+ VRAM Frequency: 891 MHz
+ VRAM Bandwidth: 28.51 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/Nvidia/Kepler/Quadro-K4200.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4200.yaml
new file mode 100644
index 000000000..026d9827f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K4200.yaml
@@ -0,0 +1,38 @@
+name: Quadro-K4200
+humanName: Quadro K4200
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Kepler/Quadro-K5000-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-Mac-Edition.yaml
new file mode 100644
index 000000000..9c8dbe492
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-Mac-Edition.yaml
@@ -0,0 +1,36 @@
+name: Quadro-K5000-Mac-Edition
+humanName: Quadro K5000 Mac Edition
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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: 706 MHz
+ VRAM Frequency: 1350 MHz
+ VRAM Bandwidth: 172.8 GB/s
+ VRAM Capacity: 4 GiB
+ 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/Nvidia/Kepler/Quadro-K5000-SYNC.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-SYNC.yaml
new file mode 100644
index 000000000..c5ea81307
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000-SYNC.yaml
@@ -0,0 +1,37 @@
+name: Quadro-K5000-SYNC
+humanName: Quadro K5000 SYNC
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 706 MHz
+ VRAM Frequency: 1350 MHz
+ VRAM Bandwidth: 172.8 GB/s
+ VRAM Capacity: 4 GiB
+ 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/Nvidia/Kepler/Quadro-K5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000.yaml
new file mode 100644
index 000000000..d456653cd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000.yaml
@@ -0,0 +1,36 @@
+name: Quadro-K5000
+humanName: Quadro K5000
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 706 MHz
+ VRAM Frequency: 1350 MHz
+ VRAM Bandwidth: 172.8 GB/s
+ VRAM Capacity: 4 GiB
+ 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/Nvidia/Kepler/Quadro-K5000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000M.yaml
new file mode 100644
index 000000000..6e3526033
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5000M.yaml
@@ -0,0 +1,34 @@
+name: Quadro-K5000M
+humanName: Quadro K5000M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Kepler/Quadro-K500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K500M.yaml
new file mode 100644
index 000000000..c058da554
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K500M.yaml
@@ -0,0 +1,34 @@
+name: Quadro-K500M
+humanName: Quadro K500M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 MiB
+ 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/Nvidia/Kepler/Quadro-K5100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5100M.yaml
new file mode 100644
index 000000000..d5f97b5d5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5100M.yaml
@@ -0,0 +1,34 @@
+name: Quadro-K5100M
+humanName: Quadro K5100M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Kepler/Quadro-K5200.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5200.yaml
new file mode 100644
index 000000000..bdee2887a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K5200.yaml
@@ -0,0 +1,37 @@
+name: Quadro-K5200
+humanName: Quadro K5200
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Kepler/Quadro-K600.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K600.yaml
new file mode 100644
index 000000000..0ac14a1e2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K600.yaml
@@ -0,0 +1,37 @@
+name: Quadro-K600
+humanName: Quadro K600
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 876 MHz
+ VRAM Frequency: 891 MHz
+ VRAM Bandwidth: 28.51 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/Nvidia/Kepler/Quadro-K6000-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000-SDI.yaml
new file mode 100644
index 000000000..e2d3b45a9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000-SDI.yaml
@@ -0,0 +1,36 @@
+name: Quadro-K6000-SDI
+humanName: Quadro K6000 SDI
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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: 902 MHz
+ VRAM Frequency: 1502 MHz
+ VRAM Bandwidth: 288.4 GB/s
+ VRAM Capacity: 12 GiB
+ 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/Nvidia/Kepler/Quadro-K6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000.yaml
new file mode 100644
index 000000000..624d54417
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Kepler/Quadro-K6000.yaml
@@ -0,0 +1,38 @@
+name: Quadro-K6000
+humanName: Quadro K6000
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Maxwell-2.0.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0.yaml
new file mode 100644
index 000000000..93e47f58a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0.yaml
@@ -0,0 +1,42 @@
+name: Maxwell-2.0
+humanName: Maxwell 2.0
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 28 nm
+ DirectX Support: '12.1'
+ Vulkan Support: '1.3'
+ Release Date: '2014-09-19'
+ Manufacturer: Nvidia
+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
+ - 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
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
new file mode 100644
index 000000000..f7723d6ae
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-750-GM206.yaml
@@ -0,0 +1,49 @@
+name: GeForce-GTX-750-GM206
+humanName: GeForce GTX 750 GM206
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..192d7ceb7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950-Low-Power.yaml
@@ -0,0 +1,39 @@
+name: GeForce-GTX-950-Low-Power
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..1619a0d0c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950-OEM.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GTX-950-OEM
+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'
+ 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 GiB
+ 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/Nvidia/Maxwell-2.0/GeForce-GTX-950.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950.yaml
new file mode 100644
index 000000000..e2577b8de
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-950.yaml
@@ -0,0 +1,53 @@
+name: GeForce-GTX-950
+humanName: GeForce GTX 950
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..3e68d3674
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-960-OEM.yaml
@@ -0,0 +1,36 @@
+name: GeForce-GTX-960-OEM
+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'
+ 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 GiB
+ 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/Nvidia/Maxwell-2.0/GeForce-GTX-960.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-960.yaml
new file mode 100644
index 000000000..052863f3b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-960.yaml
@@ -0,0 +1,53 @@
+name: GeForce-GTX-960
+humanName: GeForce GTX 960
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..e1b450c75
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-965M-4-GB.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTX-965M-4-GB
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..cda00802c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-965M.yaml
@@ -0,0 +1,49 @@
+name: GeForce-GTX-965M
+humanName: GeForce GTX 965M
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..1edb30d34
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-970.yaml
@@ -0,0 +1,52 @@
+name: GeForce-GTX-970
+humanName: GeForce GTX 970
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..1c1f5e909
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-970M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-970M
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..489bbe3e3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980-Mobile.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-980-Mobile
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..c78c4d1f3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980-Ti.yaml
@@ -0,0 +1,52 @@
+name: GeForce-GTX-980-Ti
+humanName: GeForce GTX 980 Ti
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..c1bb8bb1e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980.yaml
@@ -0,0 +1,52 @@
+name: GeForce-GTX-980
+humanName: GeForce GTX 980
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..a0ed507e1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-980M.yaml
@@ -0,0 +1,46 @@
+name: GeForce-GTX-980M
+humanName: GeForce GTX 980M
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..a2c0b3462
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/GeForce-GTX-TITAN-X.yaml
@@ -0,0 +1,41 @@
+name: GeForce-GTX-TITAN-X
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Jetson-Nano.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Jetson-Nano.yaml
new file mode 100644
index 000000000..7ac6160de
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Jetson-Nano.yaml
@@ -0,0 +1,36 @@
+name: Jetson-Nano
+humanName: Jetson Nano
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Jetson-TX1.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Jetson-TX1.yaml
new file mode 100644
index 000000000..cc92cc2a7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Jetson-TX1.yaml
@@ -0,0 +1,33 @@
+name: Jetson-TX1
+humanName: Jetson TX1
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 998 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 9.600 GB/s
+ VRAM Capacity: 4 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2000.yaml
new file mode 100644
index 000000000..de10b059a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2000.yaml
@@ -0,0 +1,50 @@
+name: Quadro-M2000
+humanName: Quadro M2000
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Maxwell-2.0/Quadro-M2200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2200-Mobile.yaml
new file mode 100644
index 000000000..42f9a5d5f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M2200-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Quadro-M2200-Mobile
+humanName: Quadro M2200 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Maxwell-2.0/Quadro-M3000-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000-SE.yaml
new file mode 100644
index 000000000..bbcf201c3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000-SE.yaml
@@ -0,0 +1,33 @@
+name: Quadro-M3000-SE
+humanName: Quadro M3000 SE
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Maxwell-2.0/Quadro-M3000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000M.yaml
new file mode 100644
index 000000000..f543d3908
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M3000M.yaml
@@ -0,0 +1,40 @@
+name: Quadro-M3000M
+humanName: Quadro M3000M
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Maxwell-2.0/Quadro-M4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000.yaml
new file mode 100644
index 000000000..da13cecbf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000.yaml
@@ -0,0 +1,46 @@
+name: Quadro-M4000
+humanName: Quadro M4000
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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: 773 MHz
+ VRAM Frequency: 1502 MHz
+ VRAM Bandwidth: 192.3 GB/s
+ VRAM Capacity: 8 GiB
+ 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/Nvidia/Maxwell-2.0/Quadro-M4000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000M.yaml
new file mode 100644
index 000000000..41a3fb668
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M4000M.yaml
@@ -0,0 +1,40 @@
+name: Quadro-M4000M
+humanName: Quadro M4000M
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Maxwell-2.0/Quadro-M5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000.yaml
new file mode 100644
index 000000000..f33d25da9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000.yaml
@@ -0,0 +1,49 @@
+name: Quadro-M5000
+humanName: Quadro M5000
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Maxwell-2.0/Quadro-M5000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000M.yaml
new file mode 100644
index 000000000..798f2afdf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5000M.yaml
@@ -0,0 +1,34 @@
+name: Quadro-M5000M
+humanName: Quadro M5000M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Maxwell-2.0/Quadro-M5500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5500-Mobile.yaml
new file mode 100644
index 000000000..ec8bfddec
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M5500-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Quadro-M5500-Mobile
+humanName: Quadro M5500 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Maxwell-2.0/Quadro-M6000-24-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000-24-GB.yaml
new file mode 100644
index 000000000..0eefece02
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000-24-GB.yaml
@@ -0,0 +1,38 @@
+name: Quadro-M6000-24-GB
+humanName: Quadro M6000 24 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Maxwell-2.0/Quadro-M6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000.yaml
new file mode 100644
index 000000000..a79035960
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell-2.0/Quadro-M6000.yaml
@@ -0,0 +1,48 @@
+name: Quadro-M6000
+humanName: Quadro M6000
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Maxwell.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell.yaml
new file mode 100644
index 000000000..d2887da2b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell.yaml
@@ -0,0 +1,53 @@
+name: Maxwell
+humanName: Maxwell
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 28 nm
+ DirectX Support: '11.0'
+ Vulkan Support: '1.3'
+ Release Date: '2014-01-13'
+ Manufacturer: Nvidia
+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
+ - 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
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-830A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-830A.yaml
new file mode 100644
index 000000000..faff71bc5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-830A.yaml
@@ -0,0 +1,34 @@
+name: GeForce-830A
+humanName: GeForce 830A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-830M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-830M.yaml
new file mode 100644
index 000000000..0e6003133
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-830M.yaml
@@ -0,0 +1,34 @@
+name: GeForce-830M
+humanName: GeForce 830M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-840A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-840A.yaml
new file mode 100644
index 000000000..650e840b8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-840A.yaml
@@ -0,0 +1,34 @@
+name: GeForce-840A
+humanName: GeForce 840A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-840M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-840M.yaml
new file mode 100644
index 000000000..254208b85
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-840M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-840M
+humanName: GeForce 840M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-845M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-845M.yaml
new file mode 100644
index 000000000..2f34a80f3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-845M.yaml
@@ -0,0 +1,43 @@
+name: GeForce-845M
+humanName: GeForce 845M
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-920MX.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-920MX.yaml
new file mode 100644
index 000000000..89a23220e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-920MX.yaml
@@ -0,0 +1,35 @@
+name: GeForce-920MX
+humanName: GeForce 920MX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-930A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-930A.yaml
new file mode 100644
index 000000000..c3c9aacbc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-930A.yaml
@@ -0,0 +1,34 @@
+name: GeForce-930A
+humanName: GeForce 930A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-930M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-930M.yaml
new file mode 100644
index 000000000..79200bf22
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-930M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-930M
+humanName: GeForce 930M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940A.yaml
new file mode 100644
index 000000000..2168d3904
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940A.yaml
@@ -0,0 +1,34 @@
+name: GeForce-940A
+humanName: GeForce 940A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940M.yaml
new file mode 100644
index 000000000..47c33415e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940M.yaml
@@ -0,0 +1,44 @@
+name: GeForce-940M
+humanName: GeForce 940M
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940MX.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940MX.yaml
new file mode 100644
index 000000000..a7d091afc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-940MX.yaml
@@ -0,0 +1,44 @@
+name: GeForce-940MX
+humanName: GeForce 940MX
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-945A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-945A.yaml
new file mode 100644
index 000000000..251242432
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-945A.yaml
@@ -0,0 +1,34 @@
+name: GeForce-945A
+humanName: GeForce 945A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-945M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-945M.yaml
new file mode 100644
index 000000000..42c7f05b8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-945M.yaml
@@ -0,0 +1,43 @@
+name: GeForce-945M
+humanName: GeForce 945M
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-745-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-745-OEM.yaml
new file mode 100644
index 000000000..f242dc355
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-745-OEM.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-745-OEM
+humanName: GeForce GTX 745 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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: 1033 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 28.80 GB/s
+ VRAM Capacity: 4 GiB
+ 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/Nvidia/Maxwell/GeForce-GTX-750-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-750-Ti.yaml
new file mode 100644
index 000000000..5e64cc7c2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-750-Ti.yaml
@@ -0,0 +1,47 @@
+name: GeForce-GTX-750-Ti
+humanName: GeForce GTX 750 Ti
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-750.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-750.yaml
new file mode 100644
index 000000000..383396871
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-750.yaml
@@ -0,0 +1,47 @@
+name: GeForce-GTX-750
+humanName: GeForce GTX 750
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-850A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-850A.yaml
new file mode 100644
index 000000000..7de35b599
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-850A.yaml
@@ -0,0 +1,43 @@
+name: GeForce-GTX-850A
+humanName: GeForce GTX 850A
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-850M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-850M.yaml
new file mode 100644
index 000000000..ad1a2ce56
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-850M.yaml
@@ -0,0 +1,43 @@
+name: GeForce-GTX-850M
+humanName: GeForce GTX 850M
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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: 902 MHz
+ VRAM Frequency: 1001 MHz
+ VRAM Bandwidth: 32.03 GB/s
+ VRAM Capacity: 2 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-860M-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-860M-OEM.yaml
new file mode 100644
index 000000000..1a59f583c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-860M-OEM.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-860M-OEM
+humanName: GeForce GTX 860M OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-860M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-860M.yaml
new file mode 100644
index 000000000..9a5c6cb41
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-860M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-860M
+humanName: GeForce GTX 860M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950A.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950A.yaml
new file mode 100644
index 000000000..eb7131acd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950A.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-950A
+humanName: GeForce GTX 950A
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..412c10b72
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950M-Mac-Edition.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-950M-Mac-Edition
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950M.yaml
new file mode 100644
index 000000000..198999652
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-950M.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-950M
+humanName: GeForce GTX 950M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-960M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-960M.yaml
new file mode 100644
index 000000000..ac4c29b64
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-GTX-960M.yaml
@@ -0,0 +1,44 @@
+name: GeForce-GTX-960M
+humanName: GeForce GTX 960M
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-MX110.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-MX110.yaml
new file mode 100644
index 000000000..6ac47b18d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-MX110.yaml
@@ -0,0 +1,35 @@
+name: GeForce-MX110
+humanName: GeForce MX110
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-MX130.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-MX130.yaml
new file mode 100644
index 000000000..5343c7160
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/GeForce-MX130.yaml
@@ -0,0 +1,35 @@
+name: GeForce-MX130
+humanName: GeForce MX130
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/NVS-810.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/NVS-810.yaml
new file mode 100644
index 000000000..90f629255
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/NVS-810.yaml
@@ -0,0 +1,35 @@
+name: NVS-810
+humanName: NVS 810
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K1200.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K1200.yaml
new file mode 100644
index 000000000..e533124b4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K1200.yaml
@@ -0,0 +1,45 @@
+name: Quadro-K1200
+humanName: Quadro K1200
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Maxwell/Quadro-K2200.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200.yaml
new file mode 100644
index 000000000..367799bc9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200.yaml
@@ -0,0 +1,46 @@
+name: Quadro-K2200
+humanName: Quadro K2200
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Maxwell/Quadro-K2200M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200M.yaml
new file mode 100644
index 000000000..2d1b34c5d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K2200M.yaml
@@ -0,0 +1,33 @@
+name: Quadro-K2200M
+humanName: Quadro K2200M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Maxwell/Quadro-K620.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620.yaml
new file mode 100644
index 000000000..be2f115e9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620.yaml
@@ -0,0 +1,47 @@
+name: Quadro-K620
+humanName: Quadro K620
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Maxwell/Quadro-K620M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620M.yaml
new file mode 100644
index 000000000..e7059097a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-K620M.yaml
@@ -0,0 +1,34 @@
+name: Quadro-K620M
+humanName: Quadro K620M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Maxwell/Quadro-M1000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1000M.yaml
new file mode 100644
index 000000000..e6a6b80f8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1000M.yaml
@@ -0,0 +1,38 @@
+name: Quadro-M1000M
+humanName: Quadro M1000M
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Maxwell/Quadro-M1200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1200-Mobile.yaml
new file mode 100644
index 000000000..ae046ad7e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M1200-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Quadro-M1200-Mobile
+humanName: Quadro M1200 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Maxwell/Quadro-M2000M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M2000M.yaml
new file mode 100644
index 000000000..ab17687a0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M2000M.yaml
@@ -0,0 +1,38 @@
+name: Quadro-M2000M
+humanName: Quadro M2000M
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Maxwell/Quadro-M500M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M500M.yaml
new file mode 100644
index 000000000..fcf8afab0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M500M.yaml
@@ -0,0 +1,34 @@
+name: Quadro-M500M
+humanName: Quadro M500M
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Maxwell/Quadro-M520-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M520-Mobile.yaml
new file mode 100644
index 000000000..276927c8d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M520-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Quadro-M520-Mobile
+humanName: Quadro M520 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Maxwell/Quadro-M600M.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M600M.yaml
new file mode 100644
index 000000000..526b81e7c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M600M.yaml
@@ -0,0 +1,37 @@
+name: Quadro-M600M
+humanName: Quadro M600M
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Maxwell/Quadro-M620-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M620-Mobile.yaml
new file mode 100644
index 000000000..de623863b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Maxwell/Quadro-M620-Mobile.yaml
@@ -0,0 +1,33 @@
+name: Quadro-M620-Mobile
+humanName: Quadro M620 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal.yaml
new file mode 100644
index 000000000..0719ee8c2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal.yaml
@@ -0,0 +1,109 @@
+name: Pascal
+humanName: Pascal
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 16-14 nm
+ DirectX Support: '12.1'
+ Vulkan Support: '1.2'
+ Release Date: '2016'
+ Manufacturer: Nvidia
+sections:
+ - header: High-end Titan range (Consumer)
+ members:
+ - TITAN-Xp
+ - TITAN-X-Pascal
+ - header: Main GTX Range (Consumer)
+ members:
+ - GeForce-GTX-1080-Ti-12-GB
+ - 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-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-Mobile-3-GB
+ - 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
+ - P104-101
+ - P106-090
+ - P106-100
+ - P106M
diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010-DDR4.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010-DDR4.yaml
new file mode 100644
index 000000000..4f189f156
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010-DDR4.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GT-1010-DDR4
+humanName: GeForce GT 1010 DDR4
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GT-1010.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010.yaml
new file mode 100644
index 000000000..c7b256d15
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1010.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GT-1010
+humanName: GeForce GT 1010
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GT-1030-DDR4.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030-DDR4.yaml
new file mode 100644
index 000000000..3f86e6b2d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030-DDR4.yaml
@@ -0,0 +1,39 @@
+name: GeForce-GT-1030-DDR4
+humanName: GeForce GT 1030 DDR4
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GT-1030.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030.yaml
new file mode 100644
index 000000000..627e350b0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GT-1030.yaml
@@ -0,0 +1,50 @@
+name: GeForce-GT-1030
+humanName: GeForce GT 1030
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1050-3-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-3-GB.yaml
new file mode 100644
index 000000000..2ab47c73b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-3-GB.yaml
@@ -0,0 +1,39 @@
+name: GeForce-GTX-1050-3-GB
+humanName: GeForce GTX 1050 3 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1050-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Max-Q.yaml
new file mode 100644
index 000000000..78e2ddca4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Max-Q.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTX-1050-Max-Q
+humanName: GeForce GTX 1050 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1050-Mobile-3-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Mobile-3-GB.yaml
new file mode 100644
index 000000000..0c58e6687
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Mobile-3-GB.yaml
@@ -0,0 +1,32 @@
+name: GeForce-GTX-1050-Mobile-3-GB
+humanName: GeForce GTX 1050 Mobile 3 GB
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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-01'
+ GPU Base Frequency: 1366 MHz
+ GPU Boost Frequency: 1442 MHz
+ VRAM Frequency: 1752 MHz
+ VRAM Bandwidth: 84.10 GB/s
+ VRAM Capacity: 3 GiB
+ 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: N17P-G0-A1
+ TDP: 75 W
+ FP32 Compute: 2.215 TFLOPS
+ FP64 Compute: 69.22 GFLOPS (1:32)
+ Outputs: Portable Device Dependent
+ Power Connectors: None
diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Mobile.yaml
new file mode 100644
index 000000000..c03b5b4b8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Mobile.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GTX-1050-Mobile
+humanName: GeForce GTX 1050 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml
new file mode 100644
index 000000000..85015a234
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Max-Q.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GTX-1050-Ti-Max-Q
+humanName: GeForce GTX 1050 Ti Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml
new file mode 100644
index 000000000..7a6ece3dc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti-Mobile.yaml
@@ -0,0 +1,32 @@
+name: GeForce-GTX-1050-Ti-Mobile
+humanName: GeForce GTX 1050 Ti Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1050-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti.yaml
new file mode 100644
index 000000000..ffe014412
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050-Ti.yaml
@@ -0,0 +1,59 @@
+name: GeForce-GTX-1050-Ti
+humanName: GeForce GTX 1050 Ti
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1050.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050.yaml
new file mode 100644
index 000000000..cc43d3e1c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1050.yaml
@@ -0,0 +1,59 @@
+name: GeForce-GTX-1050
+humanName: GeForce GTX 1050
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml
new file mode 100644
index 000000000..124757398
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB-GP104.yaml
@@ -0,0 +1,38 @@
+name: GeForce-GTX-1060-3-GB-GP104
+humanName: GeForce GTX 1060 3 GB GP104
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1060-3-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB.yaml
new file mode 100644
index 000000000..43261cca0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-3-GB.yaml
@@ -0,0 +1,38 @@
+name: GeForce-GTX-1060-3-GB
+humanName: GeForce GTX 1060 3 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1060-5-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-5-GB.yaml
new file mode 100644
index 000000000..830bb9a2e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-5-GB.yaml
@@ -0,0 +1,38 @@
+name: GeForce-GTX-1060-5-GB
+humanName: GeForce GTX 1060 5 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml
new file mode 100644
index 000000000..59cde31d0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-9Gbps.yaml
@@ -0,0 +1,38 @@
+name: GeForce-GTX-1060-6-GB-9Gbps
+humanName: GeForce GTX 1060 6 GB 9Gbps
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml
new file mode 100644
index 000000000..dc2657afd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GDDR5X.yaml
@@ -0,0 +1,38 @@
+name: GeForce-GTX-1060-6-GB-GDDR5X
+humanName: GeForce GTX 1060 6 GB GDDR5X
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml
new file mode 100644
index 000000000..9df816293
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-GP104.yaml
@@ -0,0 +1,38 @@
+name: GeForce-GTX-1060-6-GB-GP104
+humanName: GeForce GTX 1060 6 GB GP104
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml
new file mode 100644
index 000000000..081bc3135
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB-Rev.-2.yaml
@@ -0,0 +1,38 @@
+name: GeForce-GTX-1060-6-GB-Rev.-2
+humanName: GeForce GTX 1060 6 GB Rev. 2
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1060-6-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB.yaml
new file mode 100644
index 000000000..3cb2cfbce
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-6-GB.yaml
@@ -0,0 +1,39 @@
+name: GeForce-GTX-1060-6-GB
+humanName: GeForce GTX 1060 6 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml
new file mode 100644
index 000000000..694e8b9a4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-8-GB-GDDR5X.yaml
@@ -0,0 +1,38 @@
+name: GeForce-GTX-1060-8-GB-GDDR5X
+humanName: GeForce GTX 1060 8 GB GDDR5X
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1060-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Max-Q.yaml
new file mode 100644
index 000000000..71dd1d8eb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Max-Q.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTX-1060-Max-Q
+humanName: GeForce GTX 1060 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1060-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Mobile.yaml
new file mode 100644
index 000000000..bdd31a2bf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1060-Mobile.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTX-1060-Mobile
+humanName: GeForce GTX 1060 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1070-GDDR5X.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-GDDR5X.yaml
new file mode 100644
index 000000000..77a383965
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-GDDR5X.yaml
@@ -0,0 +1,40 @@
+name: GeForce-GTX-1070-GDDR5X
+humanName: GeForce GTX 1070 GDDR5X
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1070-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Max-Q.yaml
new file mode 100644
index 000000000..d75bddb8e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Max-Q.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTX-1070-Max-Q
+humanName: GeForce GTX 1070 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1070-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Mobile.yaml
new file mode 100644
index 000000000..50db77943
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Mobile.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTX-1070-Mobile
+humanName: GeForce GTX 1070 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1070-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Ti.yaml
new file mode 100644
index 000000000..196828ce9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070-Ti.yaml
@@ -0,0 +1,59 @@
+name: GeForce-GTX-1070-Ti
+humanName: GeForce GTX 1070 Ti
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1070.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070.yaml
new file mode 100644
index 000000000..1f8c2ab1d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1070.yaml
@@ -0,0 +1,59 @@
+name: GeForce-GTX-1070
+humanName: GeForce GTX 1070
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1080-11Gbps.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-11Gbps.yaml
new file mode 100644
index 000000000..02b9c138f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-11Gbps.yaml
@@ -0,0 +1,40 @@
+name: GeForce-GTX-1080-11Gbps
+humanName: GeForce GTX 1080 11Gbps
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1080-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Max-Q.yaml
new file mode 100644
index 000000000..7b11da7d6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Max-Q.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTX-1080-Max-Q
+humanName: GeForce GTX 1080 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1080-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Mobile.yaml
new file mode 100644
index 000000000..b0a1c8a9c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Mobile.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTX-1080-Mobile
+humanName: GeForce GTX 1080 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml
new file mode 100644
index 000000000..05301d72f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-10-GB.yaml
@@ -0,0 +1,38 @@
+name: GeForce-GTX-1080-Ti-10-GB
+humanName: GeForce GTX 1080 Ti 10 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml
new file mode 100644
index 000000000..493227600
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti-12-GB.yaml
@@ -0,0 +1,38 @@
+name: GeForce-GTX-1080-Ti-12-GB
+humanName: GeForce GTX 1080 Ti 12 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1080-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti.yaml
new file mode 100644
index 000000000..7721a0747
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080-Ti.yaml
@@ -0,0 +1,59 @@
+name: GeForce-GTX-1080-Ti
+humanName: GeForce GTX 1080 Ti
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-GTX-1080.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080.yaml
new file mode 100644
index 000000000..9e01ebf93
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-GTX-1080.yaml
@@ -0,0 +1,59 @@
+name: GeForce-GTX-1080
+humanName: GeForce GTX 1080
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-MX150-GP107.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150-GP107.yaml
new file mode 100644
index 000000000..ede6e0c26
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150-GP107.yaml
@@ -0,0 +1,34 @@
+name: GeForce-MX150-GP107
+humanName: GeForce MX150 GP107
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-MX150.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150.yaml
new file mode 100644
index 000000000..d7b6f6a17
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX150.yaml
@@ -0,0 +1,34 @@
+name: GeForce-MX150
+humanName: GeForce MX150
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-MX230.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX230.yaml
new file mode 100644
index 000000000..69e08998f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX230.yaml
@@ -0,0 +1,34 @@
+name: GeForce-MX230
+humanName: GeForce MX230
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-MX250.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX250.yaml
new file mode 100644
index 000000000..c6a70d934
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX250.yaml
@@ -0,0 +1,34 @@
+name: GeForce-MX250
+humanName: GeForce MX250
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-MX330.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX330.yaml
new file mode 100644
index 000000000..78869e62f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX330.yaml
@@ -0,0 +1,34 @@
+name: GeForce-MX330
+humanName: GeForce MX330
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/GeForce-MX350.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX350.yaml
new file mode 100644
index 000000000..f069fbe35
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/GeForce-MX350.yaml
@@ -0,0 +1,33 @@
+name: GeForce-MX350
+humanName: GeForce MX350
+isPart: true
+type: Graphics Card
+data:
+ Market: Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Jetson-TX2.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Jetson-TX2.yaml
new file mode 100644
index 000000000..bba2b3166
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Jetson-TX2.yaml
@@ -0,0 +1,35 @@
+name: Jetson-TX2
+humanName: Jetson TX2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Pascal
+ Lithography: 16 nm
+ DirectX Support: '12.1'
+ Vulkan Support: '1.2'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Pascal/P102-100.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/P102-100.yaml
new file mode 100644
index 000000000..66198eef8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/P102-100.yaml
@@ -0,0 +1,35 @@
+name: P102-100
+humanName: P102-100
+isPart: true
+type: Graphics Card
+data:
+ Market: Crypto
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/P102-101.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/P102-101.yaml
new file mode 100644
index 000000000..ac0c5ac44
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/P102-101.yaml
@@ -0,0 +1,35 @@
+name: P102-101
+humanName: P102-101
+isPart: true
+type: Graphics Card
+data:
+ Market: Crypto
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/P104-100.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/P104-100.yaml
new file mode 100644
index 000000000..ea07f1dce
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/P104-100.yaml
@@ -0,0 +1,35 @@
+name: P104-100
+humanName: P104-100
+isPart: true
+type: Graphics Card
+data:
+ Market: Crypto
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/P104-101.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/P104-101.yaml
new file mode 100644
index 000000000..38422fd66
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/P104-101.yaml
@@ -0,0 +1,35 @@
+name: P104-101
+humanName: P104-101
+isPart: true
+type: Graphics Card
+data:
+ Market: Crypto
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/P106-090.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/P106-090.yaml
new file mode 100644
index 000000000..9acc6e10a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/P106-090.yaml
@@ -0,0 +1,35 @@
+name: P106-090
+humanName: P106-090
+isPart: true
+type: Graphics Card
+data:
+ Market: Crypto
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/P106-100.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/P106-100.yaml
new file mode 100644
index 000000000..683e78ded
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/P106-100.yaml
@@ -0,0 +1,35 @@
+name: P106-100
+humanName: P106-100
+isPart: true
+type: Graphics Card
+data:
+ Market: Crypto
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/P106M.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/P106M.yaml
new file mode 100644
index 000000000..c85c1b612
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/P106M.yaml
@@ -0,0 +1,33 @@
+name: P106M
+humanName: P106M
+isPart: true
+type: Graphics Card
+data:
+ Market: Crypto
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 1291 MHz
+ VRAM Frequency: 1502 MHz
+ VRAM Bandwidth: 96.13 GB/s
+ VRAM Capacity: 4 GiB
+ 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/Nvidia/Pascal/Quadro-GP100.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-GP100.yaml
new file mode 100644
index 000000000..bdcada9a4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-GP100.yaml
@@ -0,0 +1,56 @@
+name: Quadro-GP100
+humanName: Quadro GP100
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P1000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000-Mobile.yaml
new file mode 100644
index 000000000..56c9dfb4e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Quadro-P1000-Mobile
+humanName: Quadro P1000 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P1000.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000.yaml
new file mode 100644
index 000000000..525c34f30
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P1000.yaml
@@ -0,0 +1,55 @@
+name: Quadro-P1000
+humanName: Quadro P1000
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P2000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000-Mobile.yaml
new file mode 100644
index 000000000..0fb1f2451
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Quadro-P2000-Mobile
+humanName: Quadro P2000 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P2000.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000.yaml
new file mode 100644
index 000000000..87b263820
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2000.yaml
@@ -0,0 +1,56 @@
+name: Quadro-P2000
+humanName: Quadro P2000
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P2200.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2200.yaml
new file mode 100644
index 000000000..8ee8407ab
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P2200.yaml
@@ -0,0 +1,55 @@
+name: Quadro-P2200
+humanName: Quadro P2200
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P3000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3000-Mobile.yaml
new file mode 100644
index 000000000..e8ffd2917
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3000-Mobile.yaml
@@ -0,0 +1,36 @@
+name: Quadro-P3000-Mobile
+humanName: Quadro P3000 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P3200-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Max-Q.yaml
new file mode 100644
index 000000000..f33960059
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Max-Q.yaml
@@ -0,0 +1,35 @@
+name: Quadro-P3200-Max-Q
+humanName: Quadro P3200 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P3200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Mobile.yaml
new file mode 100644
index 000000000..c4f70a5fb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P3200-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Quadro-P3200-Mobile
+humanName: Quadro P3200 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P400.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P400.yaml
new file mode 100644
index 000000000..019aa820a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P400.yaml
@@ -0,0 +1,56 @@
+name: Quadro-P400
+humanName: Quadro P400
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P4000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Max-Q.yaml
new file mode 100644
index 000000000..c44c99fbd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Max-Q.yaml
@@ -0,0 +1,36 @@
+name: Quadro-P4000-Max-Q
+humanName: Quadro P4000 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P4000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Mobile.yaml
new file mode 100644
index 000000000..21d62e153
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000-Mobile.yaml
@@ -0,0 +1,36 @@
+name: Quadro-P4000-Mobile
+humanName: Quadro P4000 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000.yaml
new file mode 100644
index 000000000..826b0c373
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4000.yaml
@@ -0,0 +1,55 @@
+name: Quadro-P4000
+humanName: Quadro P4000
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P4200-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Max-Q.yaml
new file mode 100644
index 000000000..4437979cb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Max-Q.yaml
@@ -0,0 +1,35 @@
+name: Quadro-P4200-Max-Q
+humanName: Quadro P4200 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P4200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Mobile.yaml
new file mode 100644
index 000000000..71a76b801
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P4200-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Quadro-P4200-Mobile
+humanName: Quadro P4200 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P500-Mobile.yaml
new file mode 100644
index 000000000..00b032afa
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P500-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Quadro-P500-Mobile
+humanName: Quadro P500 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P5000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-Mobile.yaml
new file mode 100644
index 000000000..cfb6e67db
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-Mobile.yaml
@@ -0,0 +1,36 @@
+name: Quadro-P5000-Mobile
+humanName: Quadro P5000 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P5000-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-X2-Mobile.yaml
new file mode 100644
index 000000000..ce7868807
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000-X2-Mobile.yaml
@@ -0,0 +1,36 @@
+name: Quadro-P5000-X2-Mobile
+humanName: Quadro P5000 X2 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000.yaml
new file mode 100644
index 000000000..b87bea668
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5000.yaml
@@ -0,0 +1,57 @@
+name: Quadro-P5000
+humanName: Quadro P5000
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P520-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Max-Q.yaml
new file mode 100644
index 000000000..0fba2739d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Max-Q.yaml
@@ -0,0 +1,34 @@
+name: Quadro-P520-Max-Q
+humanName: Quadro P520 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P520-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Mobile.yaml
new file mode 100644
index 000000000..31899e886
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P520-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Quadro-P520-Mobile
+humanName: Quadro P520 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P5200-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Max-Q.yaml
new file mode 100644
index 000000000..f69a06e32
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Max-Q.yaml
@@ -0,0 +1,35 @@
+name: Quadro-P5200-Max-Q
+humanName: Quadro P5200 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P5200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Mobile.yaml
new file mode 100644
index 000000000..3a8107eb0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P5200-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Quadro-P5200-Mobile
+humanName: Quadro P5200 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P600-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600-Mobile.yaml
new file mode 100644
index 000000000..b89582fd0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Quadro-P600-Mobile
+humanName: Quadro P600 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P600.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600.yaml
new file mode 100644
index 000000000..48bb685d6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P600.yaml
@@ -0,0 +1,55 @@
+name: Quadro-P600
+humanName: Quadro P600
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P6000.yaml
new file mode 100644
index 000000000..e188e5054
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P6000.yaml
@@ -0,0 +1,58 @@
+name: Quadro-P6000
+humanName: Quadro P6000
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P620-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620-Mobile.yaml
new file mode 100644
index 000000000..c685114ab
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Quadro-P620-Mobile
+humanName: Quadro P620 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/Quadro-P620.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620.yaml
new file mode 100644
index 000000000..c15a8c9ca
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/Quadro-P620.yaml
@@ -0,0 +1,55 @@
+name: Quadro-P620
+humanName: Quadro P620
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/TITAN-X-Pascal.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-X-Pascal.yaml
new file mode 100644
index 000000000..deaf7c02a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-X-Pascal.yaml
@@ -0,0 +1,40 @@
+name: TITAN-X-Pascal
+humanName: TITAN X Pascal
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Pascal/TITAN-Xp.yaml b/specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-Xp.yaml
new file mode 100644
index 000000000..1fd7a3c2b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Pascal/TITAN-Xp.yaml
@@ -0,0 +1,39 @@
+name: TITAN-Xp
+humanName: TITAN Xp
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Rankine.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine.yaml
new file mode 100644
index 000000000..2deafcf83
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine.yaml
@@ -0,0 +1,80 @@
+name: Rankine
+humanName: Rankine
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 150 - 130 nm
+ DirectX Support: '9.0a'
+ Vulkan Support: 'N/A'
+ Release Date: '2003-01-21'
+ Manufacturer: Nvidia
+sections:
+ - header: Main FX Range (Consumer)
+ 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-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
+ - GeForce-FX-Go5250
+ - GeForce-FX-Go5300
+ - GeForce-FX-Go5350
+ - GeForce-FX-Go5600
+ - GeForce-FX-Go5650
+ - GeForce-FX-Go5700
+ - header: Quadro FX (Workstation)
+ members:
+ - 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-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
new file mode 100644
index 000000000..a65447371
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5100.yaml
@@ -0,0 +1,34 @@
+name: GeForce-FX-5100
+humanName: GeForce FX 5100
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ FP32 Compute: 12 GFLOPS
+ TDP: unknown
+ Slot Width: Single-slot
+ 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
new file mode 100644
index 000000000..600b7ea80
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-LE.yaml
@@ -0,0 +1,36 @@
+name: GeForce-FX-5200-LE
+humanName: GeForce FX 5200 LE
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 2.656 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ FP32 Compute: 15 GFLOPS
+ GPU Variant: NV34 5200
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 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
new file mode 100644
index 000000000..13be60603
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-PCI.yaml
@@ -0,0 +1,36 @@
+name: GeForce-FX-5200-PCI
+humanName: GeForce FX 5200 PCI
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 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
new file mode 100644
index 000000000..8e2dc4c68
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Rev.-2.yaml
@@ -0,0 +1,35 @@
+name: GeForce-FX-5200-Rev.-2
+humanName: GeForce FX 5200 Rev. 2
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 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
new file mode 100644
index 000000000..9f563a6c8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra-Mac-Edition.yaml
@@ -0,0 +1,33 @@
+name: GeForce-FX-5200-Ultra-Mac-Edition
+humanName: GeForce FX 5200 Ultra Mac Edition
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 325 MHz
+ VRAM Frequency: 325 MHz
+ VRAM Bandwidth: 10.40 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ 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
new file mode 100644
index 000000000..3f09c06e4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200-Ultra.yaml
@@ -0,0 +1,37 @@
+name: GeForce-FX-5200-Ultra
+humanName: GeForce FX 5200 Ultra
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 325 MHz
+ VRAM Frequency: 325 MHz
+ VRAM Bandwidth: 10.40 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ FP32 Compute: 19.5 GFLOPS
+ GPU Variant: NV34 5200 Ultra
+ TDP: 32 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 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
new file mode 100644
index 000000000..01d6bf0d9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5200.yaml
@@ -0,0 +1,36 @@
+name: GeForce-FX-5200
+humanName: GeForce FX 5200
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ FP32 Compute: 15 GFLOPS
+ GPU Variant: NV34 5200
+ TDP: 21 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 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
new file mode 100644
index 000000000..a54c2c72f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500-PCI.yaml
@@ -0,0 +1,36 @@
+name: GeForce-FX-5500-PCI
+humanName: GeForce FX 5500 PCI
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 270 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 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
new file mode 100644
index 000000000..9f9c71eb1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5500.yaml
@@ -0,0 +1,37 @@
+name: GeForce-FX-5500
+humanName: GeForce FX 5500
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 270 MHz
+ VRAM Frequency: 166 MHz
+ VRAM Bandwidth: 5.312 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ FP32 Compute: 16.2 GFLOPS
+ GPU Variant: FX 5500
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 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
new file mode 100644
index 000000000..e9df7c2ca
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-Ultra.yaml
@@ -0,0 +1,37 @@
+name: GeForce-FX-5600-Ultra
+humanName: GeForce FX 5600 Ultra
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ FP32 Compute: 21 GFLOPS
+ GPU Variant: GF-FX-5600-U-A1
+ TDP: 27 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 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
new file mode 100644
index 000000000..790a13869
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT-PCI.yaml
@@ -0,0 +1,32 @@
+name: GeForce-FX-5600-XT-PCI
+humanName: GeForce FX 5600 XT PCI
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 235 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ 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
new file mode 100644
index 000000000..64e2016c8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600-XT.yaml
@@ -0,0 +1,36 @@
+name: GeForce-FX-5600-XT
+humanName: GeForce FX 5600 XT
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 235 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ VRAM Bus Width: 128 bit
+ Render Output Unit Count: 4
+ 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 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
new file mode 100644
index 000000000..19600e0a4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5600.yaml
@@ -0,0 +1,37 @@
+name: GeForce-FX-5600
+humanName: GeForce FX 5600
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 325 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ VRAM Bus Width: 128 bit
+ Render Output Unit Count: 4
+ 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 VGA
+ - 1x S-Video
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-EP.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-EP.yaml
new file mode 100644
index 000000000..3f07b496a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-EP.yaml
@@ -0,0 +1,34 @@
+name: GeForce-FX-5700-EP
+humanName: GeForce FX 5700 EP
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 425 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 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
new file mode 100644
index 000000000..225090f8e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Engineering-Sample.yaml
@@ -0,0 +1,33 @@
+name: GeForce-FX-5700-Engineering-Sample
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 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
new file mode 100644
index 000000000..bce9793e1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-LE.yaml
@@ -0,0 +1,35 @@
+name: GeForce-FX-5700-LE
+humanName: GeForce FX 5700 LE
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ VRAM Bus Width: 64 bit
+ Render Output Unit Count: 4
+ 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: 21 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 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
new file mode 100644
index 000000000..d3b9e9ce7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-Ultra.yaml
@@ -0,0 +1,37 @@
+name: GeForce-FX-5700-Ultra
+humanName: GeForce FX 5700 Ultra
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 475 MHz
+ VRAM Frequency: 453 MHz
+ VRAM Bandwidth: 14.50 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR2
+ VRAM Bus Width: 128 bit
+ Render Output Unit Count: 4
+ 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 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
new file mode 100644
index 000000000..80dd93a40
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700-VE.yaml
@@ -0,0 +1,35 @@
+name: GeForce-FX-5700-VE
+humanName: GeForce FX 5700 VE
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ VRAM Bus Width: 128 bit
+ Render Output Unit Count: 4
+ Texture Mapping Unit Count: 4
+ Shader Processor Count: 0
+ Die Size: 133 mm²
+ FP32 Compute: 17.5 GFLOPS
+ GPU: NV36
+ TDP: 20 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 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
new file mode 100644
index 000000000..cb8084c1b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5700.yaml
@@ -0,0 +1,35 @@
+name: GeForce-FX-5700
+humanName: GeForce FX 5700
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 425 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ VRAM Bus Width: 128 bit
+ Render Output Unit Count: 4
+ 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 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
new file mode 100644
index 000000000..a90d77195
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800-Ultra.yaml
@@ -0,0 +1,36 @@
+name: GeForce-FX-5800-Ultra
+humanName: GeForce FX 5800 Ultra
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 16.00 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR2
+ VRAM Bus Width: 128 bit
+ Render Output Unit Count: 4
+ Texture Mapping Unit Count: 8
+ Shader Processor Count: 0
+ Die Size: 199 mm²
+ FP32 Compute: 30 GFLOPS
+ GPU: NV30
+ TDP: 66 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 1x DVI
+ - 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
new file mode 100644
index 000000000..f5652dd8b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5800.yaml
@@ -0,0 +1,36 @@
+name: GeForce-FX-5800
+humanName: GeForce FX 5800
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: GDDR2
+ VRAM Bus Width: 128 bit
+ Render Output Unit Count: 4
+ 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 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
new file mode 100644
index 000000000..314058be8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-Ultra.yaml
@@ -0,0 +1,37 @@
+name: GeForce-FX-5900-Ultra
+humanName: GeForce FX 5900 Ultra
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 425 MHz
+ VRAM Bandwidth: 27.20 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ VRAM Bus Width: 256 bit
+ Render Output Unit Count: 4
+ 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: 65 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 1x DVI
+ - 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
new file mode 100644
index 000000000..e6242f6ec
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-XT.yaml
@@ -0,0 +1,35 @@
+name: GeForce-FX-5900-XT
+humanName: GeForce FX 5900 XT
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 350 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ VRAM Bus Width: 256 bit
+ Render Output Unit Count: 4
+ 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 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
new file mode 100644
index 000000000..88c05cea0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900-ZT.yaml
@@ -0,0 +1,35 @@
+name: GeForce-FX-5900-ZT
+humanName: GeForce FX 5900 ZT
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 325 MHz
+ VRAM Frequency: 350 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ VRAM Bus Width: 256 bit
+ Render Output Unit Count: 4
+ 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 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
new file mode 100644
index 000000000..fa5f79c63
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5900.yaml
@@ -0,0 +1,37 @@
+name: GeForce-FX-5900
+humanName: GeForce FX 5900
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 425 MHz
+ VRAM Bandwidth: 27.20 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ VRAM Bus Width: 256 bit
+ Render Output Unit Count: 4
+ Texture Mapping Unit Count: 8
+ Shader Processor Count: 0
+ Die Size: 207 mm²
+ FP32 Compute: 28 GFLOPS
+ GPU: NV35
+ GPU Variant: FX 5900
+ TDP: 55 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 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
new file mode 100644
index 000000000..fa8abc012
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-5950-Ultra.yaml
@@ -0,0 +1,38 @@
+name: GeForce-FX-5950-Ultra
+humanName: GeForce FX 5950 Ultra
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 475 MHz
+ VRAM Frequency: 475 MHz
+ VRAM Bandwidth: 30.40 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ VRAM Bus Width: 256 bit
+ Render Output Unit Count: 4
+ 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 VGA
+ - 1x S-Video
+ 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
new file mode 100644
index 000000000..e1fdb8414
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5100.yaml
@@ -0,0 +1,32 @@
+name: GeForce-FX-Go5100
+humanName: GeForce FX Go5100
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-32M.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-32M.yaml
new file mode 100644
index 000000000..ca4b829a5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-32M.yaml
@@ -0,0 +1,32 @@
+name: GeForce-FX-Go5200-32M
+humanName: GeForce FX Go5200 32M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-64M.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-64M.yaml
new file mode 100644
index 000000000..63dcf3693
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-64M.yaml
@@ -0,0 +1,32 @@
+name: GeForce-FX-Go5200-64M
+humanName: GeForce FX Go5200 64M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..ec64372cf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-32M.yaml
@@ -0,0 +1,32 @@
+name: GeForce-FX-Go5200-NPB-32M
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..64ef8dafe
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200-NPB-64M.yaml
@@ -0,0 +1,32 @@
+name: GeForce-FX-Go5200-NPB-64M
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200.yaml
new file mode 100644
index 000000000..f85af9a1f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5200.yaml
@@ -0,0 +1,32 @@
+name: GeForce-FX-Go5200
+humanName: GeForce FX Go5200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 32 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5250.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5250.yaml
new file mode 100644
index 000000000..453b9dc51
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5250.yaml
@@ -0,0 +1,31 @@
+name: GeForce-FX-Go5250
+humanName: GeForce FX Go5250
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5300.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5300.yaml
new file mode 100644
index 000000000..ea9836999
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5300.yaml
@@ -0,0 +1,31 @@
+name: GeForce-FX-Go5300
+humanName: GeForce FX Go5300
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 275 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5350.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5350.yaml
new file mode 100644
index 000000000..0c2902cef
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5350.yaml
@@ -0,0 +1,31 @@
+name: GeForce-FX-Go5350
+humanName: GeForce FX Go5350
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 275 MHz
+ VRAM Frequency: 275 MHz
+ VRAM Bandwidth: 8.800 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5600.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5600.yaml
new file mode 100644
index 000000000..cfca4e3fa
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5600.yaml
@@ -0,0 +1,32 @@
+name: GeForce-FX-Go5600
+humanName: GeForce FX Go5600
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 275 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5650.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5650.yaml
new file mode 100644
index 000000000..ac34fb4a9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5650.yaml
@@ -0,0 +1,32 @@
+name: GeForce-FX-Go5650
+humanName: GeForce FX Go5650
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 325 MHz
+ VRAM Frequency: 295 MHz
+ VRAM Bandwidth: 9.440 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5700.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5700.yaml
new file mode 100644
index 000000000..9ab7ea52f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-FX-Go5700.yaml
@@ -0,0 +1,32 @@
+name: GeForce-FX-Go5700
+humanName: GeForce FX Go5700
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 275 MHz
+ VRAM Bandwidth: 8.800 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Outputs: Portable Device Dependent
+ Power Connectors: None
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5300.yaml b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5300.yaml
new file mode 100644
index 000000000..d3af4a862
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5300.yaml
@@ -0,0 +1,35 @@
+name: GeForce-PCX-5300
+humanName: GeForce PCX 5300
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ FP32 Compute: 15 GFLOPS
+ TDP: 21 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 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
new file mode 100644
index 000000000..fefbc9543
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5750.yaml
@@ -0,0 +1,37 @@
+name: GeForce-PCX-5750
+humanName: GeForce PCX 5750
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 425 MHz
+ VRAM Frequency: 275 MHz
+ VRAM Bandwidth: 8.800 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ VRAM Bus Width: 128 bit
+ Render Output Unit Count: 4
+ 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 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
new file mode 100644
index 000000000..b0220d762
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5900.yaml
@@ -0,0 +1,35 @@
+name: GeForce-PCX-5900
+humanName: GeForce PCX 5900
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 275 MHz
+ VRAM Bandwidth: 17.60 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ VRAM Bus Width: 256 bit
+ Render Output Unit Count: 4
+ Texture Mapping Unit Count: 8
+ Shader Processor Count: 0
+ Die Size: 207 mm²
+ FP32 Compute: 25.5 GFLOPS
+ GPU: NV35
+ TDP: 49 W
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 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
new file mode 100644
index 000000000..3dbaf7123
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/GeForce-PCX-5950.yaml
@@ -0,0 +1,34 @@
+name: GeForce-PCX-5950
+humanName: GeForce PCX 5950
+isPart: true
+type: Graphics Card
+data:
+ Market: Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 475 MHz
+ VRAM Frequency: 425 MHz
+ VRAM Bandwidth: 27.20 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ VRAM Bus Width: 256 bit
+ Render Output Unit Count: 4
+ 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
+ Outputs:
+ - 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
new file mode 100644
index 000000000..aad65074e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1000.yaml
@@ -0,0 +1,36 @@
+name: Quadro-FX-1000
+humanName: Quadro FX 1000
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 300 MHz
+ VRAM Bandwidth: 9.600 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ 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
new file mode 100644
index 000000000..46f4619f8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1100.yaml
@@ -0,0 +1,36 @@
+name: Quadro-FX-1100
+humanName: Quadro FX 1100
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 425 MHz
+ VRAM Frequency: 325 MHz
+ VRAM Bandwidth: 10.40 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ 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
new file mode 100644
index 000000000..2dbff20b3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-1300.yaml
@@ -0,0 +1,36 @@
+name: Quadro-FX-1300
+humanName: Quadro FX 1300
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 275 MHz
+ VRAM Bandwidth: 17.60 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 55 W
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ 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
new file mode 100644
index 000000000..de653d248
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-2000.yaml
@@ -0,0 +1,36 @@
+name: Quadro-FX-2000
+humanName: Quadro FX 2000
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ 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
new file mode 100644
index 000000000..0d7dc57e8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000.yaml
@@ -0,0 +1,36 @@
+name: Quadro-FX-3000
+humanName: Quadro FX 3000
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 425 MHz
+ VRAM Bandwidth: 27.20 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ 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
new file mode 100644
index 000000000..324c7e43b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-3000G.yaml
@@ -0,0 +1,37 @@
+name: Quadro-FX-3000G
+humanName: Quadro FX 3000G
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 425 MHz
+ VRAM Bandwidth: 27.20 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ - 1x SDI
+ 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
new file mode 100644
index 000000000..822720a51
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-330.yaml
@@ -0,0 +1,34 @@
+name: Quadro-FX-330
+humanName: Quadro FX 330
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: 21 W
+ Slot Width: Single-slot
+ Outputs: 1x DVI
+ 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
new file mode 100644
index 000000000..8a04411e8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-500.yaml
@@ -0,0 +1,36 @@
+name: Quadro-FX-500
+humanName: Quadro FX 500
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 270 MHz
+ VRAM Frequency: 240 MHz
+ VRAM Bandwidth: 7.680 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ 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
new file mode 100644
index 000000000..4d9245e54
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-600-PCI.yaml
@@ -0,0 +1,35 @@
+name: Quadro-FX-600-PCI
+humanName: Quadro FX 600 PCI
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 270 MHz
+ VRAM Frequency: 240 MHz
+ VRAM Bandwidth: 7.680 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 2x DVI
+ - 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
new file mode 100644
index 000000000..16e82a2b9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-700.yaml
@@ -0,0 +1,36 @@
+name: Quadro-FX-700
+humanName: Quadro FX 700
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 275 MHz
+ VRAM Frequency: 275 MHz
+ VRAM Bandwidth: 8.800 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA
+ 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
new file mode 100644
index 000000000..b65af1d22
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go1000.yaml
@@ -0,0 +1,31 @@
+name: Quadro-FX-Go1000
+humanName: Quadro FX Go1000
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 295 MHz
+ VRAM Frequency: 285 MHz
+ VRAM Bandwidth: 9.120 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ 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
new file mode 100644
index 000000000..441650347
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-FX-Go700.yaml
@@ -0,0 +1,31 @@
+name: Quadro-FX-Go700
+humanName: Quadro FX Go700
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 295 MHz
+ VRAM Frequency: 295 MHz
+ VRAM Bandwidth: 9.440 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ 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
new file mode 100644
index 000000000..bb1888120
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-AGP.yaml
@@ -0,0 +1,33 @@
+name: Quadro-NVS-280-AGP
+humanName: Quadro NVS 280 AGP
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 275 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 13 W
+ Slot Width: Single-slot
+ 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
new file mode 100644
index 000000000..266b81e77
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCI.yaml
@@ -0,0 +1,33 @@
+name: Quadro-NVS-280-PCI
+humanName: Quadro NVS 280 PCI
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 275 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 4.000 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 13 W
+ Slot Width: Single-slot
+ 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
new file mode 100644
index 000000000..53da8e209
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-280-PCIe.yaml
@@ -0,0 +1,33 @@
+name: Quadro-NVS-280-PCIe
+humanName: Quadro NVS 280 PCIe
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 275 MHz
+ VRAM Frequency: 250 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ TDP: 13 W
+ Slot Width: Single-slot
+ 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
new file mode 100644
index 000000000..6513581c7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Rankine/Quadro-NVS-55-PCI.yaml
@@ -0,0 +1,34 @@
+name: Quadro-NVS-55-PCI
+humanName: Quadro NVS 55 PCI
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 64 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x S-Video
+ Power Connectors: None
+ Length: 168 mm
+ Pixel Shaders: 4
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0.yaml
new file mode 100644
index 000000000..e71c399b9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0.yaml
@@ -0,0 +1,82 @@
+name: Tesla-2.0
+humanName: Tesla 2.0
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 40-55 nm
+ DirectX Support: '10.1'
+ Vulkan Support: 'N/A'
+ Release Date: '2007-04-17'
+ Manufacturer: Nvidia
+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
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
new file mode 100644
index 000000000..c38918379
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-205-OEM.yaml
@@ -0,0 +1,34 @@
+name: GeForce-205-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Tesla-2.0/GeForce-210-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-OEM.yaml
new file mode 100644
index 000000000..38842aa05
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-OEM.yaml
@@ -0,0 +1,33 @@
+name: GeForce-210-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Tesla-2.0/GeForce-210-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-PCI.yaml
new file mode 100644
index 000000000..2b2d43ff2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-PCI.yaml
@@ -0,0 +1,33 @@
+name: GeForce-210-PCI
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..72f63a354
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210-Rev.-2.yaml
@@ -0,0 +1,36 @@
+name: GeForce-210-Rev.-2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210.yaml
new file mode 100644
index 000000000..18f36ae2a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-210.yaml
@@ -0,0 +1,36 @@
+name: GeForce-210
+humanName: GeForce 210
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 520 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-305M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-305M.yaml
new file mode 100644
index 000000000..a88bfd46b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-305M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-305M
+humanName: GeForce 305M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 525 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 11.20 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..96560e213
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-310-OEM.yaml
@@ -0,0 +1,34 @@
+name: GeForce-310-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Tesla-2.0/GeForce-310M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-310M.yaml
new file mode 100644
index 000000000..2bb7241f6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-310M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-310M
+humanName: GeForce 310M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 790 MHz
+ VRAM Bandwidth: 12.64 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..67ea3a4f9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-315-OEM.yaml
@@ -0,0 +1,34 @@
+name: GeForce-315-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Tesla-2.0/GeForce-315M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-315M.yaml
new file mode 100644
index 000000000..4ad49a5a5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-315M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-315M
+humanName: GeForce 315M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 606 MHz
+ VRAM Frequency: 790 MHz
+ VRAM Bandwidth: 12.64 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-320M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-320M-Mac-Edition.yaml
new file mode 100644
index 000000000..ddc880f60
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-320M-Mac-Edition.yaml
@@ -0,0 +1,32 @@
+name: GeForce-320M-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..2354a238d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-405-OEM.yaml
@@ -0,0 +1,33 @@
+name: GeForce-405-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Tesla-2.0/GeForce-405M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-405M.yaml
new file mode 100644
index 000000000..0a326ed83
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-405M.yaml
@@ -0,0 +1,32 @@
+name: GeForce-405M
+humanName: GeForce 405M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 606 MHz
+ VRAM Frequency: 790 MHz
+ VRAM Bandwidth: 12.64 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..4b82b9922
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-505-OEM.yaml
@@ -0,0 +1,34 @@
+name: GeForce-505-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/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
new file mode 100644
index 000000000..fef590b7b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-8400-GS-PCI-Rev.-2.yaml
@@ -0,0 +1,34 @@
+name: GeForce-8400-GS-PCI-Rev.-2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..eed6ce911
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-8400-GS-Rev.-3.yaml
@@ -0,0 +1,36 @@
+name: GeForce-8400-GS-Rev.-3
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..8148071ac
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-9300-GS-Rev.-2.yaml
@@ -0,0 +1,35 @@
+name: GeForce-9300-GS-Rev.-2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..878af6178
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-9400-GT-Rev.-3.yaml
@@ -0,0 +1,36 @@
+name: GeForce-9400-GT-Rev.-3
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G105M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G105M.yaml
new file mode 100644
index 000000000..09b732301
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G105M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-G105M
+humanName: GeForce G105M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 535 MHz
+ VRAM Frequency: 790 MHz
+ VRAM Bandwidth: 12.64 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..056e4108b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G210-OEM-Rev.-2.yaml
@@ -0,0 +1,34 @@
+name: GeForce-G210-OEM-Rev.-2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Tesla-2.0/GeForce-G210M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G210M.yaml
new file mode 100644
index 000000000..e00d77743
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-G210M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-G210M
+humanName: GeForce G210M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 606 MHz
+ VRAM Frequency: 790 MHz
+ VRAM Bandwidth: 12.64 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..61c4e415f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-220-OEM.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-220-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Tesla-2.0/GeForce-GT-220.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-220.yaml
new file mode 100644
index 000000000..31de017f5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-220.yaml
@@ -0,0 +1,36 @@
+name: GeForce-GT-220
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..3381107fc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-230M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GT-230M
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..9a86fd4cf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-240.yaml
@@ -0,0 +1,36 @@
+name: GeForce-GT-240
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..9522717a2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-240M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GT-240M
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..550324434
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-320-OEM.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-320-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Tesla-2.0/GeForce-GT-325M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-325M.yaml
new file mode 100644
index 000000000..e5bd27d46
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-325M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GT-325M
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..ee79240a2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330-OEM.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-330-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml
new file mode 100644
index 000000000..8e8a4601a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330M-Mac-Edition.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GT-330M-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..c1136eab5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-330M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GT-330M
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..50f54c5b7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-335M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GT-335M
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..289bbbb37
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-340-OEM.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-340-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Tesla-2.0/GeForce-GT-415-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-415-OEM.yaml
new file mode 100644
index 000000000..e8ef54890
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GT-415-OEM.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GT-415-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Tesla-2.0/GeForce-GTS-250M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-250M.yaml
new file mode 100644
index 000000000..ac51520ac
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-250M.yaml
@@ -0,0 +1,31 @@
+name: GeForce-GTS-250M
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..20637a352
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-260M.yaml
@@ -0,0 +1,31 @@
+name: GeForce-GTS-260M
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..bba1c64b0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-350M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GTS-350M
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..bfd3486f2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTS-360M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GTS-360M
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..5cd0a8948
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Core-216-Rev.-2.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-260-Core-216-Rev.-2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..38df1e1d1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Core-216.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-260-Core-216
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..ef8b601fb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-OEM.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-260-OEM
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml
new file mode 100644
index 000000000..7a54b8254
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260-Rev.-2.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-260-Rev.-2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..60b4ac980
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-260.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-260
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..ba352ffa9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-275.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-275
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..1c04ec7cf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-280.yaml
@@ -0,0 +1,38 @@
+name: GeForce-GTX-280
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..aa4b9b773
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285-Mac-Edition.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-285-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Tesla-2.0/GeForce-GTX-285-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285-X2.yaml
new file mode 100644
index 000000000..5b86895d7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285-X2.yaml
@@ -0,0 +1,39 @@
+name: GeForce-GTX-285-X2
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..535f5a4d4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-285.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-285
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..5260dbab3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-295-Single-PCB.yaml
@@ -0,0 +1,37 @@
+name: GeForce-GTX-295-Single-PCB
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..fab939bd8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-295.yaml
@@ -0,0 +1,39 @@
+name: GeForce-GTX-295
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..114417c08
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/GeForce-GTX-470-PhysX-Edition.yaml
@@ -0,0 +1,35 @@
+name: GeForce-GTX-470-PhysX-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/ION-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/ION-2.yaml
new file mode 100644
index 000000000..060de96e6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/ION-2.yaml
@@ -0,0 +1,32 @@
+name: ION-2
+humanName: ION 2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base 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: 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-2100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-2100M.yaml
new file mode 100644
index 000000000..85eaff4a1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-2100M.yaml
@@ -0,0 +1,31 @@
+name: NVS-2100M
+humanName: NVS 2100M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 535 MHz
+ VRAM Frequency: 790 MHz
+ VRAM Bandwidth: 12.64 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-300.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-300.yaml
new file mode 100644
index 000000000..1715b47dc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-300.yaml
@@ -0,0 +1,34 @@
+name: NVS-300
+humanName: NVS 300
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 520 MHz
+ VRAM Frequency: 790 MHz
+ VRAM Bandwidth: 12.64 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-3100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-3100M.yaml
new file mode 100644
index 000000000..802dca00f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-3100M.yaml
@@ -0,0 +1,32 @@
+name: NVS-3100M
+humanName: NVS 3100M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 606 MHz
+ VRAM Frequency: 790 MHz
+ VRAM Bandwidth: 12.64 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-5100M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-5100M.yaml
new file mode 100644
index 000000000..d72a03253
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/NVS-5100M.yaml
@@ -0,0 +1,33 @@
+name: NVS-5100M
+humanName: NVS 5100M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-400.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-400.yaml
new file mode 100644
index 000000000..6ba528deb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-400.yaml
@@ -0,0 +1,37 @@
+name: Quadro-400
+humanName: Quadro 400
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 770 MHz
+ VRAM Bandwidth: 12.32 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-CX.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-CX.yaml
new file mode 100644
index 000000000..db590e9f9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-CX.yaml
@@ -0,0 +1,36 @@
+name: Quadro-CX
+humanName: Quadro CX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 602 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 76.80 GB/s
+ VRAM Capacity: 1536 MiB
+ 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
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..18ffdbb82
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-1800M.yaml
@@ -0,0 +1,33 @@
+name: Quadro-FX-1800M
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..1d2c43b1a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-380-LP.yaml
@@ -0,0 +1,37 @@
+name: Quadro-FX-380-LP
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..0742023d0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-3800.yaml
@@ -0,0 +1,38 @@
+name: Quadro-FX-3800
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..f4538c169
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-380M.yaml
@@ -0,0 +1,32 @@
+name: Quadro-FX-380M
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..e84d36bde
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-4800-Mac-Edition.yaml
@@ -0,0 +1,37 @@
+name: Quadro-FX-4800-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..8770c3e17
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-4800.yaml
@@ -0,0 +1,37 @@
+name: Quadro-FX-4800
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..d2c8abcc0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-5800.yaml
@@ -0,0 +1,38 @@
+name: Quadro-FX-5800
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..5fb72e773
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-FX-880M.yaml
@@ -0,0 +1,33 @@
+name: Quadro-FX-880M
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..c96ca3a0d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-Plex-2200-D2.yaml
@@ -0,0 +1,32 @@
+name: Quadro-Plex-2200-D2
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..7ef0ab0ca
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla-2.0/Quadro-Plex-2200-S4.yaml
@@ -0,0 +1,32 @@
+name: Quadro-Plex-2200-S4
+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'
+ Vulkan Support: 'N/A'
+ 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 GiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla.yaml
new file mode 100644
index 000000000..9266e9d28
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla.yaml
@@ -0,0 +1,171 @@
+name: Tesla
+humanName: Tesla
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 55-90 nm
+ DirectX Support: '10.0'
+ Vulkan Support: 'N/A'
+ Release Date: '2006-11-08'
+ Manufacturer: Nvidia
+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
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8100-+-nForce-720a.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8100-+-nForce-720a.yaml
new file mode 100644
index 000000000..b16563f40
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8100-+-nForce-720a.yaml
@@ -0,0 +1,34 @@
+name: GeForce-8100-+-nForce-720a
+humanName: GeForce 8100 + nForce 720a
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base 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: 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8200.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8200.yaml
new file mode 100644
index 000000000..174ee7cf8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8200.yaml
@@ -0,0 +1,33 @@
+name: GeForce-8200
+humanName: GeForce 8200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base 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: 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8200M-G-mGPU-AMD.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8200M-G-mGPU-AMD.yaml
new file mode 100644
index 000000000..014aaf294
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8200M-G-mGPU-AMD.yaml
@@ -0,0 +1,32 @@
+name: GeForce-8200M-G-mGPU-AMD
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8200M-G-mGPU-Intel.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8200M-G-mGPU-Intel.yaml
new file mode 100644
index 000000000..84b9904a6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8200M-G-mGPU-Intel.yaml
@@ -0,0 +1,32 @@
+name: GeForce-8200M-G-mGPU-Intel
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8300-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8300-GS.yaml
new file mode 100644
index 000000000..5626ceeee
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8300-GS.yaml
@@ -0,0 +1,34 @@
+name: GeForce-8300-GS
+humanName: GeForce 8300 GS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 459 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 128 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8300.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8300.yaml
new file mode 100644
index 000000000..17442f538
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8300.yaml
@@ -0,0 +1,33 @@
+name: GeForce-8300
+humanName: GeForce 8300
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base 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: 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS-PCI.yaml
new file mode 100644
index 000000000..986e9d91f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS-PCI.yaml
@@ -0,0 +1,36 @@
+name: GeForce-8400-GS-PCI
+humanName: GeForce 8400 GS PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 567 MHz
+ VRAM Frequency: 333 MHz
+ VRAM Bandwidth: 5.328 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..3f56f0495
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS-Rev.-2.yaml
@@ -0,0 +1,36 @@
+name: GeForce-8400-GS-Rev.-2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS.yaml
new file mode 100644
index 000000000..10c3c903d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-GS.yaml
@@ -0,0 +1,36 @@
+name: GeForce-8400-GS
+humanName: GeForce 8400 GS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 459 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-SE.yaml
new file mode 100644
index 000000000..ec8167ff5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400-SE.yaml
@@ -0,0 +1,35 @@
+name: GeForce-8400-SE
+humanName: GeForce 8400 SE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 459 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 128 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400.yaml
new file mode 100644
index 000000000..0202f42e0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400.yaml
@@ -0,0 +1,34 @@
+name: GeForce-8400
+humanName: GeForce 8400
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 540 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-G.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-G.yaml
new file mode 100644
index 000000000..9b2f7e69c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-G.yaml
@@ -0,0 +1,33 @@
+name: GeForce-8400M-G
+humanName: GeForce 8400M G
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-GS.yaml
new file mode 100644
index 000000000..515906a55
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-GS.yaml
@@ -0,0 +1,33 @@
+name: GeForce-8400M-GS
+humanName: GeForce 8400M GS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-GT.yaml
new file mode 100644
index 000000000..1619605ad
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8400M-GT.yaml
@@ -0,0 +1,33 @@
+name: GeForce-8400M-GT
+humanName: GeForce 8400M GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 602 MHz
+ VRAM Bandwidth: 19.26 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8500-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8500-GT.yaml
new file mode 100644
index 000000000..0ab137948
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8500-GT.yaml
@@ -0,0 +1,36 @@
+name: GeForce-8500-GT
+humanName: GeForce 8500 GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 459 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GS.yaml
new file mode 100644
index 000000000..e42fe5fe2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GS.yaml
@@ -0,0 +1,34 @@
+name: GeForce-8600-GS
+humanName: GeForce 8600 GS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 540 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..6f436ec76
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GT-Mac-Edition.yaml
@@ -0,0 +1,32 @@
+name: GeForce-8600-GT-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Tesla/GeForce-8600-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GT.yaml
new file mode 100644
index 000000000..a40651e7e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GT.yaml
@@ -0,0 +1,36 @@
+name: GeForce-8600-GT
+humanName: GeForce 8600 GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 540 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..fe3b5dd35
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GTS-Mac-Edition.yaml
@@ -0,0 +1,31 @@
+name: GeForce-8600-GTS-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Tesla/GeForce-8600-GTS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GTS.yaml
new file mode 100644
index 000000000..2bb709e9d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600-GTS.yaml
@@ -0,0 +1,36 @@
+name: GeForce-8600-GTS
+humanName: GeForce 8600 GTS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 675 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 32.00 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600M-GS.yaml
new file mode 100644
index 000000000..08a8dde69
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600M-GS.yaml
@@ -0,0 +1,33 @@
+name: GeForce-8600M-GS
+humanName: GeForce 8600M GS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600M-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600M-GT.yaml
new file mode 100644
index 000000000..444aba7fb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8600M-GT.yaml
@@ -0,0 +1,33 @@
+name: GeForce-8600M-GT
+humanName: GeForce 8600M GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 475 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8700M-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8700M-GT.yaml
new file mode 100644
index 000000000..ba8efbe4d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8700M-GT.yaml
@@ -0,0 +1,33 @@
+name: GeForce-8700M-GT
+humanName: GeForce 8700M GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..bc8c47cd2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GS-Mac-Edition.yaml
@@ -0,0 +1,32 @@
+name: GeForce-8800-GS-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GS.yaml
new file mode 100644
index 000000000..d2b2899c9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GS.yaml
@@ -0,0 +1,36 @@
+name: GeForce-8800-GS
+humanName: GeForce 8800 GS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 38.40 GB/s
+ VRAM Capacity: 384 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..03f52d85b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GT-Mac-Edition.yaml
@@ -0,0 +1,32 @@
+name: GeForce-8800-GT-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Tesla/GeForce-8800-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GT.yaml
new file mode 100644
index 000000000..966c76d24
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GT.yaml
@@ -0,0 +1,36 @@
+name: GeForce-8800-GT
+humanName: GeForce 8800 GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 57.60 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-320.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-320.yaml
new file mode 100644
index 000000000..b66400c4f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-320.yaml
@@ -0,0 +1,36 @@
+name: GeForce-8800-GTS-320
+humanName: GeForce 8800 GTS 320
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 513 MHz
+ VRAM Frequency: 792 MHz
+ VRAM Bandwidth: 63.36 GB/s
+ VRAM Capacity: 320 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-512.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-512.yaml
new file mode 100644
index 000000000..bb9a7f5ec
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-512.yaml
@@ -0,0 +1,36 @@
+name: GeForce-8800-GTS-512
+humanName: GeForce 8800 GTS 512
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 820 MHz
+ VRAM Bandwidth: 52.48 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-640.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-640.yaml
new file mode 100644
index 000000000..0231db375
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-640.yaml
@@ -0,0 +1,36 @@
+name: GeForce-8800-GTS-640
+humanName: GeForce 8800 GTS 640
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 513 MHz
+ VRAM Frequency: 792 MHz
+ VRAM Bandwidth: 63.36 GB/s
+ VRAM Capacity: 640 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..48c3d90fd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTS-Core-112.yaml
@@ -0,0 +1,36 @@
+name: GeForce-8800-GTS-Core-112
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTX.yaml
new file mode 100644
index 000000000..4d9dd19ef
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-GTX.yaml
@@ -0,0 +1,36 @@
+name: GeForce-8800-GTX
+humanName: GeForce 8800 GTX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 576 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 86.40 GB/s
+ VRAM Capacity: 768 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-Ultra.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-Ultra.yaml
new file mode 100644
index 000000000..9aa25ca11
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800-Ultra.yaml
@@ -0,0 +1,36 @@
+name: GeForce-8800-Ultra
+humanName: GeForce 8800 Ultra
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 612 MHz
+ VRAM Frequency: 1080 MHz
+ VRAM Bandwidth: 103.7 GB/s
+ VRAM Capacity: 768 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800M-GTS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800M-GTS.yaml
new file mode 100644
index 000000000..957b205ca
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800M-GTS.yaml
@@ -0,0 +1,33 @@
+name: GeForce-8800M-GTS
+humanName: GeForce 8800M GTS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800M-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800M-GTX.yaml
new file mode 100644
index 000000000..7c2ceb05e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-8800M-GTX.yaml
@@ -0,0 +1,33 @@
+name: GeForce-8800M-GTX
+humanName: GeForce 8800M GTX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9100.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9100.yaml
new file mode 100644
index 000000000..89f62897d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9100.yaml
@@ -0,0 +1,33 @@
+name: GeForce-9100
+humanName: GeForce 9100
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base 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: 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9100M-G-mGPU-AMD.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9100M-G-mGPU-AMD.yaml
new file mode 100644
index 000000000..ac19175b7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9100M-G-mGPU-AMD.yaml
@@ -0,0 +1,32 @@
+name: GeForce-9100M-G-mGPU-AMD
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9100M-G-mGPU-Intel.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9100M-G-mGPU-Intel.yaml
new file mode 100644
index 000000000..6737a897f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9100M-G-mGPU-Intel.yaml
@@ -0,0 +1,32 @@
+name: GeForce-9100M-G-mGPU-Intel
+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'
+ Vulkan Support: 'N/A'
+ 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
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200.yaml
new file mode 100644
index 000000000..5eb2aad27
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200.yaml
@@ -0,0 +1,33 @@
+name: GeForce-9200
+humanName: GeForce 9200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base 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: 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M-GS-GDDR3.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M-GS-GDDR3.yaml
new file mode 100644
index 000000000..a5790fb94
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M-GS-GDDR3.yaml
@@ -0,0 +1,32 @@
+name: GeForce-9200M-GS-GDDR3
+humanName: GeForce 9200M GS GDDR3
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 529 MHz
+ VRAM Frequency: 702 MHz
+ VRAM Bandwidth: 11.23 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M-GS.yaml
new file mode 100644
index 000000000..88cf0be5c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M-GS.yaml
@@ -0,0 +1,32 @@
+name: GeForce-9200M-GS
+humanName: GeForce 9200M GS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 529 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M.yaml
new file mode 100644
index 000000000..68d9a403d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9200M.yaml
@@ -0,0 +1,32 @@
+name: GeForce-9200M
+humanName: GeForce 9200M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 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: 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-+-nForce-730i.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-+-nForce-730i.yaml
new file mode 100644
index 000000000..ca98c28b0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-+-nForce-730i.yaml
@@ -0,0 +1,34 @@
+name: GeForce-9300-+-nForce-730i
+humanName: GeForce 9300 + nForce 730i
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 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: 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-GE.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-GE.yaml
new file mode 100644
index 000000000..3f12b72ef
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-GE.yaml
@@ -0,0 +1,34 @@
+name: GeForce-9300-GE
+humanName: GeForce 9300 GE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 540 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-GS.yaml
new file mode 100644
index 000000000..df1295204
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-GS.yaml
@@ -0,0 +1,34 @@
+name: GeForce-9300-GS
+humanName: GeForce 9300 GS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 567 MHz
+ VRAM Frequency: 333 MHz
+ VRAM Bandwidth: 5.328 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-SE.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-SE.yaml
new file mode 100644
index 000000000..a6c0fc5ae
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300-SE.yaml
@@ -0,0 +1,34 @@
+name: GeForce-9300-SE
+humanName: GeForce 9300 SE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 540 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-G.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-G.yaml
new file mode 100644
index 000000000..1e1b4e649
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-G.yaml
@@ -0,0 +1,32 @@
+name: GeForce-9300M-G
+humanName: GeForce 9300M G
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-GS-GDDR3.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-GS-GDDR3.yaml
new file mode 100644
index 000000000..255443184
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-GS-GDDR3.yaml
@@ -0,0 +1,33 @@
+name: GeForce-9300M-GS-GDDR3
+humanName: GeForce 9300M GS GDDR3
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 580 MHz
+ VRAM Frequency: 702 MHz
+ VRAM Bandwidth: 11.23 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-GS.yaml
new file mode 100644
index 000000000..627a9779c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9300M-GS.yaml
@@ -0,0 +1,33 @@
+name: GeForce-9300M-GS
+humanName: GeForce 9300M GS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 580 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT-PCI.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT-PCI.yaml
new file mode 100644
index 000000000..79b661868
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT-PCI.yaml
@@ -0,0 +1,35 @@
+name: GeForce-9400-GT-PCI
+humanName: GeForce 9400 GT PCI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..4367953ee
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT-Rev.-2.yaml
@@ -0,0 +1,35 @@
+name: GeForce-9400-GT-Rev.-2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT.yaml
new file mode 100644
index 000000000..28e3dcd74
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400-GT.yaml
@@ -0,0 +1,36 @@
+name: GeForce-9400-GT
+humanName: GeForce 9400 GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400.yaml
new file mode 100644
index 000000000..c47bbb622
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400.yaml
@@ -0,0 +1,33 @@
+name: GeForce-9400
+humanName: GeForce 9400
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 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: 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400M-G.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400M-G.yaml
new file mode 100644
index 000000000..a947a0eb0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400M-G.yaml
@@ -0,0 +1,32 @@
+name: GeForce-9400M-G
+humanName: GeForce 9400M G
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 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: 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400M.yaml
new file mode 100644
index 000000000..e8833f06b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9400M.yaml
@@ -0,0 +1,32 @@
+name: GeForce-9400M
+humanName: GeForce 9400M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 580 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: 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..12c854935
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GS-Rev.-2.yaml
@@ -0,0 +1,34 @@
+name: GeForce-9500-GS-Rev.-2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GS.yaml
new file mode 100644
index 000000000..a5dcaa2fd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GS.yaml
@@ -0,0 +1,35 @@
+name: GeForce-9500-GS
+humanName: GeForce 9500 GS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 504 MHz
+ VRAM Bandwidth: 16.13 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..f7b421721
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Mac-Edition.yaml
@@ -0,0 +1,33 @@
+name: GeForce-9500-GT-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Tesla/GeForce-9500-GT-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Rev.-2.yaml
new file mode 100644
index 000000000..b81698dfb
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Rev.-2.yaml
@@ -0,0 +1,36 @@
+name: GeForce-9500-GT-Rev.-2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..706a817fc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT-Rev.-3.yaml
@@ -0,0 +1,36 @@
+name: GeForce-9500-GT-Rev.-3
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT.yaml
new file mode 100644
index 000000000..3c37a9066
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500-GT.yaml
@@ -0,0 +1,34 @@
+name: GeForce-9500-GT
+humanName: GeForce 9500 GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 32.00 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500M-G.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500M-G.yaml
new file mode 100644
index 000000000..fc1d2873c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500M-G.yaml
@@ -0,0 +1,32 @@
+name: GeForce-9500M-G
+humanName: GeForce 9500M G
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500M-GS.yaml
new file mode 100644
index 000000000..771e46844
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9500M-GS.yaml
@@ -0,0 +1,32 @@
+name: GeForce-9500M-GS
+humanName: GeForce 9500M GS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 475 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GS-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GS-OEM.yaml
new file mode 100644
index 000000000..37e53ac5e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GS-OEM.yaml
@@ -0,0 +1,33 @@
+name: GeForce-9600-GS-OEM
+humanName: GeForce 9600 GS OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 48.00 GB/s
+ VRAM Capacity: 768 MiB
+ 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/Nvidia/Tesla/GeForce-9600-GSO-512.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GSO-512.yaml
new file mode 100644
index 000000000..2b8aa47b6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GSO-512.yaml
@@ -0,0 +1,36 @@
+name: GeForce-9600-GSO-512
+humanName: GeForce 9600 GSO 512
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 57.60 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GSO.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GSO.yaml
new file mode 100644
index 000000000..f2687f130
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GSO.yaml
@@ -0,0 +1,35 @@
+name: GeForce-9600-GSO
+humanName: GeForce 9600 GSO
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 38.40 GB/s
+ VRAM Capacity: 384 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..ddc78c62b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Green-Edition.yaml
@@ -0,0 +1,36 @@
+name: GeForce-9600-GT-Green-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
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
new file mode 100644
index 000000000..b7cc78bd8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Mac-Edition.yaml
@@ -0,0 +1,32 @@
+name: GeForce-9600-GT-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Tesla/GeForce-9600-GT-Rev.-2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Rev.-2.yaml
new file mode 100644
index 000000000..7e3d32545
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT-Rev.-2.yaml
@@ -0,0 +1,36 @@
+name: GeForce-9600-GT-Rev.-2
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT.yaml
new file mode 100644
index 000000000..e52c4657b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GT.yaml
@@ -0,0 +1,37 @@
+name: GeForce-9600-GT
+humanName: GeForce 9600 GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 57.60 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GTX.yaml
new file mode 100644
index 000000000..ab6c64729
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600-GTX.yaml
@@ -0,0 +1,35 @@
+name: GeForce-9600-GTX
+humanName: GeForce 9600 GTX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 580 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 44.80 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GS.yaml
new file mode 100644
index 000000000..7b2fc552d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GS.yaml
@@ -0,0 +1,33 @@
+name: GeForce-9600M-GS
+humanName: GeForce 9600M GS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 430 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..008c6350a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GT-Mac-Edition.yaml
@@ -0,0 +1,33 @@
+name: GeForce-9600M-GT-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GT.yaml
new file mode 100644
index 000000000..46a64f3a1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9600M-GT.yaml
@@ -0,0 +1,33 @@
+name: GeForce-9600M-GT
+humanName: GeForce 9600M GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 792 MHz
+ VRAM Bandwidth: 25.34 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9650M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9650M-GS.yaml
new file mode 100644
index 000000000..20f21283e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9650M-GS.yaml
@@ -0,0 +1,32 @@
+name: GeForce-9650M-GS
+humanName: GeForce 9650M GS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9650M-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9650M-GT.yaml
new file mode 100644
index 000000000..29f530ba0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9650M-GT.yaml
@@ -0,0 +1,33 @@
+name: GeForce-9650M-GT
+humanName: GeForce 9650M GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9700M-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9700M-GT.yaml
new file mode 100644
index 000000000..1ce252905
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9700M-GT.yaml
@@ -0,0 +1,33 @@
+name: GeForce-9700M-GT
+humanName: GeForce 9700M GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9700M-GTS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9700M-GTS.yaml
new file mode 100644
index 000000000..f143bf38c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9700M-GTS.yaml
@@ -0,0 +1,32 @@
+name: GeForce-9700M-GTS
+humanName: GeForce 9700M GTS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 530 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GT-Rebrand.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GT-Rebrand.yaml
new file mode 100644
index 000000000..5010027de
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GT-Rebrand.yaml
@@ -0,0 +1,36 @@
+name: GeForce-9800-GT-Rebrand
+humanName: GeForce 9800 GT Rebrand
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 725 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GT.yaml
new file mode 100644
index 000000000..29f3bc34b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GT.yaml
@@ -0,0 +1,37 @@
+name: GeForce-9800-GT
+humanName: GeForce 9800 GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 57.60 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GTX+.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GTX+.yaml
new file mode 100644
index 000000000..96e9b6667
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GTX+.yaml
@@ -0,0 +1,38 @@
+name: GeForce-9800-GTX+
+humanName: GeForce 9800 GTX+
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 738 MHz
+ VRAM Frequency: 1100 MHz
+ VRAM Bandwidth: 70.40 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GTX.yaml
new file mode 100644
index 000000000..eb901479e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GTX.yaml
@@ -0,0 +1,38 @@
+name: GeForce-9800-GTX
+humanName: GeForce 9800 GTX
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 675 MHz
+ VRAM Frequency: 1100 MHz
+ VRAM Bandwidth: 70.40 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GX2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GX2.yaml
new file mode 100644
index 000000000..47bd7e63a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800-GX2.yaml
@@ -0,0 +1,36 @@
+name: GeForce-9800-GX2
+humanName: GeForce 9800 GX2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GS.yaml
new file mode 100644
index 000000000..0ace82b7b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GS.yaml
@@ -0,0 +1,32 @@
+name: GeForce-9800M-GS
+humanName: GeForce 9800M GS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 530 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GT.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GT.yaml
new file mode 100644
index 000000000..936c0d25e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GT.yaml
@@ -0,0 +1,33 @@
+name: GeForce-9800M-GT
+humanName: GeForce 9800M GT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GTS.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GTS.yaml
new file mode 100644
index 000000000..bad696240
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800M-GTS.yaml
@@ -0,0 +1,32 @@
+name: GeForce-9800M-GTS
+humanName: GeForce 9800M GTS
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800S.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800S.yaml
new file mode 100644
index 000000000..9ee7aa226
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-9800S.yaml
@@ -0,0 +1,33 @@
+name: GeForce-9800S
+humanName: GeForce 9800S
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 799 MHz
+ VRAM Bandwidth: 51.14 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G100-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G100-OEM.yaml
new file mode 100644
index 000000000..ed3092b75
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G100-OEM.yaml
@@ -0,0 +1,34 @@
+name: GeForce-G100-OEM
+humanName: GeForce G100 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 540 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 256 MiB
+ 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/Nvidia/Tesla/GeForce-G102M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G102M.yaml
new file mode 100644
index 000000000..3d8a58984
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G102M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-G102M
+humanName: GeForce G102M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 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: 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G103M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G103M.yaml
new file mode 100644
index 000000000..1a6230317
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G103M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-G103M
+humanName: GeForce G103M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 640 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G110M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G110M.yaml
new file mode 100644
index 000000000..60646ecd2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G110M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-G110M
+humanName: GeForce G110M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 11.20 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G205M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G205M.yaml
new file mode 100644
index 000000000..a0904ff53
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G205M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-G205M
+humanName: GeForce G205M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 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: 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G210-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G210-OEM.yaml
new file mode 100644
index 000000000..4b5403c80
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-G210-OEM.yaml
@@ -0,0 +1,33 @@
+name: GeForce-G210-OEM
+humanName: GeForce G210 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 504 MHz
+ VRAM Bandwidth: 8.064 GB/s
+ VRAM Capacity: 512 MiB
+ 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/Nvidia/Tesla/GeForce-GT-120-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120-Mac-Edition.yaml
new file mode 100644
index 000000000..686f35aac
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120-Mac-Edition.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GT-120-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Tesla/GeForce-GT-120-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120-OEM.yaml
new file mode 100644
index 000000000..4e677a9a3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120-OEM.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GT-120-OEM
+humanName: GeForce GT 120 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 738 MHz
+ VRAM Frequency: 504 MHz
+ VRAM Bandwidth: 16.13 GB/s
+ VRAM Capacity: 512 MiB
+ 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/Nvidia/Tesla/GeForce-GT-120M-Mac-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120M-Mac-Edition.yaml
new file mode 100644
index 000000000..7bfad8d7b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120M-Mac-Edition.yaml
@@ -0,0 +1,32 @@
+name: GeForce-GT-120M-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120M.yaml
new file mode 100644
index 000000000..a473204f9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-120M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GT-120M
+humanName: GeForce GT 120M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 16.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..9716ad77f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130-Mac-Edition.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GT-130-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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/Nvidia/Tesla/GeForce-GT-130-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130-OEM.yaml
new file mode 100644
index 000000000..0eb2eb430
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130-OEM.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GT-130-OEM
+humanName: GeForce GT 130 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 24.00 GB/s
+ VRAM Capacity: 512 MiB
+ 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/Nvidia/Tesla/GeForce-GT-130M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130M.yaml
new file mode 100644
index 000000000..5694bb3e4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-130M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GT-130M
+humanName: GeForce GT 130M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-140-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-140-OEM.yaml
new file mode 100644
index 000000000..bdc1e6a75
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-140-OEM.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GT-140-OEM
+humanName: GeForce GT 140 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 57.60 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/Nvidia/Tesla/GeForce-GT-220M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-220M.yaml
new file mode 100644
index 000000000..8c3c9c8f6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-220M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GT-220M
+humanName: GeForce GT 220M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 16.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-230-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-230-OEM.yaml
new file mode 100644
index 000000000..5591ced77
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-230-OEM.yaml
@@ -0,0 +1,31 @@
+name: GeForce-GT-230-OEM
+humanName: GeForce GT 230 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 24.00 GB/s
+ VRAM Capacity: 1536 MiB
+ 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/Nvidia/Tesla/GeForce-GT-230.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-230.yaml
new file mode 100644
index 000000000..11d703ea2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-230.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GT-230
+humanName: GeForce GT 230
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 650 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 57.60 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-240M-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-240M-LE.yaml
new file mode 100644
index 000000000..0a931d143
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-240M-LE.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GT-240M-LE
+humanName: GeForce GT 240M LE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-320M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-320M.yaml
new file mode 100644
index 000000000..196cc8ea9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GT-320M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GT-320M
+humanName: GeForce GT 320M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 16.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-150-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-150-OEM.yaml
new file mode 100644
index 000000000..c571ead5c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-150-OEM.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GTS-150-OEM
+humanName: GeForce GTS 150 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 738 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/Nvidia/Tesla/GeForce-GTS-150M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-150M.yaml
new file mode 100644
index 000000000..abffc3930
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-150M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GTS-150M
+humanName: GeForce GTS 150M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-160M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-160M.yaml
new file mode 100644
index 000000000..17d63ccfa
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-160M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GTS-160M
+humanName: GeForce GTS 160M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-240-OEM.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-240-OEM.yaml
new file mode 100644
index 000000000..5eb9db8b8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-240-OEM.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTS-240-OEM
+humanName: GeForce GTS 240 OEM
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 675 MHz
+ VRAM Frequency: 1100 MHz
+ VRAM Bandwidth: 70.40 GB/s
+ VRAM Capacity: 1024 MiB
+ 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/Nvidia/Tesla/GeForce-GTS-250.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-250.yaml
new file mode 100644
index 000000000..03cee84e2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTS-250.yaml
@@ -0,0 +1,34 @@
+name: GeForce-GTS-250
+humanName: GeForce GTS 250
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 702 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-260M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-260M.yaml
new file mode 100644
index 000000000..0f636b52e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-260M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GTX-260M
+humanName: GeForce GTX 260M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 950 MHz
+ VRAM Bandwidth: 60.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..17a05cc65
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-275-PhysX-Edition.yaml
@@ -0,0 +1,36 @@
+name: GeForce-GTX-275-PhysX-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-280M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-280M.yaml
new file mode 100644
index 000000000..3fb3c0f35
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-280M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GTX-280M
+humanName: GeForce GTX 280M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 585 MHz
+ VRAM Frequency: 950 MHz
+ VRAM Bandwidth: 60.80 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-285M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-285M.yaml
new file mode 100644
index 000000000..14b9f4f87
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/GeForce-GTX-285M.yaml
@@ -0,0 +1,33 @@
+name: GeForce-GTX-285M
+humanName: GeForce GTX 285M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/ION-LE.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/ION-LE.yaml
new file mode 100644
index 000000000..c3136050a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/ION-LE.yaml
@@ -0,0 +1,31 @@
+name: ION-LE
+humanName: ION LE
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 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: 16
+ Die Size: 162 mm²
+ GPU: ION
+ TDP: 20 W
+ FP32 Compute: 35.20 GFLOPS
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/ION.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/ION.yaml
new file mode 100644
index 000000000..85c493ffe
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/ION.yaml
@@ -0,0 +1,31 @@
+name: ION
+humanName: ION
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 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: 16
+ Die Size: 162 mm²
+ GPU: ION
+ TDP: 20 W
+ FP32 Compute: 35.20 GFLOPS
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1600M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1600M.yaml
new file mode 100644
index 000000000..f895c66f8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1600M.yaml
@@ -0,0 +1,33 @@
+name: Quadro-FX-1600M
+humanName: Quadro FX 1600M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..44fc0f32b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700-Mac-Edition.yaml
@@ -0,0 +1,36 @@
+name: Quadro-FX-1700-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700.yaml
new file mode 100644
index 000000000..946134e1a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700.yaml
@@ -0,0 +1,37 @@
+name: Quadro-FX-1700
+humanName: Quadro FX 1700
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 460 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700M.yaml
new file mode 100644
index 000000000..0e5880de5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1700M.yaml
@@ -0,0 +1,33 @@
+name: Quadro-FX-1700M
+humanName: Quadro FX 1700M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1800.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1800.yaml
new file mode 100644
index 000000000..c717b41a7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-1800.yaml
@@ -0,0 +1,37 @@
+name: Quadro-FX-1800
+humanName: Quadro FX 1800
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 38.40 GB/s
+ VRAM Capacity: 768 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-2700M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-2700M.yaml
new file mode 100644
index 000000000..c828d459b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-2700M.yaml
@@ -0,0 +1,33 @@
+name: Quadro-FX-2700M
+humanName: Quadro FX 2700M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 530 MHz
+ VRAM Frequency: 799 MHz
+ VRAM Bandwidth: 51.14 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-2800M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-2800M.yaml
new file mode 100644
index 000000000..19abf804e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-2800M.yaml
@@ -0,0 +1,33 @@
+name: Quadro-FX-2800M
+humanName: Quadro FX 2800M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3600M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3600M.yaml
new file mode 100644
index 000000000..b17442cb6
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3600M.yaml
@@ -0,0 +1,33 @@
+name: Quadro-FX-3600M
+humanName: Quadro FX 3600M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-360M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-360M.yaml
new file mode 100644
index 000000000..d86130631
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-360M.yaml
@@ -0,0 +1,32 @@
+name: Quadro-FX-360M
+humanName: Quadro FX 360M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370-LP.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370-LP.yaml
new file mode 100644
index 000000000..a932aae27
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370-LP.yaml
@@ -0,0 +1,34 @@
+name: Quadro-FX-370-LP
+humanName: Quadro FX 370 LP
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 540 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370.yaml
new file mode 100644
index 000000000..2d16d1a4e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370.yaml
@@ -0,0 +1,34 @@
+name: Quadro-FX-370
+humanName: Quadro FX 370
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 360 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 8.000 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3700.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3700.yaml
new file mode 100644
index 000000000..345717381
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3700.yaml
@@ -0,0 +1,37 @@
+name: Quadro-FX-3700
+humanName: Quadro FX 3700
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3700M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3700M.yaml
new file mode 100644
index 000000000..e8d70bc23
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3700M.yaml
@@ -0,0 +1,33 @@
+name: Quadro-FX-3700M
+humanName: Quadro FX 3700M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370M.yaml
new file mode 100644
index 000000000..c5109acae
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-370M.yaml
@@ -0,0 +1,33 @@
+name: Quadro-FX-370M
+humanName: Quadro FX 370M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 580 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-380.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-380.yaml
new file mode 100644
index 000000000..140e696c1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-380.yaml
@@ -0,0 +1,34 @@
+name: Quadro-FX-380
+humanName: Quadro FX 380
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3800M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3800M.yaml
new file mode 100644
index 000000000..1427fbdd4
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-3800M.yaml
@@ -0,0 +1,33 @@
+name: Quadro-FX-3800M
+humanName: Quadro FX 3800M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 675 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 64.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4600-SDI.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4600-SDI.yaml
new file mode 100644
index 000000000..15d8db9d3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4600-SDI.yaml
@@ -0,0 +1,36 @@
+name: Quadro-FX-4600-SDI
+humanName: Quadro FX 4600 SDI
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 67.20 GB/s
+ VRAM Capacity: 768 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4600.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4600.yaml
new file mode 100644
index 000000000..38e8ce62a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4600.yaml
@@ -0,0 +1,37 @@
+name: Quadro-FX-4600
+humanName: Quadro FX 4600
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 67.20 GB/s
+ VRAM Capacity: 768 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-470.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-470.yaml
new file mode 100644
index 000000000..8d9058925
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-470.yaml
@@ -0,0 +1,31 @@
+name: Quadro-FX-470
+humanName: Quadro FX 470
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 580 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: 16
+ Die Size: 144 mm²
+ GPU: C79
+ TDP: 38 W
+ FP32 Compute: 44.80 GFLOPS
+ Slot Width: IGP
+ Outputs: 2x DVI
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4700-X2.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4700-X2.yaml
new file mode 100644
index 000000000..968cf5da3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-4700-X2.yaml
@@ -0,0 +1,38 @@
+name: Quadro-FX-4700-X2
+humanName: Quadro FX 4700 X2
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..6b50457b1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-5600-Mac-Edition.yaml
@@ -0,0 +1,34 @@
+name: Quadro-FX-5600-Mac-Edition
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-5600.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-5600.yaml
new file mode 100644
index 000000000..5d569a6cf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-5600.yaml
@@ -0,0 +1,37 @@
+name: Quadro-FX-5600
+humanName: Quadro FX 5600
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 76.80 GB/s
+ VRAM Capacity: 1536 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-570.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-570.yaml
new file mode 100644
index 000000000..3ba183459
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-570.yaml
@@ -0,0 +1,34 @@
+name: Quadro-FX-570
+humanName: Quadro FX 570
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 460 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 12.80 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-570M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-570M.yaml
new file mode 100644
index 000000000..ff2b13813
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-570M.yaml
@@ -0,0 +1,32 @@
+name: Quadro-FX-570M
+humanName: Quadro FX 570M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 475 MHz
+ VRAM Frequency: 702 MHz
+ VRAM Bandwidth: 22.46 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-580.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-580.yaml
new file mode 100644
index 000000000..9e2495da1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-580.yaml
@@ -0,0 +1,37 @@
+name: Quadro-FX-580
+humanName: Quadro FX 580
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-770M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-770M.yaml
new file mode 100644
index 000000000..2cd2c7142
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-FX-770M.yaml
@@ -0,0 +1,33 @@
+name: Quadro-FX-770M
+humanName: Quadro FX 770M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 25.60 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-130M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-130M.yaml
new file mode 100644
index 000000000..ad075c813
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-130M.yaml
@@ -0,0 +1,32 @@
+name: Quadro-NVS-130M
+humanName: Quadro NVS 130M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 11.20 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-135M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-135M.yaml
new file mode 100644
index 000000000..d3f93abad
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-135M.yaml
@@ -0,0 +1,32 @@
+name: Quadro-NVS-135M
+humanName: Quadro NVS 135M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 594 MHz
+ VRAM Bandwidth: 9.504 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-140M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-140M.yaml
new file mode 100644
index 000000000..88fb6bf5a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-140M.yaml
@@ -0,0 +1,32 @@
+name: Quadro-NVS-140M
+humanName: Quadro NVS 140M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 400 MHz
+ VRAM Frequency: 600 MHz
+ VRAM Bandwidth: 9.600 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-150M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-150M.yaml
new file mode 100644
index 000000000..5ccb944af
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-150M.yaml
@@ -0,0 +1,33 @@
+name: Quadro-NVS-150M
+humanName: Quadro NVS 150M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 530 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 11.20 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-160M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-160M.yaml
new file mode 100644
index 000000000..8f1e2b1f2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-160M.yaml
@@ -0,0 +1,33 @@
+name: Quadro-NVS-160M
+humanName: Quadro NVS 160M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 580 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 11.20 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-290.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-290.yaml
new file mode 100644
index 000000000..3018b4d29
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-290.yaml
@@ -0,0 +1,34 @@
+name: Quadro-NVS-290
+humanName: Quadro NVS 290
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 459 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-295.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-295.yaml
new file mode 100644
index 000000000..38a46f0be
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-295.yaml
@@ -0,0 +1,33 @@
+name: Quadro-NVS-295
+humanName: Quadro NVS 295
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 540 MHz
+ VRAM Frequency: 695 MHz
+ VRAM Bandwidth: 11.12 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-320M.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-320M.yaml
new file mode 100644
index 000000000..cc48a9527
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-320M.yaml
@@ -0,0 +1,32 @@
+name: Quadro-NVS-320M
+humanName: Quadro NVS 320M
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 575 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 22.40 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-420.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-420.yaml
new file mode 100644
index 000000000..7da42f7ab
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-420.yaml
@@ -0,0 +1,32 @@
+name: Quadro-NVS-420
+humanName: Quadro NVS 420
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 550 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 11.20 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-450.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-450.yaml
new file mode 100644
index 000000000..d6db57d5c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-NVS-450.yaml
@@ -0,0 +1,32 @@
+name: Quadro-NVS-450
+humanName: Quadro NVS 450
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 480 MHz
+ VRAM Frequency: 700 MHz
+ VRAM Bandwidth: 11.20 GB/s
+ VRAM Capacity: 256 MiB
+ 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
+ Market:
+ - Workstation
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
new file mode 100644
index 000000000..b97efd5f9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-1000-Model-IV.yaml
@@ -0,0 +1,31 @@
+name: Quadro-Plex-1000-Model-IV
+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'
+ Vulkan Support: 'N/A'
+ 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 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-2100-D4.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-2100-D4.yaml
new file mode 100644
index 000000000..f8a7f12f8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-2100-D4.yaml
@@ -0,0 +1,31 @@
+name: Quadro-Plex-2100-D4
+humanName: Quadro Plex 2100 D4
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 1024 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-2100-S4.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-2100-S4.yaml
new file mode 100644
index 000000000..fe43c790c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-Plex-2100-S4.yaml
@@ -0,0 +1,31 @@
+name: Quadro-Plex-2100-S4
+humanName: Quadro Plex 2100 S4
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 76.80 GB/s
+ VRAM Capacity: 1536 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-VX-200.yaml b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-VX-200.yaml
new file mode 100644
index 000000000..609ebec4c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Tesla/Quadro-VX-200.yaml
@@ -0,0 +1,35 @@
+name: Quadro-VX-200
+humanName: Quadro VX 200
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 512 MiB
+ 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
+ Market:
+ - Workstation
diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing.yaml
new file mode 100644
index 000000000..41879b6e2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing.yaml
@@ -0,0 +1,100 @@
+name: Turing
+humanName: Turing
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 12 nm
+ DirectX Support: '12.2'
+ Vulkan Support: '1.3'
+ Release Date: '2018-08-13'
+ Manufacturer: Nvidia
+sections:
+ - header: Enthusiast Titan
+ members:
+ - TITAN-RTX
+ - header: Main RTX Range (Consumer)
+ members:
+ - GeForce-RTX-2080-Ti-12-GB
+ - GeForce-RTX-2080-Ti
+ - GeForce-RTX-2080-SUPER
+ - GeForce-RTX-2080-Engineering-Sample
+ - GeForce-RTX-2080
+ - GeForce-RTX-2070-SUPER
+ - GeForce-RTX-2070
+ - GeForce-RTX-2060-TU104
+ - GeForce-RTX-2060-SUPER
+ - GeForce-RTX-2060-12-GB
+ - GeForce-RTX-2060
+ - header: Main GTX Range (Consumer)
+ members:
+ - GeForce-GTX-1660-Ti
+ - GeForce-GTX-1660-SUPER
+ - GeForce-GTX-1660
+ - GeForce-GTX-1650-TU116
+ - GeForce-GTX-1650-TU106
+ - GeForce-GTX-1650-SUPER
+ - GeForce-GTX-1650-GDDR6
+ - GeForce-GTX-1650
+ - GeForce-GTX-1630
+ - header: Main RTX Range (Mobile)
+ members:
+ - GeForce-GTX-1660-Ti-Mobile
+ - GeForce-GTX-1660-Ti-Max-Q
+ - GeForce-GTX-1650-Ti-Mobile
+ - GeForce-GTX-1650-Ti-Max-Q
+ - GeForce-GTX-1650-Mobile
+ - GeForce-GTX-1650-Max-Q
+ - header: Quadro Desktop (Workstation)
+ members:
+ - Quadro-RTX-8000-Passive
+ - Quadro-RTX-8000
+ - Quadro-RTX-6000-Passive
+ - Quadro-RTX-6000
+ - Quadro-RTX-5000
+ - Quadro-RTX-4000
+ - header: Quadro Mobile (Workstation)
+ members:
+ - Quadro-T2000-Mobile
+ - Quadro-T2000-Max-Q
+ - Quadro-T1200-Mobile
+ - Quadro-T1200-Max-Q
+ - Quadro-T1000-Mobile-GDDR6
+ - Quadro-T1000-Mobile
+ - Quadro-T1000-Max-Q
+ - Quadro-RTX-6000-Mobile
+ - Quadro-RTX-5000-X2-Mobile
+ - Quadro-RTX-5000-Mobile-Refresh
+ - Quadro-RTX-5000-Mobile
+ - Quadro-RTX-5000-Max-Q
+ - Quadro-RTX-4000-Mobile
+ - Quadro-RTX-4000-Max-Q
+ - Quadro-RTX-3000-X2-Mobile
+ - Quadro-RTX-3000-Mobile-Refresh
+ - Quadro-RTX-3000-Mobile
+ - Quadro-RTX-3000-Max-Q
+ - header: Workstation T Series
+ members:
+ - T1000-8-GB
+ - T1000
+ - T600
+ - T400-4-GB
+ - T400
+ - header: Workstation T Series Mobile
+ members:
+ - T600-Mobile
+ - T600-Max-Q
+ - T550-Mobile
+ - T500-Mobile
+ - T500-Max-Q
+ - header: Budget Mobile
+ members:
+ - GeForce-MX450-30.5W-8Gbps
+ - GeForce-MX450-30.5W-10Gbps
+ - GeForce-MX550
+ - GeForce-MX450-12W
+ - header: Crypto Mining
+ members:
+ - CMP-50HX
+ - CMP-40HX
+ - CMP-30HX
diff --git a/specs/GPUs-CONSUMER/Nvidia/Turing/CMP-30HX.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/CMP-30HX.yaml
new file mode 100644
index 000000000..f99375ff9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/CMP-30HX.yaml
@@ -0,0 +1,37 @@
+name: CMP-30HX
+humanName: CMP 30HX
+isPart: true
+type: Graphics Card
+data:
+ Market: Crypto
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/CMP-40HX.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/CMP-40HX.yaml
new file mode 100644
index 000000000..7dc1556cc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/CMP-40HX.yaml
@@ -0,0 +1,40 @@
+name: CMP-40HX
+humanName: CMP 40HX
+isPart: true
+type: Graphics Card
+data:
+ Market: Crypto
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/CMP-50HX.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/CMP-50HX.yaml
new file mode 100644
index 000000000..b00929bac
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/CMP-50HX.yaml
@@ -0,0 +1,40 @@
+name: CMP-50HX
+humanName: CMP 50HX
+isPart: true
+type: Graphics Card
+data:
+ Market: Crypto
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-GTX-1630.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1630.yaml
new file mode 100644
index 000000000..8d1ba4032
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1630.yaml
@@ -0,0 +1,65 @@
+name: GeForce-GTX-1630
+humanName: GeForce GTX 1630
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-GTX-1650-GDDR6.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-GDDR6.yaml
new file mode 100644
index 000000000..5cd441d72
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-GDDR6.yaml
@@ -0,0 +1,65 @@
+name: GeForce-GTX-1650-GDDR6
+humanName: GeForce GTX 1650 GDDR6
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-GTX-1650-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Max-Q.yaml
new file mode 100644
index 000000000..bdb627d19
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Max-Q.yaml
@@ -0,0 +1,57 @@
+name: GeForce-GTX-1650-Max-Q
+humanName: GeForce GTX 1650 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-GTX-1650-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Mobile.yaml
new file mode 100644
index 000000000..42910c5f2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Mobile.yaml
@@ -0,0 +1,48 @@
+name: GeForce-GTX-1650-Mobile
+humanName: GeForce GTX 1650 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-GTX-1650-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-SUPER.yaml
new file mode 100644
index 000000000..5a65286e7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-SUPER.yaml
@@ -0,0 +1,66 @@
+name: GeForce-GTX-1650-SUPER
+humanName: GeForce GTX 1650 SUPER
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-GTX-1650-TU106.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-TU106.yaml
new file mode 100644
index 000000000..79ac63f5d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-TU106.yaml
@@ -0,0 +1,56 @@
+name: GeForce-GTX-1650-TU106
+humanName: GeForce GTX 1650 TU106
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-GTX-1650-TU116.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-TU116.yaml
new file mode 100644
index 000000000..523a2d93e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-TU116.yaml
@@ -0,0 +1,56 @@
+name: GeForce-GTX-1650-TU116
+humanName: GeForce GTX 1650 TU116
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-GTX-1650-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Ti-Max-Q.yaml
new file mode 100644
index 000000000..d957107c9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Ti-Max-Q.yaml
@@ -0,0 +1,49 @@
+name: GeForce-GTX-1650-Ti-Max-Q
+humanName: GeForce GTX 1650 Ti Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-GTX-1650-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Ti-Mobile.yaml
new file mode 100644
index 000000000..dad220c8c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650-Ti-Mobile.yaml
@@ -0,0 +1,49 @@
+name: GeForce-GTX-1650-Ti-Mobile
+humanName: GeForce GTX 1650 Ti Mobile
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-GTX-1650.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650.yaml
new file mode 100644
index 000000000..386672c7b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1650.yaml
@@ -0,0 +1,56 @@
+name: GeForce-GTX-1650
+humanName: GeForce GTX 1650
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-GTX-1660-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-SUPER.yaml
new file mode 100644
index 000000000..590765769
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-SUPER.yaml
@@ -0,0 +1,66 @@
+name: GeForce-GTX-1660-SUPER
+humanName: GeForce GTX 1660 SUPER
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-GTX-1660-Ti-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti-Max-Q.yaml
new file mode 100644
index 000000000..4a2d7a958
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti-Max-Q.yaml
@@ -0,0 +1,59 @@
+name: GeForce-GTX-1660-Ti-Max-Q
+humanName: GeForce GTX 1660 Ti Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-GTX-1660-Ti-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti-Mobile.yaml
new file mode 100644
index 000000000..66c806408
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti-Mobile.yaml
@@ -0,0 +1,49 @@
+name: GeForce-GTX-1660-Ti-Mobile
+humanName: GeForce GTX 1660 Ti Mobile
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-GTX-1660-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti.yaml
new file mode 100644
index 000000000..4aa596c4f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660-Ti.yaml
@@ -0,0 +1,66 @@
+name: GeForce-GTX-1660-Ti
+humanName: GeForce GTX 1660 Ti
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-GTX-1660.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660.yaml
new file mode 100644
index 000000000..81b6f58e9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-GTX-1660.yaml
@@ -0,0 +1,66 @@
+name: GeForce-GTX-1660
+humanName: GeForce GTX 1660
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-MX450-12W.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-12W.yaml
new file mode 100644
index 000000000..8e2771d67
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-12W.yaml
@@ -0,0 +1,34 @@
+name: GeForce-MX450-12W
+humanName: GeForce MX450 12W
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-MX450-30.5W-10Gbps.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-30.5W-10Gbps.yaml
new file mode 100644
index 000000000..3f5d8d684
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-30.5W-10Gbps.yaml
@@ -0,0 +1,34 @@
+name: GeForce-MX450-30.5W-10Gbps
+humanName: GeForce MX450 30.5W 10Gbps
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-MX450-30.5W-8Gbps.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-30.5W-8Gbps.yaml
new file mode 100644
index 000000000..e25ee9b3c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX450-30.5W-8Gbps.yaml
@@ -0,0 +1,34 @@
+name: GeForce-MX450-30.5W-8Gbps
+humanName: GeForce MX450 30.5W 8Gbps
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-MX550.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX550.yaml
new file mode 100644
index 000000000..815b8ce1a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-MX550.yaml
@@ -0,0 +1,59 @@
+name: GeForce-MX550
+humanName: GeForce MX550
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-RTX-2060-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-12-GB.yaml
new file mode 100644
index 000000000..191ae6c00
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-12-GB.yaml
@@ -0,0 +1,44 @@
+name: GeForce-RTX-2060-12-GB
+humanName: GeForce RTX 2060 12 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-RTX-2060-Max-Q-Refresh.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Max-Q-Refresh.yaml
new file mode 100644
index 000000000..315b00bab
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Max-Q-Refresh.yaml
@@ -0,0 +1,37 @@
+name: GeForce-RTX-2060-Max-Q-Refresh
+humanName: GeForce RTX 2060 Max-Q Refresh
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-RTX-2060-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Max-Q.yaml
new file mode 100644
index 000000000..a05fc44df
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Max-Q.yaml
@@ -0,0 +1,38 @@
+name: GeForce-RTX-2060-Max-Q
+humanName: GeForce RTX 2060 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-RTX-2060-Mobile-Refresh.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Mobile-Refresh.yaml
new file mode 100644
index 000000000..1dbb497d5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Mobile-Refresh.yaml
@@ -0,0 +1,38 @@
+name: GeForce-RTX-2060-Mobile-Refresh
+humanName: GeForce RTX 2060 Mobile Refresh
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-RTX-2060-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Mobile.yaml
new file mode 100644
index 000000000..6526fca7e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-Mobile.yaml
@@ -0,0 +1,38 @@
+name: GeForce-RTX-2060-Mobile
+humanName: GeForce RTX 2060 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-RTX-2060-SUPER-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-SUPER-Mobile.yaml
new file mode 100644
index 000000000..e4d4cda28
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-SUPER-Mobile.yaml
@@ -0,0 +1,39 @@
+name: GeForce-RTX-2060-SUPER-Mobile
+humanName: GeForce RTX 2060 SUPER Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-RTX-2060-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-SUPER.yaml
new file mode 100644
index 000000000..5af9ec883
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-SUPER.yaml
@@ -0,0 +1,54 @@
+name: GeForce-RTX-2060-SUPER
+humanName: GeForce RTX 2060 SUPER
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-RTX-2060-TU104.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-TU104.yaml
new file mode 100644
index 000000000..eb620d2ee
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060-TU104.yaml
@@ -0,0 +1,69 @@
+name: GeForce-RTX-2060-TU104
+humanName: GeForce RTX 2060 TU104
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-RTX-2060.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060.yaml
new file mode 100644
index 000000000..31cb6a391
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2060.yaml
@@ -0,0 +1,54 @@
+name: GeForce-RTX-2060
+humanName: GeForce RTX 2060
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-RTX-2070-Max-Q-Refresh.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Max-Q-Refresh.yaml
new file mode 100644
index 000000000..79ba67a3d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Max-Q-Refresh.yaml
@@ -0,0 +1,37 @@
+name: GeForce-RTX-2070-Max-Q-Refresh
+humanName: GeForce RTX 2070 Max-Q Refresh
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-RTX-2070-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Max-Q.yaml
new file mode 100644
index 000000000..766e2380b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Max-Q.yaml
@@ -0,0 +1,48 @@
+name: GeForce-RTX-2070-Max-Q
+humanName: GeForce RTX 2070 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-RTX-2070-Mobile-Refresh.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Mobile-Refresh.yaml
new file mode 100644
index 000000000..ae252367e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Mobile-Refresh.yaml
@@ -0,0 +1,37 @@
+name: GeForce-RTX-2070-Mobile-Refresh
+humanName: GeForce RTX 2070 Mobile Refresh
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-RTX-2070-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Mobile.yaml
new file mode 100644
index 000000000..47ffb6101
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-Mobile.yaml
@@ -0,0 +1,38 @@
+name: GeForce-RTX-2070-Mobile
+humanName: GeForce RTX 2070 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml
new file mode 100644
index 000000000..ac06df92e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER-Max-Q.yaml
@@ -0,0 +1,37 @@
+name: GeForce-RTX-2070-SUPER-Max-Q
+humanName: GeForce RTX 2070 SUPER Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-RTX-2070-SUPER-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER-Mobile.yaml
new file mode 100644
index 000000000..3990f7b2a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER-Mobile.yaml
@@ -0,0 +1,38 @@
+name: GeForce-RTX-2070-SUPER-Mobile
+humanName: GeForce RTX 2070 SUPER Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-RTX-2070-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER.yaml
new file mode 100644
index 000000000..83a8c002b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070-SUPER.yaml
@@ -0,0 +1,54 @@
+name: GeForce-RTX-2070-SUPER
+humanName: GeForce RTX 2070 SUPER
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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.4a
+ - 1x 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/Nvidia/Turing/GeForce-RTX-2070.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070.yaml
new file mode 100644
index 000000000..f5bd28259
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2070.yaml
@@ -0,0 +1,69 @@
+name: GeForce-RTX-2070
+humanName: GeForce RTX 2070
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-RTX-2080-Engineering-Sample.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Engineering-Sample.yaml
new file mode 100644
index 000000000..4806114a3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Engineering-Sample.yaml
@@ -0,0 +1,42 @@
+name: GeForce-RTX-2080-Engineering-Sample
+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'
+ 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 GiB
+ 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.4a
+ - 1x 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/Nvidia/Turing/GeForce-RTX-2080-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Max-Q.yaml
new file mode 100644
index 000000000..5537b95fe
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Max-Q.yaml
@@ -0,0 +1,48 @@
+name: GeForce-RTX-2080-Max-Q
+humanName: GeForce RTX 2080 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-RTX-2080-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Mobile.yaml
new file mode 100644
index 000000000..15a484693
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Mobile.yaml
@@ -0,0 +1,38 @@
+name: GeForce-RTX-2080-Mobile
+humanName: GeForce RTX 2080 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml
new file mode 100644
index 000000000..cf93a3a3d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER-Max-Q.yaml
@@ -0,0 +1,38 @@
+name: GeForce-RTX-2080-SUPER-Max-Q
+humanName: GeForce RTX 2080 SUPER Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-RTX-2080-SUPER-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER-Mobile.yaml
new file mode 100644
index 000000000..bf4e8c2a7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER-Mobile.yaml
@@ -0,0 +1,38 @@
+name: GeForce-RTX-2080-SUPER-Mobile
+humanName: GeForce RTX 2080 SUPER Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/GeForce-RTX-2080-SUPER.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER.yaml
new file mode 100644
index 000000000..9ebe3b3dc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-SUPER.yaml
@@ -0,0 +1,54 @@
+name: GeForce-RTX-2080-SUPER
+humanName: GeForce RTX 2080 SUPER
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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.4a
+ - 1x 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/Nvidia/Turing/GeForce-RTX-2080-Ti-12-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Ti-12-GB.yaml
new file mode 100644
index 000000000..f74006bb0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Ti-12-GB.yaml
@@ -0,0 +1,44 @@
+name: GeForce-RTX-2080-Ti-12-GB
+humanName: GeForce RTX 2080 Ti 12 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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.4a
+ - 1x 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/Nvidia/Turing/GeForce-RTX-2080-Ti.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Ti.yaml
new file mode 100644
index 000000000..96fcfc2f7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080-Ti.yaml
@@ -0,0 +1,69 @@
+name: GeForce-RTX-2080-Ti
+humanName: GeForce RTX 2080 Ti
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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.4a
+ - 1x 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/Nvidia/Turing/GeForce-RTX-2080.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080.yaml
new file mode 100644
index 000000000..94a1ba089
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/GeForce-RTX-2080.yaml
@@ -0,0 +1,69 @@
+name: GeForce-RTX-2080
+humanName: GeForce RTX 2080
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Consumer
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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.4a
+ - 1x 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/Nvidia/Turing/Quadro-RTX-3000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Max-Q.yaml
new file mode 100644
index 000000000..43f4a9dfd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Max-Q.yaml
@@ -0,0 +1,63 @@
+name: Quadro-RTX-3000-Max-Q
+humanName: Quadro RTX 3000 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml
new file mode 100644
index 000000000..84030ebe8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile-Refresh.yaml
@@ -0,0 +1,39 @@
+name: Quadro-RTX-3000-Mobile-Refresh
+humanName: Quadro RTX 3000 Mobile Refresh
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/Quadro-RTX-3000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile.yaml
new file mode 100644
index 000000000..95ecaf5da
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-Mobile.yaml
@@ -0,0 +1,39 @@
+name: Quadro-RTX-3000-Mobile
+humanName: Quadro RTX 3000 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/Quadro-RTX-3000-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-X2-Mobile.yaml
new file mode 100644
index 000000000..53a1b5867
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-3000-X2-Mobile.yaml
@@ -0,0 +1,39 @@
+name: Quadro-RTX-3000-X2-Mobile
+humanName: Quadro RTX 3000 X2 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/Quadro-RTX-4000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Max-Q.yaml
new file mode 100644
index 000000000..9f8d120fe
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Max-Q.yaml
@@ -0,0 +1,63 @@
+name: Quadro-RTX-4000-Max-Q
+humanName: Quadro RTX 4000 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/Quadro-RTX-4000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Mobile.yaml
new file mode 100644
index 000000000..04db93e3e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000-Mobile.yaml
@@ -0,0 +1,39 @@
+name: Quadro-RTX-4000-Mobile
+humanName: Quadro RTX 4000 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/Quadro-RTX-4000.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000.yaml
new file mode 100644
index 000000000..e4d5a3cba
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-4000.yaml
@@ -0,0 +1,66 @@
+name: Quadro-RTX-4000
+humanName: Quadro RTX 4000
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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.4a
+ - 1x 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/Nvidia/Turing/Quadro-RTX-5000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Max-Q.yaml
new file mode 100644
index 000000000..ef8c4eefc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Max-Q.yaml
@@ -0,0 +1,38 @@
+name: Quadro-RTX-5000-Max-Q
+humanName: Quadro RTX 5000 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml
new file mode 100644
index 000000000..32fdbc5d8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile-Refresh.yaml
@@ -0,0 +1,38 @@
+name: Quadro-RTX-5000-Mobile-Refresh
+humanName: Quadro RTX 5000 Mobile Refresh
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/Quadro-RTX-5000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile.yaml
new file mode 100644
index 000000000..a5e722971
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-Mobile.yaml
@@ -0,0 +1,39 @@
+name: Quadro-RTX-5000-Mobile
+humanName: Quadro RTX 5000 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/Quadro-RTX-5000-X2-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-X2-Mobile.yaml
new file mode 100644
index 000000000..9d49f98fc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000-X2-Mobile.yaml
@@ -0,0 +1,39 @@
+name: Quadro-RTX-5000-X2-Mobile
+humanName: Quadro RTX 5000 X2 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/Quadro-RTX-5000.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000.yaml
new file mode 100644
index 000000000..dd04e9e0a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-5000.yaml
@@ -0,0 +1,64 @@
+name: Quadro-RTX-5000
+humanName: Quadro RTX 5000
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/Quadro-RTX-6000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Mobile.yaml
new file mode 100644
index 000000000..f290bab23
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Mobile.yaml
@@ -0,0 +1,36 @@
+name: Quadro-RTX-6000-Mobile
+humanName: Quadro RTX 6000 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/Quadro-RTX-6000-Passive.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Passive.yaml
new file mode 100644
index 000000000..7741580d5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000-Passive.yaml
@@ -0,0 +1,39 @@
+name: Quadro-RTX-6000-Passive
+humanName: Quadro RTX 6000 Passive
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/Quadro-RTX-6000.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000.yaml
new file mode 100644
index 000000000..07debf1f7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-6000.yaml
@@ -0,0 +1,64 @@
+name: Quadro-RTX-6000
+humanName: Quadro RTX 6000
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/Quadro-RTX-8000-Passive.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000-Passive.yaml
new file mode 100644
index 000000000..c22091ee7
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000-Passive.yaml
@@ -0,0 +1,39 @@
+name: Quadro-RTX-8000-Passive
+humanName: Quadro RTX 8000 Passive
+isPart: true
+type: Graphics Card
+data:
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/Quadro-RTX-8000.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000.yaml
new file mode 100644
index 000000000..f4a75a924
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-RTX-8000.yaml
@@ -0,0 +1,64 @@
+name: Quadro-RTX-8000
+humanName: Quadro RTX 8000
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/Quadro-T1000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Max-Q.yaml
new file mode 100644
index 000000000..a30253ed3
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Max-Q.yaml
@@ -0,0 +1,35 @@
+name: Quadro-T1000-Max-Q
+humanName: Quadro T1000 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/Quadro-T1000-Mobile-GDDR6.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile-GDDR6.yaml
new file mode 100644
index 000000000..80fc0982d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile-GDDR6.yaml
@@ -0,0 +1,36 @@
+name: Quadro-T1000-Mobile-GDDR6
+humanName: Quadro T1000 Mobile GDDR6
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/Quadro-T1000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile.yaml
new file mode 100644
index 000000000..9694ccb5c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1000-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Quadro-T1000-Mobile
+humanName: Quadro T1000 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/Quadro-T1200-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Max-Q.yaml
new file mode 100644
index 000000000..f65a7e9e0
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Max-Q.yaml
@@ -0,0 +1,35 @@
+name: Quadro-T1200-Max-Q
+humanName: Quadro T1200 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/Quadro-T1200-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Mobile.yaml
new file mode 100644
index 000000000..7092cfe46
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T1200-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Quadro-T1200-Mobile
+humanName: Quadro T1200 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/Quadro-T2000-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Max-Q.yaml
new file mode 100644
index 000000000..216db2c98
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Max-Q.yaml
@@ -0,0 +1,59 @@
+name: Quadro-T2000-Max-Q
+humanName: Quadro T2000 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/Quadro-T2000-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Mobile.yaml
new file mode 100644
index 000000000..6bdd0ff2f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/Quadro-T2000-Mobile.yaml
@@ -0,0 +1,35 @@
+name: Quadro-T2000-Mobile
+humanName: Quadro T2000 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/T1000-8-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T1000-8-GB.yaml
new file mode 100644
index 000000000..ca55515a9
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/T1000-8-GB.yaml
@@ -0,0 +1,34 @@
+name: T1000-8-GB
+humanName: T1000 8 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/T1000.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T1000.yaml
new file mode 100644
index 000000000..3fe469c3b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/T1000.yaml
@@ -0,0 +1,58 @@
+name: T1000
+humanName: T1000
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/T400-4-GB.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T400-4-GB.yaml
new file mode 100644
index 000000000..67f05ad13
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/T400-4-GB.yaml
@@ -0,0 +1,34 @@
+name: T400-4-GB
+humanName: T400 4 GB
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/T400.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T400.yaml
new file mode 100644
index 000000000..0d107407e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/T400.yaml
@@ -0,0 +1,58 @@
+name: T400
+humanName: T400
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/T500-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T500-Max-Q.yaml
new file mode 100644
index 000000000..c3d76fb80
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/T500-Max-Q.yaml
@@ -0,0 +1,35 @@
+name: T500-Max-Q
+humanName: T500 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/T500-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T500-Mobile.yaml
new file mode 100644
index 000000000..9af0f664b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/T500-Mobile.yaml
@@ -0,0 +1,35 @@
+name: T500-Mobile
+humanName: T500 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/T550-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T550-Mobile.yaml
new file mode 100644
index 000000000..3fe3b6d2b
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/T550-Mobile.yaml
@@ -0,0 +1,35 @@
+name: T550-Mobile
+humanName: T550 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/T600-Max-Q.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T600-Max-Q.yaml
new file mode 100644
index 000000000..3f3acb024
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/T600-Max-Q.yaml
@@ -0,0 +1,35 @@
+name: T600-Max-Q
+humanName: T600 Max-Q
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/T600-Mobile.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T600-Mobile.yaml
new file mode 100644
index 000000000..271a2022c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/T600-Mobile.yaml
@@ -0,0 +1,35 @@
+name: T600-Mobile
+humanName: T600 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Workstation
+ - Mobile
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/T600.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/T600.yaml
new file mode 100644
index 000000000..56cb87913
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/T600.yaml
@@ -0,0 +1,58 @@
+name: T600
+humanName: T600
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market:
+ - Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Turing/TITAN-RTX.yaml b/specs/GPUs-CONSUMER/Nvidia/Turing/TITAN-RTX.yaml
new file mode 100644
index 000000000..e11d2f08a
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Turing/TITAN-RTX.yaml
@@ -0,0 +1,45 @@
+name: TITAN-RTX
+humanName: TITAN RTX
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Consumer
+ - Enthusiast
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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.4a
+ - 1x 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/Nvidia/VLIW-Vec4.yaml b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4.yaml
new file mode 100644
index 000000000..a46337e32
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4.yaml
@@ -0,0 +1,18 @@
+name: VLIW-Vec4
+humanName: VLIW Vec4
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 28-40 nm
+ DirectX Support: ''
+ Vulkan Support: 'N/A'
+ Release Date: '2010-06-03'
+ Manufacturer: Nvidia
+sections:
+ - header: WHOLE RANGE
+ members:
+ - Tegra-2-GPU
+ - Tegra-3-GPU
+ - Tegra-4-GPU
+ - Tegra-4i-GPU
diff --git a/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-2-GPU.yaml b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-2-GPU.yaml
new file mode 100644
index 000000000..5de84ed5c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-2-GPU.yaml
@@ -0,0 +1,32 @@
+name: Tegra-2-GPU
+humanName: Tegra 2 GPU
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: 20 W
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 4
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-3-GPU.yaml b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-3-GPU.yaml
new file mode 100644
index 000000000..7de1c9d66
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-3-GPU.yaml
@@ -0,0 +1,32 @@
+name: Tegra-3-GPU
+humanName: Tegra 3 GPU
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 MiB
+ VRAM Type: DDR3
+ 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
+ TDP: 20 W
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 8
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4-GPU.yaml b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4-GPU.yaml
new file mode 100644
index 000000000..e771e64bc
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4-GPU.yaml
@@ -0,0 +1,31 @@
+name: Tegra-4-GPU
+humanName: Tegra 4 GPU
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: VLIW Vec4
+ Lithography: 28 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: LPDDR3
+ 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
+ TDP: 20 W
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 48
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4i-GPU.yaml b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4i-GPU.yaml
new file mode 100644
index 000000000..5e81e3cd2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/VLIW-Vec4/Tegra-4i-GPU.yaml
@@ -0,0 +1,31 @@
+name: Tegra-4i-GPU
+humanName: Tegra 4i GPU
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: VLIW Vec4
+ Lithography: 28 nm
+ Vulkan Support: 'N/A'
+ 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 MiB
+ VRAM Type: LPDDR3
+ 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
+ TDP: 20 W
+ Slot Width: IGP
+ Outputs: Portable Device Dependent
+ Pixel Shaders: 48
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta.yaml
new file mode 100644
index 000000000..e37a0011d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Volta.yaml
@@ -0,0 +1,22 @@
+name: Volta
+humanName: Volta
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 12 nm
+ DirectX Support: '12.1'
+ Vulkan Support: '1.3'
+ Release Date: '2017-06-21'
+ Manufacturer: Nvidia
+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
+ - TITAN-V
+ - TITAN-V-CEO-Edition
+ - Tesla-V100-SXM2-32-GB
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
new file mode 100644
index 000000000..5b51abc8f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-AGX-Xavier-16-GB.yaml
@@ -0,0 +1,37 @@
+name: Jetson-AGX-Xavier-16-GB
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..58ea733a8
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-AGX-Xavier-32-GB.yaml
@@ -0,0 +1,37 @@
+name: Jetson-AGX-Xavier-32-GB
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..305946964
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-Xavier-NX-16-GB.yaml
@@ -0,0 +1,37 @@
+name: Jetson-Xavier-NX-16-GB
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
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
new file mode 100644
index 000000000..77c7f5efd
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Volta/Jetson-Xavier-NX-8-GB.yaml
@@ -0,0 +1,37 @@
+name: Jetson-Xavier-NX-8-GB
+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'
+ 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 GiB
+ 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
+ Market:
+ - Mobile
diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/Quadro-GV100.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/Quadro-GV100.yaml
new file mode 100644
index 000000000..4e9f23f54
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Volta/Quadro-GV100.yaml
@@ -0,0 +1,59 @@
+name: Quadro-GV100
+humanName: Quadro GV100
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ Market: Workstation
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Nvidia/Volta/TITAN-V-CEO-Edition.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/TITAN-V-CEO-Edition.yaml
new file mode 100644
index 000000000..68726e752
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Volta/TITAN-V-CEO-Edition.yaml
@@ -0,0 +1,41 @@
+name: TITAN-V-CEO-Edition
+humanName: TITAN V CEO Edition
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/Nvidia/Volta/TITAN-V.yaml b/specs/GPUs-CONSUMER/Nvidia/Volta/TITAN-V.yaml
new file mode 100644
index 000000000..d7fd7f83d
--- /dev/null
+++ b/specs/GPUs-CONSUMER/Nvidia/Volta/TITAN-V.yaml
@@ -0,0 +1,42 @@
+name: TITAN-V
+humanName: TITAN V
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/PowerVR/PowerVR-Series5XT.yaml b/specs/GPUs-CONSUMER/PowerVR/PowerVR-Series5XT.yaml
new file mode 100644
index 000000000..130fab19e
--- /dev/null
+++ b/specs/GPUs-CONSUMER/PowerVR/PowerVR-Series5XT.yaml
@@ -0,0 +1,15 @@
+name: PowerVR-Series5XT
+humanName: PowerVR Series5XT
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 32 nm
+ DirectX Support: '10.1'
+ Vulkan Support: 'N/A'
+ Release Date: '2011-12-11'
+ Manufacturer: PowerVR
+sections:
+ - header: WHOLE RANGE
+ members:
+ - Playstation-Vita-GPU
diff --git a/specs/GPUs-CONSUMER/PowerVR/PowerVR-Series5XT/Playstation-Vita-GPU.yaml b/specs/GPUs-CONSUMER/PowerVR/PowerVR-Series5XT/Playstation-Vita-GPU.yaml
new file mode 100644
index 000000000..92aa73a43
--- /dev/null
+++ b/specs/GPUs-CONSUMER/PowerVR/PowerVR-Series5XT/Playstation-Vita-GPU.yaml
@@ -0,0 +1,34 @@
+name: Playstation-Vita-GPU
+humanName: Playstation Vita GPU
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: PowerVR
+ Vendor: PowerVR
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 400 MHz
+ VRAM Bandwidth: 3.200 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: CDRAM
+ 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
+ TDP: 4 W
+ Outputs: No outputs
+ Length: 182 mm
+ Width: 19 mm
+ Height: 84 mm
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/R-200.yaml b/specs/GPUs-CONSUMER/R-200.yaml
deleted file mode 100644
index 5f599264d..000000000
--- 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 100644
index 1384bd72e..000000000
--- 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 100644
index d81a4063d..000000000
--- 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 100644
index 31ab25fce..000000000
--- 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 100644
index ba814ce8e..000000000
--- 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 100644
index 09f3e239b..000000000
--- 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 100644
index 4c25d405f..000000000
--- 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 100644
index 6e606413d..000000000
--- 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 100644
index 12acb951a..000000000
--- 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 100644
index 16898d5fa..000000000
--- 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 100644
index a8aac8a4a..000000000
--- 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 100644
index bfe31fec3..000000000
--- 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 100644
index deff0b12b..000000000
--- 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 100644
index 41ac3d8c0..000000000
--- 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 100644
index 9b8f10d5a..000000000
--- 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 100644
index 9d07ed388..000000000
--- 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 100644
index b006ff8dd..000000000
--- 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 100644
index df4249068..000000000
--- 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 100644
index 1b32b9821..000000000
--- 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 100644
index 10932ae47..000000000
--- 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 100644
index 03f30f4c6..000000000
--- 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 100644
index 1871e2e1b..000000000
--- 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 100644
index c936002b6..000000000
--- 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 100644
index 05940d4fe..000000000
--- 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 100644
index 07aa21cfc..000000000
--- 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 100644
index 1fcd5bd7b..000000000
--- 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 100644
index f36a52fd8..000000000
--- 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 100644
index b084f0f87..000000000
--- 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 100644
index 11c13433a..000000000
--- 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 100644
index 3188f86d8..000000000
--- 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 100644
index 3ae462cc8..000000000
--- 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 100644
index 489cfa479..000000000
--- 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 100644
index 23df9faaa..000000000
--- 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/RX-400.yaml b/specs/GPUs-CONSUMER/RX-400.yaml
deleted file mode 100644
index 2bd404690..000000000
--- 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 100644
index cefa28c5e..000000000
--- 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 100644
index 003a41eaa..000000000
--- 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 100644
index ef85c5aba..000000000
--- 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 100644
index b520c28be..000000000
--- 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 100644
index c55064faa..000000000
--- 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 100644
index 7965ac0c4..000000000
--- 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 100644
index 0b72525be..000000000
--- 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 100644
index ce43ae704..000000000
--- 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 100644
index 98f8bdf16..000000000
--- 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 100644
index a8933f3ad..000000000
--- 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 100644
index e702ceec3..000000000
--- 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 100644
index 47ff553ee..000000000
--- 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 100644
index 7edcd7685..000000000
--- 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 100644
index 54d71c1f2..000000000
--- 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 100644
index 41852c4bc..000000000
--- 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 100644
index 0f2b630f2..000000000
--- 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 100644
index 025615587..000000000
--- 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 100644
index c81f457ab..000000000
--- 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 100644
index d55207bbf..000000000
--- 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 100644
index b4ca74927..000000000
--- 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 100644
index d16f143fe..000000000
--- 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 100644
index 94deb8035..000000000
--- 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 100644
index 95cf518fd..000000000
--- 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 100644
index faef3b848..000000000
--- 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 100644
index 26ae440ab..000000000
--- 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 100644
index 35d975a8a..000000000
--- 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 100644
index b1fa81e8d..000000000
--- 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 100644
index a4da2b7e0..000000000
--- 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 100644
index 0ae3217ee..000000000
--- 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/TeraScale-1-40nm.yaml b/specs/GPUs-CONSUMER/TeraScale-1-40nm.yaml
deleted file mode 100644
index be7a4fe41..000000000
--- 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 100644
index c06a4ab01..000000000
--- 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
deleted file mode 100644
index 63b32a554..000000000
--- a/specs/GPUs-CONSUMER/TeraScale-2.yaml
+++ /dev/null
@@ -1,10 +0,0 @@
-hidden: true
-name: TeraScale-2
-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
diff --git a/specs/GPUs-CONSUMER/TeraScale-3.yaml b/specs/GPUs-CONSUMER/TeraScale-3.yaml
deleted file mode 100644
index 7526ab579..000000000
--- a/specs/GPUs-CONSUMER/TeraScale-3.yaml
+++ /dev/null
@@ -1,10 +0,0 @@
-hidden: true
-name: TeraScale-3
-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
diff --git a/specs/GPUs-CONSUMER/XGI/XG4.yaml b/specs/GPUs-CONSUMER/XGI/XG4.yaml
new file mode 100644
index 000000000..5219c559f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/XGI/XG4.yaml
@@ -0,0 +1,24 @@
+name: XG4
+humanName: XG4
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 130 nm
+ DirectX Support: '9.0'
+ Vulkan Support: 'N/A'
+ Release Date: '2003-09-15'
+ Manufacturer: XGI
+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/XGI/XG4/Volari-8300.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-8300.yaml
new file mode 100644
index 000000000..a73c0acb5
--- /dev/null
+++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-8300.yaml
@@ -0,0 +1,33 @@
+name: Volari-8300
+humanName: Volari 8300
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: XGI
+ Vendor: XGI
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 300 MHz
+ VRAM Bandwidth: 4.800 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-8600-XT.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-8600-XT.yaml
new file mode 100644
index 000000000..bbd89ee0f
--- /dev/null
+++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-8600-XT.yaml
@@ -0,0 +1,33 @@
+name: Volari-8600-XT
+humanName: Volari 8600 XT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: XGI
+ Vendor: XGI
+ 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'
+ GPU Base Frequency: 450 MHz
+ VRAM Frequency: 450 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: GDDR3
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Pixel Shaders: 8
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V5-Ultra.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V5-Ultra.yaml
new file mode 100644
index 000000000..e23c30a9c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V5-Ultra.yaml
@@ -0,0 +1,31 @@
+name: Volari-Duo-V5-Ultra
+humanName: Volari Duo V5 Ultra
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: XGI
+ Vendor: XGI
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 32.00 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Single-slot
+ Outputs: No outputs
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V8-Ultra.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V8-Ultra.yaml
new file mode 100644
index 000000000..27f9131fe
--- /dev/null
+++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-Duo-V8-Ultra.yaml
@@ -0,0 +1,35 @@
+name: Volari-Duo-V8-Ultra
+humanName: Volari Duo V8 Ultra
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: XGI
+ Vendor: XGI
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 16.00 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR2
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Power Connectors: 2x Molex
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3-XT.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3-XT.yaml
new file mode 100644
index 000000000..451a8d41c
--- /dev/null
+++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3-XT.yaml
@@ -0,0 +1,34 @@
+name: Volari-V3-XT
+humanName: Volari V3 XT
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: XGI
+ Vendor: XGI
+ 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'
+ GPU Base Frequency: 250 MHz
+ VRAM Frequency: 207 MHz
+ VRAM Bandwidth: 6.624 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ TDP: unknown
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3.yaml
new file mode 100644
index 000000000..23c0217bf
--- /dev/null
+++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V3.yaml
@@ -0,0 +1,33 @@
+name: Volari-V3
+humanName: Volari V3
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: XGI
+ Vendor: XGI
+ 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'
+ GPU Base Frequency: 200 MHz
+ VRAM Frequency: 200 MHz
+ VRAM Bandwidth: 6.400 GB/s
+ VRAM Capacity: 128 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5-Ultra.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5-Ultra.yaml
new file mode 100644
index 000000000..c7a9dbb51
--- /dev/null
+++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5-Ultra.yaml
@@ -0,0 +1,31 @@
+name: Volari-V5-Ultra
+humanName: Volari V5 Ultra
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: XGI
+ Vendor: XGI
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 375 MHz
+ VRAM Bandwidth: 12.00 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs: No outputs
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5.yaml
new file mode 100644
index 000000000..7c25382c1
--- /dev/null
+++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V5.yaml
@@ -0,0 +1,33 @@
+name: Volari-V5
+humanName: Volari V5
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: XGI
+ Vendor: XGI
+ 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'
+ GPU Base Frequency: 325 MHz
+ VRAM Frequency: 450 MHz
+ VRAM Bandwidth: 14.40 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Pixel Shaders: 2
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8-Ultra.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8-Ultra.yaml
new file mode 100644
index 000000000..7ce3608f2
--- /dev/null
+++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8-Ultra.yaml
@@ -0,0 +1,33 @@
+name: Volari-V8-Ultra
+humanName: Volari V8 Ultra
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: XGI
+ Vendor: XGI
+ 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'
+ GPU Base Frequency: 350 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 16.00 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR2
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8.yaml b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8.yaml
new file mode 100644
index 000000000..3273f2d03
--- /dev/null
+++ b/specs/GPUs-CONSUMER/XGI/XG4/Volari-V8.yaml
@@ -0,0 +1,33 @@
+name: Volari-V8
+humanName: Volari V8
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: XGI
+ Vendor: XGI
+ 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'
+ GPU Base Frequency: 300 MHz
+ VRAM Frequency: 325 MHz
+ VRAM Bandwidth: 10.40 GB/s
+ VRAM Capacity: 256 MiB
+ VRAM Type: DDR
+ 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
+ Slot Width: Single-slot
+ Outputs:
+ - 1x DVI
+ - 1x VGA1x S-Video
+ Pixel Shaders: 4
+ Market:
+ - Consumer
diff --git a/specs/GPUs-SERVER/AMD/CDNA-1.0.yaml b/specs/GPUs-SERVER/AMD/CDNA-1.0.yaml
new file mode 100644
index 000000000..70440ca7b
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/CDNA-1.0.yaml
@@ -0,0 +1,15 @@
+name: CDNA-1.0
+humanName: CDNA 1.0
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 7 nm
+ DirectX Support: ''
+ Vulkan Support: 'N/A'
+ Release Date: '2020-11-16'
+ Manufacturer: AMD
+sections:
+ - header: Instinct series
+ members:
+ - Radeon-Instinct-MI100
diff --git a/specs/GPUs-SERVER/AMD/CDNA-1.0/Radeon-Instinct-MI100.yaml b/specs/GPUs-SERVER/AMD/CDNA-1.0/Radeon-Instinct-MI100.yaml
new file mode 100644
index 000000000..37e84a721
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/CDNA-1.0/Radeon-Instinct-MI100.yaml
@@ -0,0 +1,35 @@
+name: Radeon-Instinct-MI100
+humanName: Radeon Instinct MI100
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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-SERVER/AMD/CDNA-2.0.yaml b/specs/GPUs-SERVER/AMD/CDNA-2.0.yaml
new file mode 100644
index 000000000..0cfa607b0
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/CDNA-2.0.yaml
@@ -0,0 +1,18 @@
+name: CDNA-2.0
+humanName: CDNA 2.0
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 6 nm
+ DirectX Support: ''
+ Vulkan Support: 'N/A'
+ Release Date: '2021-11-08'
+ Manufacturer: AMD
+sections:
+ - header: Instinct series
+ members:
+ - Radeon-Instinct-MI200
+ - Radeon-Instinct-MI210
+ - Radeon-Instinct-MI250
+ - Radeon-Instinct-MI250X
diff --git a/specs/GPUs-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI200.yaml b/specs/GPUs-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI200.yaml
new file mode 100644
index 000000000..71bf525b2
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI200.yaml
@@ -0,0 +1,33 @@
+name: Radeon-Instinct-MI200
+humanName: Radeon Instinct MI200
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI210.yaml b/specs/GPUs-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI210.yaml
new file mode 100644
index 000000000..7bda6c497
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI210.yaml
@@ -0,0 +1,35 @@
+name: Radeon-Instinct-MI210
+humanName: Radeon Instinct MI210
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI250.yaml b/specs/GPUs-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI250.yaml
new file mode 100644
index 000000000..b05c43c35
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI250.yaml
@@ -0,0 +1,35 @@
+name: Radeon-Instinct-MI250
+humanName: Radeon Instinct MI250
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI250X.yaml b/specs/GPUs-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI250X.yaml
new file mode 100644
index 000000000..e9b68dbf8
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/CDNA-2.0/Radeon-Instinct-MI250X.yaml
@@ -0,0 +1,35 @@
+name: Radeon-Instinct-MI250X
+humanName: Radeon Instinct MI250X
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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-SERVER/AMD/CDNA-3.0.yaml b/specs/GPUs-SERVER/AMD/CDNA-3.0.yaml
new file mode 100644
index 000000000..1a7333fc2
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/CDNA-3.0.yaml
@@ -0,0 +1,16 @@
+name: CDNA-3.0
+humanName: CDNA 3.0
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 5 nm
+ DirectX Support: ''
+ Vulkan Support: 'N/A'
+ Release Date: '2023-01-04'
+ Manufacturer: AMD
+sections:
+ - header: Instinct series
+ members:
+ - Radeon-Instinct-MI300
+ - Radeon-Instinct-MI300X
diff --git a/specs/GPUs-SERVER/AMD/CDNA-3.0/Radeon-Instinct-MI300.yaml b/specs/GPUs-SERVER/AMD/CDNA-3.0/Radeon-Instinct-MI300.yaml
new file mode 100644
index 000000000..627f18407
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/CDNA-3.0/Radeon-Instinct-MI300.yaml
@@ -0,0 +1,35 @@
+name: Radeon-Instinct-MI300
+humanName: Radeon Instinct MI300
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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-SERVER/AMD/CDNA-3.0/Radeon-Instinct-MI300X.yaml b/specs/GPUs-SERVER/AMD/CDNA-3.0/Radeon-Instinct-MI300X.yaml
new file mode 100644
index 000000000..dd4239f30
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/CDNA-3.0/Radeon-Instinct-MI300X.yaml
@@ -0,0 +1,34 @@
+name: Radeon-Instinct-MI300X
+humanName: Radeon Instinct MI300X
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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-SERVER/AMD/GCN-1.0.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0.yaml
new file mode 100644
index 000000000..de384aba9
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-1.0.yaml
@@ -0,0 +1,28 @@
+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: FirePro Server
+ members:
+ - FirePro-R5000
+ - FirePro-S4000X
+ - FirePro-S7000
+ - FirePro-S9000
+ - FirePro-S9010
+ - FirePro-S9050
+ - FirePro-S10000
+ - FirePro-S10000-Passive
+ - FirePro-S10000-Passive-12GB
+ - header: Radeon Sky
+ members:
+ - Radeon-Sky-500
+ - Radeon-Sky-700
+ - Radeon-Sky-900
diff --git a/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-R5000.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-R5000.yaml
new file mode 100644
index 000000000..6236e0b4f
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-R5000.yaml
@@ -0,0 +1,35 @@
+name: FirePro-R5000
+humanName: FirePro R5000
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 825 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 102.4 GB/s
+ VRAM Capacity: 2 GiB
+ 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-SERVER/AMD/GCN-1.0/FirePro-S10000-Passive-12GB.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S10000-Passive-12GB.yaml
new file mode 100644
index 000000000..afc40e556
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S10000-Passive-12GB.yaml
@@ -0,0 +1,38 @@
+name: FirePro-S10000-Passive-12GB
+humanName: FirePro S10000 Passive 12GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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-SERVER/AMD/GCN-1.0/FirePro-S10000-Passive.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S10000-Passive.yaml
new file mode 100644
index 000000000..320d215ce
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S10000-Passive.yaml
@@ -0,0 +1,38 @@
+name: FirePro-S10000-Passive
+humanName: FirePro S10000 Passive
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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-SERVER/AMD/GCN-1.0/FirePro-S10000.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S10000.yaml
new file mode 100644
index 000000000..a21a699f8
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S10000.yaml
@@ -0,0 +1,38 @@
+name: FirePro-S10000
+humanName: FirePro S10000
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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-SERVER/AMD/GCN-1.0/FirePro-S4000X.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S4000X.yaml
new file mode 100644
index 000000000..3e0711de3
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S4000X.yaml
@@ -0,0 +1,33 @@
+name: FirePro-S4000X
+humanName: FirePro S4000X
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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-SERVER/AMD/GCN-1.0/FirePro-S7000.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S7000.yaml
new file mode 100644
index 000000000..e15e6785b
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S7000.yaml
@@ -0,0 +1,35 @@
+name: FirePro-S7000
+humanName: FirePro S7000
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 950 MHz
+ VRAM Frequency: 1200 MHz
+ VRAM Bandwidth: 153.6 GB/s
+ VRAM Capacity: 4 GiB
+ 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-SERVER/AMD/GCN-1.0/FirePro-S9000.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S9000.yaml
new file mode 100644
index 000000000..67c94bb94
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S9000.yaml
@@ -0,0 +1,35 @@
+name: FirePro-S9000
+humanName: FirePro S9000
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 900 MHz
+ VRAM Frequency: 1375 MHz
+ VRAM Bandwidth: 264.0 GB/s
+ VRAM Capacity: 6 GiB
+ 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-SERVER/AMD/GCN-1.0/FirePro-S9010.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S9010.yaml
new file mode 100644
index 000000000..d083261a5
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S9010.yaml
@@ -0,0 +1,37 @@
+name: FirePro-S9010
+humanName: FirePro S9010
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 800 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 240.0 GB/s
+ VRAM Capacity: 3 GiB
+ 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-SERVER/AMD/GCN-1.0/FirePro-S9050.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S9050.yaml
new file mode 100644
index 000000000..7c7d8cd44
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-1.0/FirePro-S9050.yaml
@@ -0,0 +1,35 @@
+name: FirePro-S9050
+humanName: FirePro S9050
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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: 900 MHz
+ VRAM Frequency: 1375 MHz
+ VRAM Bandwidth: 264.0 GB/s
+ VRAM Capacity: 12 GiB
+ 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-SERVER/AMD/GCN-1.0/Radeon-Sky-500.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-500.yaml
new file mode 100644
index 000000000..bc8846c3f
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-500.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Sky-500
+humanName: Radeon Sky 500
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Maximum Streams: 6
+ Manufacturer: AMD
+ Vendor: AMD
+ 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: 950 MHz
+ VRAM Frequency: 1200 MHz
+ VRAM Bandwidth: 153.6 GB/s
+ VRAM Capacity: 4 GiB
+ 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-SERVER/AMD/GCN-1.0/Radeon-Sky-700.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-700.yaml
new file mode 100644
index 000000000..ffcff46a3
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-700.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Sky-700
+humanName: Radeon Sky 700
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Maximum Streams: 6
+ Manufacturer: AMD
+ Vendor: AMD
+ 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: 900 MHz
+ VRAM Frequency: 1375 MHz
+ VRAM Bandwidth: 264.0 GB/s
+ VRAM Capacity: 6 GiB
+ 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-SERVER/AMD/GCN-1.0/Radeon-Sky-900.yaml b/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-900.yaml
new file mode 100644
index 000000000..0a2c74b5c
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-1.0/Radeon-Sky-900.yaml
@@ -0,0 +1,39 @@
+name: Radeon-Sky-900
+humanName: Radeon Sky 900
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Maximum Streams: 6
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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-SERVER/AMD/GCN-2.0.yaml b/specs/GPUs-SERVER/AMD/GCN-2.0.yaml
new file mode 100644
index 000000000..05961f80c
--- /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-2.0/FirePro-S9100.yaml b/specs/GPUs-SERVER/AMD/GCN-2.0/FirePro-S9100.yaml
new file mode 100644
index 000000000..992d567e5
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-2.0/FirePro-S9100.yaml
@@ -0,0 +1,35 @@
+name: FirePro-S9100
+humanName: FirePro S9100
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 824 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 320.0 GB/s
+ VRAM Capacity: 12 GiB
+ 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-SERVER/AMD/GCN-2.0/FirePro-S9150.yaml b/specs/GPUs-SERVER/AMD/GCN-2.0/FirePro-S9150.yaml
new file mode 100644
index 000000000..a16a3042f
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-2.0/FirePro-S9150.yaml
@@ -0,0 +1,35 @@
+name: FirePro-S9150
+humanName: FirePro S9150
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 900 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 320.0 GB/s
+ VRAM Capacity: 16 GiB
+ 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-SERVER/AMD/GCN-2.0/FirePro-S9170.yaml b/specs/GPUs-SERVER/AMD/GCN-2.0/FirePro-S9170.yaml
new file mode 100644
index 000000000..b95a8d94c
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-2.0/FirePro-S9170.yaml
@@ -0,0 +1,35 @@
+name: FirePro-S9170
+humanName: FirePro S9170
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 930 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 320.0 GB/s
+ VRAM Capacity: 32 GiB
+ 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-SERVER/AMD/GCN-3.0.yaml b/specs/GPUs-SERVER/AMD/GCN-3.0.yaml
new file mode 100644
index 000000000..447557d7b
--- /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-3.0/FirePro-S7100X.yaml b/specs/GPUs-SERVER/AMD/GCN-3.0/FirePro-S7100X.yaml
new file mode 100644
index 000000000..fe46511e3
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-3.0/FirePro-S7100X.yaml
@@ -0,0 +1,33 @@
+name: FirePro-S7100X
+humanName: FirePro S7100X
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 725 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 160.0 GB/s
+ VRAM Capacity: 8 GiB
+ 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-SERVER/AMD/GCN-3.0/FirePro-S7150-x2.yaml b/specs/GPUs-SERVER/AMD/GCN-3.0/FirePro-S7150-x2.yaml
new file mode 100644
index 000000000..90d8ce97c
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-3.0/FirePro-S7150-x2.yaml
@@ -0,0 +1,35 @@
+name: FirePro-S7150-x2
+humanName: FirePro S7150 x2
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 920 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 160.0 GB/s
+ VRAM Capacity: 8 GiB
+ 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-SERVER/AMD/GCN-3.0/FirePro-S7150.yaml b/specs/GPUs-SERVER/AMD/GCN-3.0/FirePro-S7150.yaml
new file mode 100644
index 000000000..27f29dbf8
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-3.0/FirePro-S7150.yaml
@@ -0,0 +1,35 @@
+name: FirePro-S7150
+humanName: FirePro S7150
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 920 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 160.0 GB/s
+ VRAM Capacity: 8 GiB
+ 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-SERVER/AMD/GCN-3.0/FirePro-S9300-X2.yaml b/specs/GPUs-SERVER/AMD/GCN-3.0/FirePro-S9300-X2.yaml
new file mode 100644
index 000000000..6612fc580
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-3.0/FirePro-S9300-X2.yaml
@@ -0,0 +1,35 @@
+name: FirePro-S9300-X2
+humanName: FirePro S9300 X2
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 975 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 512.0 GB/s
+ VRAM Capacity: 4 GiB
+ 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-SERVER/AMD/GCN-3.0/Radeon-Instinct-MI8.yaml b/specs/GPUs-SERVER/AMD/GCN-3.0/Radeon-Instinct-MI8.yaml
new file mode 100644
index 000000000..69bceeee1
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-3.0/Radeon-Instinct-MI8.yaml
@@ -0,0 +1,35 @@
+name: Radeon-Instinct-MI8
+humanName: Radeon Instinct MI8
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 1000 MHz
+ VRAM Frequency: 500 MHz
+ VRAM Bandwidth: 512.0 GB/s
+ VRAM Capacity: 4 GiB
+ 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-SERVER/AMD/GCN-4.0.yaml b/specs/GPUs-SERVER/AMD/GCN-4.0.yaml
new file mode 100644
index 000000000..7f2beb21a
--- /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-4.0/Radeon-Instinct-MI6.yaml b/specs/GPUs-SERVER/AMD/GCN-4.0/Radeon-Instinct-MI6.yaml
new file mode 100644
index 000000000..5eb9dd63e
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-4.0/Radeon-Instinct-MI6.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Instinct-MI6
+humanName: Radeon Instinct MI6
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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-SERVER/AMD/GCN-5.0.yaml b/specs/GPUs-SERVER/AMD/GCN-5.0.yaml
new file mode 100644
index 000000000..320e50d04
--- /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 000000000..be3a17249
--- /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/GCN-5.1/Radeon-Instinct-MI50.yaml b/specs/GPUs-SERVER/AMD/GCN-5.1/Radeon-Instinct-MI50.yaml
new file mode 100644
index 000000000..3286283fc
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-5.1/Radeon-Instinct-MI50.yaml
@@ -0,0 +1,35 @@
+name: Radeon-Instinct-MI50
+humanName: Radeon Instinct MI50
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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-SERVER/AMD/GCN-5.1/Radeon-Instinct-MI60.yaml b/specs/GPUs-SERVER/AMD/GCN-5.1/Radeon-Instinct-MI60.yaml
new file mode 100644
index 000000000..e54d9874c
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-5.1/Radeon-Instinct-MI60.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Instinct-MI60
+humanName: Radeon Instinct MI60
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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-SERVER/AMD/GCN-5/Radeon-Instinct-MI25.yaml b/specs/GPUs-SERVER/AMD/GCN-5/Radeon-Instinct-MI25.yaml
new file mode 100644
index 000000000..a09825830
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-5/Radeon-Instinct-MI25.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Instinct-MI25
+humanName: Radeon Instinct MI25
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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-SERVER/AMD/GCN-5/Radeon-Pro-V320.yaml b/specs/GPUs-SERVER/AMD/GCN-5/Radeon-Pro-V320.yaml
new file mode 100644
index 000000000..44e47272f
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-5/Radeon-Pro-V320.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Pro-V320
+humanName: Radeon Pro V320
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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-SERVER/AMD/GCN-5/Radeon-Pro-V340-16-GB.yaml b/specs/GPUs-SERVER/AMD/GCN-5/Radeon-Pro-V340-16-GB.yaml
new file mode 100644
index 000000000..88eb8c3f2
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-5/Radeon-Pro-V340-16-GB.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Pro-V340-16-GB
+humanName: Radeon Pro V340 16 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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-SERVER/AMD/GCN-5/Radeon-Pro-V340-8-GB.yaml b/specs/GPUs-SERVER/AMD/GCN-5/Radeon-Pro-V340-8-GB.yaml
new file mode 100644
index 000000000..6e8179d49
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/GCN-5/Radeon-Pro-V340-8-GB.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Pro-V340-8-GB
+humanName: Radeon Pro V340 8 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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-SERVER/AMD/RDNA-1.0.yaml b/specs/GPUs-SERVER/AMD/RDNA-1.0.yaml
new file mode 100644
index 000000000..8caad2250
--- /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-1.0/Radeon-Pro-V520.yaml b/specs/GPUs-SERVER/AMD/RDNA-1.0/Radeon-Pro-V520.yaml
new file mode 100644
index 000000000..b8d8ed3b6
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/RDNA-1.0/Radeon-Pro-V520.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Pro-V520
+humanName: Radeon Pro V520
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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-SERVER/AMD/RDNA-1.0/Radeon-Pro-V540.yaml b/specs/GPUs-SERVER/AMD/RDNA-1.0/Radeon-Pro-V540.yaml
new file mode 100644
index 000000000..4e5f12448
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/RDNA-1.0/Radeon-Pro-V540.yaml
@@ -0,0 +1,36 @@
+name: Radeon-Pro-V540
+humanName: Radeon Pro V540
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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 GiB
+ 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-SERVER/AMD/RDNA-2.0.yaml b/specs/GPUs-SERVER/AMD/RDNA-2.0.yaml
new file mode 100644
index 000000000..6821bd890
--- /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-2.0/Radeon-PRO-V620.yaml b/specs/GPUs-SERVER/AMD/RDNA-2.0/Radeon-PRO-V620.yaml
new file mode 100644
index 000000000..c044e3d92
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/RDNA-2.0/Radeon-PRO-V620.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 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 GiB
+ 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-SERVER/AMD/RDNA-3.0.yaml b/specs/GPUs-SERVER/AMD/RDNA-3.0.yaml
new file mode 100644
index 000000000..f8b85de1c
--- /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/RDNA-3.0/Radeon-PRO-v710.yaml b/specs/GPUs-SERVER/AMD/RDNA-3.0/Radeon-PRO-v710.yaml
new file mode 100644
index 000000000..3f28ae0ea
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/RDNA-3.0/Radeon-PRO-v710.yaml
@@ -0,0 +1,38 @@
+name: Radeon-PRO-V710
+humanName: Radeon PRO V710
+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-SERVER/AMD/TeraScale-2.yaml b/specs/GPUs-SERVER/AMD/TeraScale-2.yaml
new file mode 100644
index 000000000..a1a7aa794
--- /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-2/FireStream-9350.yaml b/specs/GPUs-SERVER/AMD/TeraScale-2/FireStream-9350.yaml
new file mode 100644
index 000000000..2a64ed172
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/TeraScale-2/FireStream-9350.yaml
@@ -0,0 +1,35 @@
+name: FireStream-9350
+humanName: FireStream 9350
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 700 MHz
+ VRAM Frequency: 1000 MHz
+ VRAM Bandwidth: 128.0 GB/s
+ VRAM Capacity: 2 GiB
+ 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-SERVER/AMD/TeraScale-2/FireStream-9370.yaml b/specs/GPUs-SERVER/AMD/TeraScale-2/FireStream-9370.yaml
new file mode 100644
index 000000000..c40cca565
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/TeraScale-2/FireStream-9370.yaml
@@ -0,0 +1,35 @@
+name: FireStream-9370
+humanName: FireStream 9370
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 825 MHz
+ VRAM Frequency: 1150 MHz
+ VRAM Bandwidth: 147.2 GB/s
+ VRAM Capacity: 4 GiB
+ 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-SERVER/AMD/TeraScale.yaml b/specs/GPUs-SERVER/AMD/TeraScale.yaml
new file mode 100644
index 000000000..f49b4a82f
--- /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/AMD/TeraScale/FirePro-RG220.yaml b/specs/GPUs-SERVER/AMD/TeraScale/FirePro-RG220.yaml
new file mode 100644
index 000000000..6433b0c59
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/TeraScale/FirePro-RG220.yaml
@@ -0,0 +1,33 @@
+name: FirePro-RG220
+humanName: FirePro RG220
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 500 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 51.20 GB/s
+ VRAM Capacity: 512 MiB
+ 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-SERVER/AMD/TeraScale/FireStream-9170.yaml b/specs/GPUs-SERVER/AMD/TeraScale/FireStream-9170.yaml
new file mode 100644
index 000000000..3d6b889fc
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/TeraScale/FireStream-9170.yaml
@@ -0,0 +1,36 @@
+name: FireStream-9170
+humanName: FireStream 9170
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 777 MHz
+ VRAM Frequency: 802 MHz
+ VRAM Bandwidth: 51.33 GB/s
+ VRAM Capacity: 2 GiB
+ 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-SERVER/AMD/TeraScale/FireStream-9250.yaml b/specs/GPUs-SERVER/AMD/TeraScale/FireStream-9250.yaml
new file mode 100644
index 000000000..85e4999fd
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/TeraScale/FireStream-9250.yaml
@@ -0,0 +1,35 @@
+name: FireStream-9250
+humanName: FireStream 9250
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 625 MHz
+ VRAM Frequency: 993 MHz
+ VRAM Bandwidth: 63.55 GB/s
+ VRAM Capacity: 1024 MiB
+ 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-SERVER/AMD/TeraScale/FireStream-9270.yaml b/specs/GPUs-SERVER/AMD/TeraScale/FireStream-9270.yaml
new file mode 100644
index 000000000..10e48d785
--- /dev/null
+++ b/specs/GPUs-SERVER/AMD/TeraScale/FireStream-9270.yaml
@@ -0,0 +1,36 @@
+name: FireStream-9270
+humanName: FireStream 9270
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: AMD
+ Vendor: AMD
+ 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'
+ GPU Base Frequency: 750 MHz
+ VRAM Frequency: 900 MHz
+ VRAM Bandwidth: 115.2 GB/s
+ VRAM Capacity: 2 GiB
+ 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-SERVER/ATI/Ultra-Threaded-SE.yaml b/specs/GPUs-SERVER/ATI/Ultra-Threaded-SE.yaml
new file mode 100644
index 000000000..fdf4f24a8
--- /dev/null
+++ b/specs/GPUs-SERVER/ATI/Ultra-Threaded-SE.yaml
@@ -0,0 +1,15 @@
+name: Ultra-Threaded-SE-server
+humanName: Ultra-Threaded SE
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 90 nm
+ DirectX Support: '9.3'
+ Vulkan Support: 'N/A'
+ Release Date: '2005-10-01'
+ Manufacturer: ATI
+sections:
+ - header: WHOLE RANGE
+ members:
+ - Stream-Processor
diff --git a/specs/GPUs-SERVER/ATI/Ultra-Threaded-SE/Stream-Processor.yaml b/specs/GPUs-SERVER/ATI/Ultra-Threaded-SE/Stream-Processor.yaml
new file mode 100644
index 000000000..8fd5c9b0f
--- /dev/null
+++ b/specs/GPUs-SERVER/ATI/Ultra-Threaded-SE/Stream-Processor.yaml
@@ -0,0 +1,36 @@
+name: Stream-Processor
+humanName: Stream Processor
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: ATI
+ Vendor: ATI
+ 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'
+ GPU Base Frequency: 594 MHz
+ VRAM Frequency: 648 MHz
+ VRAM Bandwidth: 41.47 GB/s
+ VRAM Capacity: 1024 MiB
+ VRAM Type: GDDR3
+ 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
+ TDP: 165 W
+ Slot Width: Dual-slot
+ Outputs:
+ - 2x DVI
+ - 1x S-Video
+ Power Connectors: 1x 6-pin
+ Length: 241 mm
+ Width: 111 mm
+ Pixel Shaders: 48
diff --git a/specs/GPUs-SERVER/GPUs-SERVER-AMD.yaml b/specs/GPUs-SERVER/GPUs-SERVER-AMD.yaml
new file mode 100644
index 000000000..6f8c09b49
--- /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/GPUs-SERVER/GPUs-SERVER-Nvidia.yaml b/specs/GPUs-SERVER/GPUs-SERVER-Nvidia.yaml
new file mode 100644
index 000000000..20f44934d
--- /dev/null
+++ b/specs/GPUs-SERVER/GPUs-SERVER-Nvidia.yaml
@@ -0,0 +1,41 @@
+name: GPUs-SERVER-Nvidia
+humanName: Server GPUs
+type: Generic Container
+isPart: false
+topHeader: 'SELECT SERIES:'
+data:
+ Manufacturer: Nvidia
+sections:
+ - header: Blackwell
+ members:
+ - Blackwell-server
+ - header: Ada Lovelace
+ members:
+ - Ada-Lovelace-server
+ - 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/GPUs-Server-ATI.yaml b/specs/GPUs-SERVER/GPUs-Server-ATI.yaml
new file mode 100644
index 000000000..dad192da9
--- /dev/null
+++ b/specs/GPUs-SERVER/GPUs-Server-ATI.yaml
@@ -0,0 +1,11 @@
+name: GPUs-SERVER-ATI
+humanName: Server GPUs
+type: Generic Container
+isPart: false
+topHeader: 'SELECT SERIES:'
+data:
+ Manufacturer: ATI
+sections:
+ - header: Uncategorised
+ members:
+ - Ultra-Threaded-SE
diff --git a/specs/GPUs-SERVER/GPUs-Server-Intel.yaml b/specs/GPUs-SERVER/GPUs-Server-Intel.yaml
new file mode 100644
index 000000000..77b16ee13
--- /dev/null
+++ b/specs/GPUs-SERVER/GPUs-Server-Intel.yaml
@@ -0,0 +1,13 @@
+name: GPUs-SERVER-INTEL
+humanName: Server GPUs
+type: Generic Container
+isPart: false
+topHeader: 'SELECT SERIES:'
+data:
+ Manufacturer: Intel
+sections:
+ - header: Uncategorised
+ members:
+ - Generation-12.7-server
+ - Generation-12.5-server
+
diff --git a/specs/GPUs-SERVER/Intel/Generation-12.5.yaml b/specs/GPUs-SERVER/Intel/Generation-12.5.yaml
new file mode 100644
index 000000000..b2e3bd7f7
--- /dev/null
+++ b/specs/GPUs-SERVER/Intel/Generation-12.5.yaml
@@ -0,0 +1,19 @@
+name: Generation-12.5-server
+humanName: Generation 12.5
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 7 nm - 10 nm
+ DirectX Support: '12.1'
+ Vulkan Support: 'N/A'
+ Release Date: '2021'
+ Manufacturer: Intel
+sections:
+ - header: WHOLE RANGE
+ members:
+ - 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-SERVER/Intel/Generation-12.5/Data-Center-GPU-Max-1100.yaml b/specs/GPUs-SERVER/Intel/Generation-12.5/Data-Center-GPU-Max-1100.yaml
new file mode 100644
index 000000000..9256a50d0
--- /dev/null
+++ b/specs/GPUs-SERVER/Intel/Generation-12.5/Data-Center-GPU-Max-1100.yaml
@@ -0,0 +1,38 @@
+name: Data-Center-GPU-Max-1100
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-SERVER/Intel/Generation-12.5/Data-Center-GPU-Max-1350.yaml b/specs/GPUs-SERVER/Intel/Generation-12.5/Data-Center-GPU-Max-1350.yaml
new file mode 100644
index 000000000..66ed6135c
--- /dev/null
+++ b/specs/GPUs-SERVER/Intel/Generation-12.5/Data-Center-GPU-Max-1350.yaml
@@ -0,0 +1,36 @@
+name: Data-Center-GPU-Max-1350
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-SERVER/Intel/Generation-12.5/Data-Center-GPU-Max-1550.yaml b/specs/GPUs-SERVER/Intel/Generation-12.5/Data-Center-GPU-Max-1550.yaml
new file mode 100644
index 000000000..0bcd8dcb2
--- /dev/null
+++ b/specs/GPUs-SERVER/Intel/Generation-12.5/Data-Center-GPU-Max-1550.yaml
@@ -0,0 +1,36 @@
+name: Data-Center-GPU-Max-1550
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-SERVER/Intel/Generation-12.5/Data-Center-GPU-Max-NEXT.yaml b/specs/GPUs-SERVER/Intel/Generation-12.5/Data-Center-GPU-Max-NEXT.yaml
new file mode 100644
index 000000000..4f89cd84a
--- /dev/null
+++ b/specs/GPUs-SERVER/Intel/Generation-12.5/Data-Center-GPU-Max-NEXT.yaml
@@ -0,0 +1,38 @@
+name: Data-Center-GPU-Max-NEXT
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-SERVER/Intel/Generation-12.5/Data-Center-GPU-Max-Subsystem.yaml b/specs/GPUs-SERVER/Intel/Generation-12.5/Data-Center-GPU-Max-Subsystem.yaml
new file mode 100644
index 000000000..4b0549524
--- /dev/null
+++ b/specs/GPUs-SERVER/Intel/Generation-12.5/Data-Center-GPU-Max-Subsystem.yaml
@@ -0,0 +1,38 @@
+name: Data-Center-GPU-Max-Subsystem
+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'
+ 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 GiB
+ 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
+ Market:
+ - Consumer
diff --git a/specs/GPUs-SERVER/Intel/Generation-12.7.yaml b/specs/GPUs-SERVER/Intel/Generation-12.7.yaml
new file mode 100644
index 000000000..fd61c18df
--- /dev/null
+++ b/specs/GPUs-SERVER/Intel/Generation-12.7.yaml
@@ -0,0 +1,16 @@
+name: Generation-12.7-server
+humanName: Generation 12.7
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 6 nm
+ DirectX Support: '12.2'
+ Vulkan Support: '1.3'
+ Release Date: '2022'
+ Manufacturer: Intel
+sections:
+ - header: WHOLE RANGE
+ members:
+ - Data-Center-GPU-Flex-140
+ - Data-Center-GPU-Flex-170
diff --git a/specs/GPUs-SERVER/Intel/Generation-12.7/Data-Center-GPU-Flex-140.yaml b/specs/GPUs-SERVER/Intel/Generation-12.7/Data-Center-GPU-Flex-140.yaml
new file mode 100644
index 000000000..503c8f393
--- /dev/null
+++ b/specs/GPUs-SERVER/Intel/Generation-12.7/Data-Center-GPU-Flex-140.yaml
@@ -0,0 +1,40 @@
+name: Data-Center-GPU-Flex-140
+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'
+ 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 GiB
+ 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
+ Market:
+ - Data center
diff --git a/specs/GPUs-SERVER/Intel/Generation-12.7/Data-Center-GPU-Flex-170.yaml b/specs/GPUs-SERVER/Intel/Generation-12.7/Data-Center-GPU-Flex-170.yaml
new file mode 100644
index 000000000..fcf7f25af
--- /dev/null
+++ b/specs/GPUs-SERVER/Intel/Generation-12.7/Data-Center-GPU-Flex-170.yaml
@@ -0,0 +1,37 @@
+name: Data-Center-GPU-Flex-170
+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'
+ 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 GiB
+ 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
+ Market:
+ - Data center
diff --git a/specs/GPUs-SERVER/Nvidia/Ada-Lovelace.yaml b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace.yaml
new file mode 100644
index 000000000..d1a3b199b
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace.yaml
@@ -0,0 +1,20 @@
+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
+ - L20
diff --git a/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L20.yaml b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L20.yaml
new file mode 100644
index 000000000..b0550c024
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L20.yaml
@@ -0,0 +1,38 @@
+name: L20
+humanName: L20
+isPart: true
+type: Graphics Card
+data:
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Ada Lovelace
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '368'
+ Vulkan Support: '1.3'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: '2023-11-16'
+ GPU Base Frequency: 1440 MHz
+ GPU Boost Frequency: 2520 MHz
+ VRAM Frequency: 2250 MHz
+ VRAM Bandwidth: 864.0 GB/s
+ VRAM Capacity: 48 GiB
+ VRAM Type: GDDR6
+ VRAM Bus Width: 384 bit
+ Render Output Unit Count: 128
+ Texture Mapping Unit Count: 368
+ Shader Processor Count: 11776
+ Die Size: 609 mm²
+ GPU: AD102
+ GPU Variant: AD102
+ TDP: 275 W
+ FP32 Compute: 59.35 TFLOPS
+ FP64 Compute: 927.4 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: 92
+ Tensor Cores: 368
diff --git a/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L4.yaml b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L4.yaml
new file mode 100644
index 000000000..0aec20940
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L4.yaml
@@ -0,0 +1,67 @@
+name: L4
+humanName: L4
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Ada-Lovelace/L40-CNX.yaml b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L40-CNX.yaml
new file mode 100644
index 000000000..2aac2a58b
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L40-CNX.yaml
@@ -0,0 +1,41 @@
+name: L40-CNX
+humanName: L40 CNX
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Ada-Lovelace/L40.yaml b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L40.yaml
new file mode 100644
index 000000000..de1f9646d
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L40.yaml
@@ -0,0 +1,67 @@
+name: L40
+humanName: L40
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Ada-Lovelace/L40G.yaml b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L40G.yaml
new file mode 100644
index 000000000..7f0e35f95
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L40G.yaml
@@ -0,0 +1,41 @@
+name: L40G
+humanName: L40G
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Ada-Lovelace/L40S.yaml b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L40S.yaml
new file mode 100644
index 000000000..fb7c272e0
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ada-Lovelace/L40S.yaml
@@ -0,0 +1,69 @@
+name: L40S
+humanName: L40S
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ - AV1 YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Ampere.yaml b/specs/GPUs-SERVER/Nvidia/Ampere.yaml
new file mode 100644
index 000000000..55e16ad7e
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ampere.yaml
@@ -0,0 +1,32 @@
+name: Ampere-server
+humanName: Ampere
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 7-8 nm
+ DirectX Support: ''
+ Vulkan Support: 'N/A'
+ Release Date: '2020-05-14'
+ Manufacturer: Nvidia
+sections:
+ - header: GRID
+ 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-SERVER/Nvidia/Ampere/A10-PCIe.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A10-PCIe.yaml
new file mode 100644
index 000000000..ccdc1941e
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ampere/A10-PCIe.yaml
@@ -0,0 +1,39 @@
+name: A10-PCIe
+humanName: A10 PCIe
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Ampere/A100-PCIe-40-GB.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A100-PCIe-40-GB.yaml
new file mode 100644
index 000000000..184a0e5c7
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ampere/A100-PCIe-40-GB.yaml
@@ -0,0 +1,36 @@
+name: A100-PCIe-40-GB
+humanName: A100 PCIe 40 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Ampere/A100-PCIe-80-GB.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A100-PCIe-80-GB.yaml
new file mode 100644
index 000000000..3e4903e3c
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ampere/A100-PCIe-80-GB.yaml
@@ -0,0 +1,36 @@
+name: A100-PCIe-80-GB
+humanName: A100 PCIe 80 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Ampere/A100-SXM4-40-GB.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A100-SXM4-40-GB.yaml
new file mode 100644
index 000000000..ade07a786
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ampere/A100-SXM4-40-GB.yaml
@@ -0,0 +1,34 @@
+name: A100-SXM4-40-GB
+humanName: A100 SXM4 40 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Ampere/A100-SXM4-80-GB.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A100-SXM4-80-GB.yaml
new file mode 100644
index 000000000..633bed187
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ampere/A100-SXM4-80-GB.yaml
@@ -0,0 +1,34 @@
+name: A100-SXM4-80-GB
+humanName: A100 SXM4 80 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Ampere/A100X.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A100X.yaml
new file mode 100644
index 000000000..bbca97fb5
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ampere/A100X.yaml
@@ -0,0 +1,36 @@
+name: A100X
+humanName: A100X
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Ampere/A10G.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A10G.yaml
new file mode 100644
index 000000000..b920c38bd
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ampere/A10G.yaml
@@ -0,0 +1,39 @@
+name: A10G
+humanName: A10G
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Ampere/A10M.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A10M.yaml
new file mode 100644
index 000000000..fe35e67c3
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ampere/A10M.yaml
@@ -0,0 +1,38 @@
+name: A10M
+humanName: A10M
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Ampere/A16-PCIe.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A16-PCIe.yaml
new file mode 100644
index 000000000..a966f562d
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ampere/A16-PCIe.yaml
@@ -0,0 +1,38 @@
+name: A16-PCIe
+humanName: A16 PCIe
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Ampere/A2-PCIe.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A2-PCIe.yaml
new file mode 100644
index 000000000..6fbc88da6
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ampere/A2-PCIe.yaml
@@ -0,0 +1,38 @@
+name: A2-PCIe
+humanName: A2 PCIe
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Ampere/A2.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A2.yaml
new file mode 100644
index 000000000..43128a9f6
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ampere/A2.yaml
@@ -0,0 +1,63 @@
+name: A2
+humanName: A2
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ - AV1 8 Bit
+ - AV1 10 Bit
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Ampere/A30-PCIe.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A30-PCIe.yaml
new file mode 100644
index 000000000..7d5845053
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ampere/A30-PCIe.yaml
@@ -0,0 +1,36 @@
+name: A30-PCIe
+humanName: A30 PCIe
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Ampere/A30X.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A30X.yaml
new file mode 100644
index 000000000..8f3f6d03b
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ampere/A30X.yaml
@@ -0,0 +1,36 @@
+name: A30X
+humanName: A30X
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Ampere/A40-PCIe.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/A40-PCIe.yaml
new file mode 100644
index 000000000..82f400c3b
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ampere/A40-PCIe.yaml
@@ -0,0 +1,38 @@
+name: A40-PCIe
+humanName: A40 PCIe
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Ampere/GRID-A100A.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/GRID-A100A.yaml
new file mode 100644
index 000000000..def3afbc1
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ampere/GRID-A100A.yaml
@@ -0,0 +1,34 @@
+name: GRID-A100A
+humanName: GRID A100A
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Ampere/GRID-A100B.yaml b/specs/GPUs-SERVER/Nvidia/Ampere/GRID-A100B.yaml
new file mode 100644
index 000000000..5b5541461
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Ampere/GRID-A100B.yaml
@@ -0,0 +1,34 @@
+name: GRID-A100B
+humanName: GRID A100B
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Blackwell-2.0.yaml b/specs/GPUs-SERVER/Nvidia/Blackwell-2.0.yaml
new file mode 100644
index 000000000..e7d5ad064
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Blackwell-2.0.yaml
@@ -0,0 +1,15 @@
+name: Blackwell-2.0-server
+humanName: Blackwell 2.0
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ Vulkan Support: '1.4'
+ Release Date: '2025'
+ Manufacturer: Nvidia
+sections:
+ - header: Data center
+ members:
+ - RTX-PRO-6000-Blackwell-Server
diff --git a/specs/GPUs-SERVER/Nvidia/Blackwell-2.0/RTX-PRO-6000-Blackwell-Server.yaml b/specs/GPUs-SERVER/Nvidia/Blackwell-2.0/RTX-PRO-6000-Blackwell-Server.yaml
new file mode 100644
index 000000000..7e3f3de04
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Blackwell-2.0/RTX-PRO-6000-Blackwell-Server.yaml
@@ -0,0 +1,40 @@
+name: RTX-PRO-6000-Blackwell-Server
+humanName: RTX PRO 6000 Blackwell Server
+isPart: true
+type: Graphics Card
+data:
+ Market:
+ - Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell 2.0
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ HLSL Shader Model: '752'
+ Vulkan Support: '1.4'
+ OpenGL Support: '4.6'
+ OpenCL Support: '3.0'
+ Release Date: '2025-03-18'
+ GPU Base Frequency: 1590 MHz
+ GPU Boost Frequency: 2617 MHz
+ VRAM Frequency: 1750 MHz
+ VRAM Bandwidth: 1.79 TB/s
+ VRAM Capacity: 96 GiB
+ VRAM Type: GDDR7
+ VRAM Bus Width: 512 bit
+ Render Output Unit Count: 192
+ Texture Mapping Unit Count: 752
+ Shader Processor Count: 24064
+ Die Size: 750 mm²
+ GPU: GB202
+ TDP: 600 W
+ FP32 Compute: 126.0 TFLOPS
+ FP64 Compute: 1.968 TFLOPS (1:64)
+ Slot Width: Dual-slot
+ Outputs: 4x DisplayPort 2.1b
+ Power Connectors: 1x 16-pin
+ Length: 267 mm
+ Width: 111 mm
+ Height: 40 mm
+ Ray Tracing Cores: 188
+ Tensor Cores: 752
diff --git a/specs/GPUs-SERVER/Nvidia/Blackwell.yaml b/specs/GPUs-SERVER/Nvidia/Blackwell.yaml
new file mode 100644
index 000000000..51d2dc8a7
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Blackwell.yaml
@@ -0,0 +1,15 @@
+name: Blackwell-server
+humanName: Blackwell
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 5 nm
+ DirectX Support: '12.2'
+ Vulkan Support: '1.4'
+ Release Date: '2025'
+ Manufacturer: Nvidia
+sections:
+ - header: AI
+ members:
+ - B200-SXM-192-GB
diff --git a/specs/GPUs-SERVER/Nvidia/Blackwell/B200-SXM-192-GB.yaml b/specs/GPUs-SERVER/Nvidia/Blackwell/B200-SXM-192-GB.yaml
new file mode 100644
index 000000000..564b8477a
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Blackwell/B200-SXM-192-GB.yaml
@@ -0,0 +1,33 @@
+name: B200-SXM-192-GB
+humanName: B200 SXM 192 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ Architecture: Blackwell
+ Lithography: 5 nm
+ HLSL Shader Model: '528'
+ Vulkan Support: 'N/A'
+ OpenGL Support: 'N/A'
+ OpenCL Support: '3.0'
+ Release Date: '2024'
+ GPU Base Frequency: 1665 MHz
+ GPU Boost Frequency: 1837 MHz
+ VRAM Frequency: 2000 MHz
+ VRAM Bandwidth: 4.10 TB/s
+ VRAM Capacity: 96 GiB
+ VRAM Type: HBM3e
+ VRAM Bus Width: 4096 bit
+ Render Output Unit Count: 24
+ Texture Mapping Unit Count: 528
+ Shader Processor Count: 16896
+ Die Size: unknown
+ GPU: GB100
+ TDP: 1000 W
+ FP32 Compute: 62.08 TFLOPS
+ FP64 Compute: 31.04 TFLOPS (1:2)
+ Slot Width: SXM Module
+ Outputs: No outputs
+ Tensor Cores: 528
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 000000000..131d5cd08
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Fermi-2.0.yaml
@@ -0,0 +1,19 @@
+name: Fermi-2.0-server
+humanName: Fermi 2.0
+type: Graphics Architecture
+isPart: false
+topHeader: 'SELECT CARD:'
+data:
+ Lithography: 40 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-SERVER/Nvidia/Fermi-2.0/Tesla-C2075.yaml b/specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-C2075.yaml
new file mode 100644
index 000000000..19c238707
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-C2075.yaml
@@ -0,0 +1,34 @@
+name: Tesla-C2075
+humanName: Tesla C2075
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 574 MHz
+ VRAM Frequency: 783 MHz
+ VRAM Bandwidth: 150.3 GB/s
+ VRAM Capacity: 6 GiB
+ 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-SERVER/Nvidia/Fermi-2.0/Tesla-C2090.yaml b/specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-C2090.yaml
new file mode 100644
index 000000000..6bedfe68c
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-C2090.yaml
@@ -0,0 +1,33 @@
+name: Tesla-C2090
+humanName: Tesla C2090
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 651 MHz
+ VRAM Frequency: 924 MHz
+ VRAM Bandwidth: 177.4 GB/s
+ VRAM Capacity: 6 GiB
+ 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-SERVER/Nvidia/Fermi-2.0/Tesla-M2075.yaml b/specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-M2075.yaml
new file mode 100644
index 000000000..f8470b2ad
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-M2075.yaml
@@ -0,0 +1,34 @@
+name: Tesla-M2075
+humanName: Tesla M2075
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 574 MHz
+ VRAM Frequency: 783 MHz
+ VRAM Bandwidth: 150.3 GB/s
+ VRAM Capacity: 6 GiB
+ 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-SERVER/Nvidia/Fermi-2.0/Tesla-M2090.yaml b/specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-M2090.yaml
new file mode 100644
index 000000000..29c5877ad
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-M2090.yaml
@@ -0,0 +1,33 @@
+name: Tesla-M2090
+humanName: Tesla M2090
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 651 MHz
+ VRAM Frequency: 924 MHz
+ VRAM Bandwidth: 177.4 GB/s
+ VRAM Capacity: 6 GiB
+ 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-SERVER/Nvidia/Fermi-2.0/Tesla-X2090.yaml b/specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-X2090.yaml
new file mode 100644
index 000000000..7f66b751b
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Fermi-2.0/Tesla-X2090.yaml
@@ -0,0 +1,32 @@
+name: Tesla-X2090
+humanName: Tesla X2090
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 651 MHz
+ VRAM Frequency: 924 MHz
+ VRAM Bandwidth: 177.4 GB/s
+ VRAM Capacity: 6 GiB
+ 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-SERVER/Nvidia/Fermi.yaml b/specs/GPUs-SERVER/Nvidia/Fermi.yaml
new file mode 100644
index 000000000..dc755dbc4
--- /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: 40 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-SERVER/Nvidia/Fermi/Tesla-C2050.yaml b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-C2050.yaml
new file mode 100644
index 000000000..d78931e04
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-C2050.yaml
@@ -0,0 +1,34 @@
+name: Tesla-C2050
+humanName: Tesla C2050
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 574 MHz
+ VRAM Frequency: 750 MHz
+ VRAM Bandwidth: 144.0 GB/s
+ VRAM Capacity: 3 GiB
+ 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-SERVER/Nvidia/Fermi/Tesla-C2070.yaml b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-C2070.yaml
new file mode 100644
index 000000000..170d3a37e
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-C2070.yaml
@@ -0,0 +1,33 @@
+name: Tesla-C2070
+humanName: Tesla C2070
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 574 MHz
+ VRAM Frequency: 747 MHz
+ VRAM Bandwidth: 143.4 GB/s
+ VRAM Capacity: 6 GiB
+ 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-SERVER/Nvidia/Fermi/Tesla-M2050.yaml b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-M2050.yaml
new file mode 100644
index 000000000..056e2f0de
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-M2050.yaml
@@ -0,0 +1,33 @@
+name: Tesla-M2050
+humanName: Tesla M2050
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 574 MHz
+ VRAM Frequency: 773 MHz
+ VRAM Bandwidth: 148.4 GB/s
+ VRAM Capacity: 3 GiB
+ 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-SERVER/Nvidia/Fermi/Tesla-M2070-Q.yaml b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-M2070-Q.yaml
new file mode 100644
index 000000000..e3ab71e82
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-M2070-Q.yaml
@@ -0,0 +1,34 @@
+name: Tesla-M2070-Q
+humanName: Tesla M2070-Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 574 MHz
+ VRAM Frequency: 783 MHz
+ VRAM Bandwidth: 150.3 GB/s
+ VRAM Capacity: 6 GiB
+ 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-SERVER/Nvidia/Fermi/Tesla-M2070.yaml b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-M2070.yaml
new file mode 100644
index 000000000..4eff5b6aa
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-M2070.yaml
@@ -0,0 +1,33 @@
+name: Tesla-M2070
+humanName: Tesla M2070
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 574 MHz
+ VRAM Frequency: 783 MHz
+ VRAM Bandwidth: 150.3 GB/s
+ VRAM Capacity: 6 GiB
+ 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-SERVER/Nvidia/Fermi/Tesla-S2050.yaml b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-S2050.yaml
new file mode 100644
index 000000000..209fdf70a
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-S2050.yaml
@@ -0,0 +1,31 @@
+name: Tesla-S2050
+humanName: Tesla S2050
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 574 MHz
+ VRAM Frequency: 773 MHz
+ VRAM Bandwidth: 148.4 GB/s
+ VRAM Capacity: 3 GiB
+ 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-SERVER/Nvidia/Fermi/Tesla-X2070.yaml b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-X2070.yaml
new file mode 100644
index 000000000..69847afd7
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Fermi/Tesla-X2070.yaml
@@ -0,0 +1,33 @@
+name: Tesla-X2070
+humanName: Tesla X2070
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 651 MHz
+ VRAM Frequency: 924 MHz
+ VRAM Bandwidth: 177.4 GB/s
+ VRAM Capacity: 6 GiB
+ 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-SERVER/Nvidia/Kepler-2.0.yaml b/specs/GPUs-SERVER/Nvidia/Kepler-2.0.yaml
new file mode 100644
index 000000000..cc93d6296
--- /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: 28 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-SERVER/Nvidia/Kepler-2.0/Tesla-K80.yaml b/specs/GPUs-SERVER/Nvidia/Kepler-2.0/Tesla-K80.yaml
new file mode 100644
index 000000000..0fec555b9
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler-2.0/Tesla-K80.yaml
@@ -0,0 +1,35 @@
+name: Tesla-K80
+humanName: Tesla K80
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Kepler.yaml b/specs/GPUs-SERVER/Nvidia/Kepler.yaml
new file mode 100644
index 000000000..3027b2105
--- /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: 28 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-SERVER/Nvidia/Kepler/GRID-K1.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K1.yaml
new file mode 100644
index 000000000..b173f22ea
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K1.yaml
@@ -0,0 +1,34 @@
+name: GRID-K1
+humanName: GRID K1
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 850 MHz
+ VRAM Frequency: 891 MHz
+ VRAM Bandwidth: 28.51 GB/s
+ VRAM Capacity: 4 GiB
+ 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-SERVER/Nvidia/Kepler/GRID-K100.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K100.yaml
new file mode 100644
index 000000000..0399faa02
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K100.yaml
@@ -0,0 +1,31 @@
+name: GRID-K100
+humanName: GRID K100
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 850 MHz
+ VRAM Frequency: 891 MHz
+ VRAM Bandwidth: 28.51 GB/s
+ VRAM Capacity: 256 MiB
+ 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-SERVER/Nvidia/Kepler/GRID-K120Q.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K120Q.yaml
new file mode 100644
index 000000000..2028304c1
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K120Q.yaml
@@ -0,0 +1,31 @@
+name: GRID-K120Q
+humanName: GRID K120Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 850 MHz
+ VRAM Frequency: 891 MHz
+ VRAM Bandwidth: 28.51 GB/s
+ VRAM Capacity: 512 MiB
+ 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-SERVER/Nvidia/Kepler/GRID-K140Q.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K140Q.yaml
new file mode 100644
index 000000000..622d58e94
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K140Q.yaml
@@ -0,0 +1,31 @@
+name: GRID-K140Q
+humanName: GRID K140Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 850 MHz
+ VRAM Frequency: 891 MHz
+ VRAM Bandwidth: 28.51 GB/s
+ VRAM Capacity: 1024 MiB
+ 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-SERVER/Nvidia/Kepler/GRID-K160Q.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K160Q.yaml
new file mode 100644
index 000000000..41adcdf9f
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K160Q.yaml
@@ -0,0 +1,31 @@
+name: GRID-K160Q
+humanName: GRID K160Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 850 MHz
+ VRAM Frequency: 891 MHz
+ VRAM Bandwidth: 28.51 GB/s
+ VRAM Capacity: 1024 MiB
+ 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-SERVER/Nvidia/Kepler/GRID-K180Q.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K180Q.yaml
new file mode 100644
index 000000000..5f8b7c33a
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K180Q.yaml
@@ -0,0 +1,31 @@
+name: GRID-K180Q
+humanName: GRID K180Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 850 MHz
+ VRAM Frequency: 891 MHz
+ VRAM Bandwidth: 28.51 GB/s
+ VRAM Capacity: 1024 MiB
+ 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-SERVER/Nvidia/Kepler/GRID-K2.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K2.yaml
new file mode 100644
index 000000000..15b12c18f
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K2.yaml
@@ -0,0 +1,34 @@
+name: GRID-K2
+humanName: GRID K2
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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: 745 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 160.0 GB/s
+ VRAM Capacity: 4 GiB
+ 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-SERVER/Nvidia/Kepler/GRID-K200.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K200.yaml
new file mode 100644
index 000000000..adbd871aa
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K200.yaml
@@ -0,0 +1,31 @@
+name: GRID-K200
+humanName: GRID K200
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 745 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 160.0 GB/s
+ VRAM Capacity: 256 MiB
+ 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-SERVER/Nvidia/Kepler/GRID-K220Q.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K220Q.yaml
new file mode 100644
index 000000000..a0fcfb5e6
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K220Q.yaml
@@ -0,0 +1,31 @@
+name: GRID-K220Q
+humanName: GRID K220Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 745 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 160.0 GB/s
+ VRAM Capacity: 512 MiB
+ 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-SERVER/Nvidia/Kepler/GRID-K240Q.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K240Q.yaml
new file mode 100644
index 000000000..5bd768f31
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K240Q.yaml
@@ -0,0 +1,31 @@
+name: GRID-K240Q
+humanName: GRID K240Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 745 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 160.0 GB/s
+ VRAM Capacity: 1024 MiB
+ 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-SERVER/Nvidia/Kepler/GRID-K260Q.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K260Q.yaml
new file mode 100644
index 000000000..0432c039c
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K260Q.yaml
@@ -0,0 +1,31 @@
+name: GRID-K260Q
+humanName: GRID K260Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 745 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 160.0 GB/s
+ VRAM Capacity: 2 GiB
+ 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-SERVER/Nvidia/Kepler/GRID-K280Q.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K280Q.yaml
new file mode 100644
index 000000000..34a3464b3
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K280Q.yaml
@@ -0,0 +1,31 @@
+name: GRID-K280Q
+humanName: GRID K280Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 745 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 160.0 GB/s
+ VRAM Capacity: 4 GiB
+ 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-SERVER/Nvidia/Kepler/GRID-K340.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K340.yaml
new file mode 100644
index 000000000..f8b8efe88
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K340.yaml
@@ -0,0 +1,33 @@
+name: GRID-K340
+humanName: GRID K340
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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: 954 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 80.00 GB/s
+ VRAM Capacity: 1024 MiB
+ 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-SERVER/Nvidia/Kepler/GRID-K500.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K500.yaml
new file mode 100644
index 000000000..826b08b37
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K500.yaml
@@ -0,0 +1,32 @@
+name: GRID-K500
+humanName: GRID K500
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 745 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 160.0 GB/s
+ VRAM Capacity: 4 GiB
+ 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-SERVER/Nvidia/Kepler/GRID-K520.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K520.yaml
new file mode 100644
index 000000000..a85ef1c68
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K520.yaml
@@ -0,0 +1,33 @@
+name: GRID-K520
+humanName: GRID K520
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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: 745 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 160.0 GB/s
+ VRAM Capacity: 4 GiB
+ 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-SERVER/Nvidia/Kepler/GRID-K520Q.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K520Q.yaml
new file mode 100644
index 000000000..126f89354
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K520Q.yaml
@@ -0,0 +1,32 @@
+name: GRID-K520Q
+humanName: GRID K520Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 745 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 160.0 GB/s
+ VRAM Capacity: 4 GiB
+ 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-SERVER/Nvidia/Kepler/GRID-K540Q.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K540Q.yaml
new file mode 100644
index 000000000..4c43e5168
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K540Q.yaml
@@ -0,0 +1,32 @@
+name: GRID-K540Q
+humanName: GRID K540Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 745 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 160.0 GB/s
+ VRAM Capacity: 4 GiB
+ 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-SERVER/Nvidia/Kepler/GRID-K560Q.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K560Q.yaml
new file mode 100644
index 000000000..71fce97bb
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/GRID-K560Q.yaml
@@ -0,0 +1,32 @@
+name: GRID-K560Q
+humanName: GRID K560Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 745 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 160.0 GB/s
+ VRAM Capacity: 4 GiB
+ 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-SERVER/Nvidia/Kepler/Tesla-K10.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K10.yaml
new file mode 100644
index 000000000..c3fa906aa
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K10.yaml
@@ -0,0 +1,33 @@
+name: Tesla-K10
+humanName: Tesla K10
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 745 MHz
+ VRAM Frequency: 1250 MHz
+ VRAM Bandwidth: 160.0 GB/s
+ VRAM Capacity: 4 GiB
+ 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-SERVER/Nvidia/Kepler/Tesla-K20X.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20X.yaml
new file mode 100644
index 000000000..29b6d2127
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20X.yaml
@@ -0,0 +1,33 @@
+name: Tesla-K20X
+humanName: Tesla K20X
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 732 MHz
+ VRAM Frequency: 1300 MHz
+ VRAM Bandwidth: 249.6 GB/s
+ VRAM Capacity: 6 GiB
+ 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-SERVER/Nvidia/Kepler/Tesla-K20Xm.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20Xm.yaml
new file mode 100644
index 000000000..bdc4dcc0e
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20Xm.yaml
@@ -0,0 +1,32 @@
+name: Tesla-K20Xm
+humanName: Tesla K20Xm
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 732 MHz
+ VRAM Frequency: 1300 MHz
+ VRAM Bandwidth: 249.6 GB/s
+ VRAM Capacity: 6 GiB
+ 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-SERVER/Nvidia/Kepler/Tesla-K20c.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20c.yaml
new file mode 100644
index 000000000..89371dd04
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20c.yaml
@@ -0,0 +1,34 @@
+name: Tesla-K20c
+humanName: Tesla K20c
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 706 MHz
+ VRAM Frequency: 1300 MHz
+ VRAM Bandwidth: 208.0 GB/s
+ VRAM Capacity: 5 GiB
+ 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-SERVER/Nvidia/Kepler/Tesla-K20m.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20m.yaml
new file mode 100644
index 000000000..030184ae7
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20m.yaml
@@ -0,0 +1,33 @@
+name: Tesla-K20m
+humanName: Tesla K20m
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 706 MHz
+ VRAM Frequency: 1300 MHz
+ VRAM Bandwidth: 208.0 GB/s
+ VRAM Capacity: 5 GiB
+ 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-SERVER/Nvidia/Kepler/Tesla-K20s.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20s.yaml
new file mode 100644
index 000000000..cca1de5ba
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K20s.yaml
@@ -0,0 +1,32 @@
+name: Tesla-K20s
+humanName: Tesla K20s
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 575 MHz
+ VRAM Frequency: 1300 MHz
+ VRAM Bandwidth: 208.0 GB/s
+ VRAM Capacity: 5 GiB
+ 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-SERVER/Nvidia/Kepler/Tesla-K40c.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40c.yaml
new file mode 100644
index 000000000..e4090d0b9
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40c.yaml
@@ -0,0 +1,35 @@
+name: Tesla-K40c
+humanName: Tesla K40c
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Kepler/Tesla-K40d.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40d.yaml
new file mode 100644
index 000000000..8e06ddbf9
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40d.yaml
@@ -0,0 +1,33 @@
+name: Tesla-K40d
+humanName: Tesla K40d
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Kepler/Tesla-K40m.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40m.yaml
new file mode 100644
index 000000000..c3778e706
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40m.yaml
@@ -0,0 +1,33 @@
+name: Tesla-K40m
+humanName: Tesla K40m
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Kepler/Tesla-K40s.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40s.yaml
new file mode 100644
index 000000000..088c55827
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40s.yaml
@@ -0,0 +1,33 @@
+name: Tesla-K40s
+humanName: Tesla K40s
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Kepler/Tesla-K40st.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40st.yaml
new file mode 100644
index 000000000..27d2aba1f
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40st.yaml
@@ -0,0 +1,32 @@
+name: Tesla-K40st
+humanName: Tesla K40st
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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: 575 MHz
+ VRAM Frequency: 1502 MHz
+ VRAM Bandwidth: 288.4 GB/s
+ VRAM Capacity: 12 GiB
+ 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-SERVER/Nvidia/Kepler/Tesla-K40t.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40t.yaml
new file mode 100644
index 000000000..5b156457b
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K40t.yaml
@@ -0,0 +1,33 @@
+name: Tesla-K40t
+humanName: Tesla K40t
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Kepler/Tesla-K8.yaml b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K8.yaml
new file mode 100644
index 000000000..d3c886182
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Kepler/Tesla-K8.yaml
@@ -0,0 +1,34 @@
+name: Tesla-K8
+humanName: Tesla K8
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Maxwell-2.0.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0.yaml
new file mode 100644
index 000000000..b03eb18fd
--- /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: 28 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-SERVER/Nvidia/Maxwell-2.0/GRID-M6-8Q.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M6-8Q.yaml
new file mode 100644
index 000000000..0dde82ef5
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M6-8Q.yaml
@@ -0,0 +1,33 @@
+name: GRID-M6-8Q
+humanName: GRID M6-8Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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: 722 MHz
+ VRAM Frequency: 1253 MHz
+ VRAM Bandwidth: 160.4 GB/s
+ VRAM Capacity: 8 GiB
+ 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-SERVER/Nvidia/Maxwell-2.0/GRID-M60-1Q.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M60-1Q.yaml
new file mode 100644
index 000000000..b10d0498d
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M60-1Q.yaml
@@ -0,0 +1,34 @@
+name: GRID-M60-1Q
+humanName: GRID M60-1Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 MiB
+ 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-SERVER/Nvidia/Maxwell-2.0/GRID-M60-2Q.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M60-2Q.yaml
new file mode 100644
index 000000000..3ae8e2780
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M60-2Q.yaml
@@ -0,0 +1,34 @@
+name: GRID-M60-2Q
+humanName: GRID M60-2Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Maxwell-2.0/GRID-M60-4A.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M60-4A.yaml
new file mode 100644
index 000000000..4d367a481
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M60-4A.yaml
@@ -0,0 +1,34 @@
+name: GRID-M60-4A
+humanName: GRID M60-4A
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Maxwell-2.0/GRID-M60-8Q.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M60-8Q.yaml
new file mode 100644
index 000000000..70c30e9c1
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/GRID-M60-8Q.yaml
@@ -0,0 +1,34 @@
+name: GRID-M60-8Q
+humanName: GRID M60-8Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Maxwell-2.0/Tesla-M4.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M4.yaml
new file mode 100644
index 000000000..82ca658a3
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M4.yaml
@@ -0,0 +1,46 @@
+name: Tesla-M4
+humanName: Tesla M4
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Maxwell-2.0/Tesla-M40-24-GB.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M40-24-GB.yaml
new file mode 100644
index 000000000..be8bfefdf
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M40-24-GB.yaml
@@ -0,0 +1,35 @@
+name: Tesla-M40-24-GB
+humanName: Tesla M40 24 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Maxwell-2.0/Tesla-M40.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M40.yaml
new file mode 100644
index 000000000..3c52c4f75
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M40.yaml
@@ -0,0 +1,46 @@
+name: Tesla-M40
+humanName: Tesla M40
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Maxwell-2.0/Tesla-M6-Mobile.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M6-Mobile.yaml
new file mode 100644
index 000000000..ad42378fd
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M6-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Tesla-M6-Mobile
+humanName: Tesla M6 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml
new file mode 100644
index 000000000..e5c025fca
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M6-X2-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Tesla-M6-X2-Mobile
+humanName: Tesla M6 X2 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Maxwell-2.0/Tesla-M60.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M60.yaml
new file mode 100644
index 000000000..0101243b0
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Maxwell-2.0/Tesla-M60.yaml
@@ -0,0 +1,45 @@
+name: Tesla-M60
+humanName: Tesla M60
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Maxwell.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell.yaml
new file mode 100644
index 000000000..4f3a0e549
--- /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: 28 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-SERVER/Nvidia/Maxwell/GRID-M10-8Q.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell/GRID-M10-8Q.yaml
new file mode 100644
index 000000000..5d5823afe
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Maxwell/GRID-M10-8Q.yaml
@@ -0,0 +1,35 @@
+name: GRID-M10-8Q
+humanName: GRID M10-8Q
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Maxwell/GRID-M3-3020.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell/GRID-M3-3020.yaml
new file mode 100644
index 000000000..2bb66b9b6
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Maxwell/GRID-M3-3020.yaml
@@ -0,0 +1,34 @@
+name: GRID-M3-3020
+humanName: GRID M3-3020
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Maxwell/GRID-M40.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell/GRID-M40.yaml
new file mode 100644
index 000000000..5b03de421
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Maxwell/GRID-M40.yaml
@@ -0,0 +1,31 @@
+name: GRID-M40
+humanName: GRID M40
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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
+ VRAM Frequency: 1300 MHz
+ VRAM Bandwidth: 83.20 GB/s
+ VRAM Capacity: 8 GiB
+ 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-SERVER/Nvidia/Maxwell/Tesla-M10.yaml b/specs/GPUs-SERVER/Nvidia/Maxwell/Tesla-M10.yaml
new file mode 100644
index 000000000..48434fedb
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Maxwell/Tesla-M10.yaml
@@ -0,0 +1,45 @@
+name: Tesla-M10
+humanName: Tesla M10
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Pascal.yaml b/specs/GPUs-SERVER/Nvidia/Pascal.yaml
new file mode 100644
index 000000000..218e32a53
--- /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: 16 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-SERVER/Nvidia/Pascal/Tesla-P10.yaml b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P10.yaml
new file mode 100644
index 000000000..83e63b192
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P10.yaml
@@ -0,0 +1,35 @@
+name: Tesla-P10
+humanName: Tesla P10
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Pascal/Tesla-P100-DGXS.yaml b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P100-DGXS.yaml
new file mode 100644
index 000000000..cc87cd0db
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P100-DGXS.yaml
@@ -0,0 +1,32 @@
+name: Tesla-P100-DGXS
+humanName: Tesla P100 DGXS
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Pascal/Tesla-P100-PCIe-12-GB.yaml b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P100-PCIe-12-GB.yaml
new file mode 100644
index 000000000..b8267f4a5
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P100-PCIe-12-GB.yaml
@@ -0,0 +1,35 @@
+name: Tesla-P100-PCIe-12-GB
+humanName: Tesla P100 PCIe 12 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Pascal/Tesla-P100-PCIe-16-GB.yaml b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P100-PCIe-16-GB.yaml
new file mode 100644
index 000000000..c1500c6e7
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P100-PCIe-16-GB.yaml
@@ -0,0 +1,35 @@
+name: Tesla-P100-PCIe-16-GB
+humanName: Tesla P100 PCIe 16 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Pascal/Tesla-P100-SXM2.yaml b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P100-SXM2.yaml
new file mode 100644
index 000000000..90b1fd3a5
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P100-SXM2.yaml
@@ -0,0 +1,34 @@
+name: Tesla-P100-SXM2
+humanName: Tesla P100 SXM2
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Pascal/Tesla-P4.yaml b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P4.yaml
new file mode 100644
index 000000000..8dea62e58
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P4.yaml
@@ -0,0 +1,54 @@
+name: Tesla-P4
+humanName: Tesla P4
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Pascal/Tesla-P40.yaml b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P40.yaml
new file mode 100644
index 000000000..cf9e42481
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P40.yaml
@@ -0,0 +1,55 @@
+name: Tesla-P40
+humanName: Tesla P40
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Pascal/Tesla-P6-Mobile.yaml b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P6-Mobile.yaml
new file mode 100644
index 000000000..03b4e4e86
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Pascal/Tesla-P6-Mobile.yaml
@@ -0,0 +1,34 @@
+name: Tesla-P6-Mobile
+humanName: Tesla P6 Mobile
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Tesla-2.0.yaml b/specs/GPUs-SERVER/Nvidia/Tesla-2.0.yaml
new file mode 100644
index 000000000..d1dcfc23b
--- /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: 55 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-SERVER/Nvidia/Tesla-2.0/Tesla-C1060.yaml b/specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-C1060.yaml
new file mode 100644
index 000000000..ca6722949
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-C1060.yaml
@@ -0,0 +1,34 @@
+name: Tesla-C1060
+humanName: Tesla C1060
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 610 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 102.4 GB/s
+ VRAM Capacity: 1024 MiB
+ 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-SERVER/Nvidia/Tesla-2.0/Tesla-C1080.yaml b/specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-C1080.yaml
new file mode 100644
index 000000000..dcb0db63d
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-C1080.yaml
@@ -0,0 +1,34 @@
+name: Tesla-C1080
+humanName: Tesla C1080
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 610 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 102.4 GB/s
+ VRAM Capacity: 4 GiB
+ 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-SERVER/Nvidia/Tesla-2.0/Tesla-M1060.yaml b/specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-M1060.yaml
new file mode 100644
index 000000000..fb7ecd321
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-M1060.yaml
@@ -0,0 +1,34 @@
+name: Tesla-M1060
+humanName: Tesla M1060
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 610 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 102.4 GB/s
+ VRAM Capacity: 2 GiB
+ 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-SERVER/Nvidia/Tesla-2.0/Tesla-S1070.yaml b/specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-S1070.yaml
new file mode 100644
index 000000000..16830952d
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-S1070.yaml
@@ -0,0 +1,31 @@
+name: Tesla-S1070
+humanName: Tesla S1070
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 610 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 102.4 GB/s
+ VRAM Capacity: 4 GiB
+ 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-SERVER/Nvidia/Tesla-2.0/Tesla-S1075.yaml b/specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-S1075.yaml
new file mode 100644
index 000000000..2f54f491a
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Tesla-2.0/Tesla-S1075.yaml
@@ -0,0 +1,31 @@
+name: Tesla-S1075
+humanName: Tesla S1075
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 610 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 102.4 GB/s
+ VRAM Capacity: 4 GiB
+ 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-SERVER/Nvidia/Tesla.yaml b/specs/GPUs-SERVER/Nvidia/Tesla.yaml
new file mode 100644
index 000000000..694ee5368
--- /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: 90 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-SERVER/Nvidia/Tesla/Tesla-C870.yaml b/specs/GPUs-SERVER/Nvidia/Tesla/Tesla-C870.yaml
new file mode 100644
index 000000000..66843034b
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Tesla/Tesla-C870.yaml
@@ -0,0 +1,31 @@
+name: Tesla-C870
+humanName: Tesla C870
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 76.80 GB/s
+ VRAM Capacity: 1536 MiB
+ 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-SERVER/Nvidia/Tesla/Tesla-D870.yaml b/specs/GPUs-SERVER/Nvidia/Tesla/Tesla-D870.yaml
new file mode 100644
index 000000000..71d4d5ba1
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Tesla/Tesla-D870.yaml
@@ -0,0 +1,30 @@
+name: Tesla-D870
+humanName: Tesla D870
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 76.80 GB/s
+ VRAM Capacity: 1536 MiB
+ 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-SERVER/Nvidia/Tesla/Tesla-S870.yaml b/specs/GPUs-SERVER/Nvidia/Tesla/Tesla-S870.yaml
new file mode 100644
index 000000000..fbbdc5d8b
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Tesla/Tesla-S870.yaml
@@ -0,0 +1,30 @@
+name: Tesla-S870
+humanName: Tesla S870
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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'
+ GPU Base Frequency: 600 MHz
+ VRAM Frequency: 800 MHz
+ VRAM Bandwidth: 76.80 GB/s
+ VRAM Capacity: 1536 MiB
+ 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-SERVER/Nvidia/Turing.yaml b/specs/GPUs-SERVER/Nvidia/Turing.yaml
new file mode 100644
index 000000000..7043e7662
--- /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: 12 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-SERVER/Nvidia/Turing/GRID-RTX-T10-16.yaml b/specs/GPUs-SERVER/Nvidia/Turing/GRID-RTX-T10-16.yaml
new file mode 100644
index 000000000..fe3fe0828
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Turing/GRID-RTX-T10-16.yaml
@@ -0,0 +1,38 @@
+name: GRID-RTX-T10-16
+humanName: GRID RTX T10-16
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Turing/GRID-RTX-T10-2.yaml b/specs/GPUs-SERVER/Nvidia/Turing/GRID-RTX-T10-2.yaml
new file mode 100644
index 000000000..aa61bf991
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Turing/GRID-RTX-T10-2.yaml
@@ -0,0 +1,38 @@
+name: GRID-RTX-T10-2
+humanName: GRID RTX T10-2
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Turing/GRID-RTX-T10-4.yaml b/specs/GPUs-SERVER/Nvidia/Turing/GRID-RTX-T10-4.yaml
new file mode 100644
index 000000000..ac5b43399
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Turing/GRID-RTX-T10-4.yaml
@@ -0,0 +1,38 @@
+name: GRID-RTX-T10-4
+humanName: GRID RTX T10-4
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Turing/GRID-RTX-T10-8.yaml b/specs/GPUs-SERVER/Nvidia/Turing/GRID-RTX-T10-8.yaml
new file mode 100644
index 000000000..9962edc59
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Turing/GRID-RTX-T10-8.yaml
@@ -0,0 +1,38 @@
+name: GRID-RTX-T10-8
+humanName: GRID RTX T10-8
+isPart: true
+type: Graphics Card
+data:
+ Market: Cloud Gaming
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Turing/Tesla-T10-16-GB.yaml b/specs/GPUs-SERVER/Nvidia/Turing/Tesla-T10-16-GB.yaml
new file mode 100644
index 000000000..f9029e69b
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Turing/Tesla-T10-16-GB.yaml
@@ -0,0 +1,39 @@
+name: Tesla-T10-16-GB
+humanName: Tesla T10 16 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Turing/Tesla-T4.yaml b/specs/GPUs-SERVER/Nvidia/Turing/Tesla-T4.yaml
new file mode 100644
index 000000000..0a781f3ab
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Turing/Tesla-T4.yaml
@@ -0,0 +1,63 @@
+name: Tesla-T4
+humanName: Tesla T4
+isPart: true
+type: Graphics Card
+data:
+ Hardware Accelerated Encoding:
+ - H.264 (AVCHD) YUV 4:2:0
+ - H.264 (AVCHD) YUV 4:4:4
+ - H.264 (AVCHD) Lossless
+ - H.265 (HEVC) 4K YUV 4:2:0
+ - H.265 (HEVC) 4K YUV 4:4:4
+ - H.265 (HEVC) 4K Lossless
+ - H.265 (HEVC) 8K
+ - HEVC 10-bit
+ - HEVC B Frame
+ Hardware Accelerated Decoding:
+ - MPEG-1
+ - MPEG-2
+ - VC-1
+ - VP8
+ - VP9 4:2:0 8 Bit
+ - VP9 4:2:0 10 Bit
+ - VP9 4:2:0 12 Bit
+ - H.264 (AVCHD) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 8 Bit
+ - H.265 (HEVC) 4:2:0 10 Bit
+ - H.265 (HEVC) 4:2:0 12 Bit
+ - H.265 (HEVC) 4:4:4 8 Bit
+ - H.265 (HEVC) 4:4:4 10 Bit
+ - H.265 (HEVC) 4:4:4 12 Bit
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Turing/Tesla-T40-24-GB.yaml b/specs/GPUs-SERVER/Nvidia/Turing/Tesla-T40-24-GB.yaml
new file mode 100644
index 000000000..41b778889
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Turing/Tesla-T40-24-GB.yaml
@@ -0,0 +1,37 @@
+name: Tesla-T40-24-GB
+humanName: Tesla T40 24 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Turing/Tesla-T4G.yaml b/specs/GPUs-SERVER/Nvidia/Turing/Tesla-T4G.yaml
new file mode 100644
index 000000000..cc21cc3f6
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Turing/Tesla-T4G.yaml
@@ -0,0 +1,37 @@
+name: Tesla-T4G
+humanName: Tesla T4G
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Volta.yaml b/specs/GPUs-SERVER/Nvidia/Volta.yaml
new file mode 100644
index 000000000..543d5ed57
--- /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: 12 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-SERVER/Nvidia/Volta/Tesla-PG500-216.yaml b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-PG500-216.yaml
new file mode 100644
index 000000000..996c0db0b
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-PG500-216.yaml
@@ -0,0 +1,35 @@
+name: Tesla-PG500-216
+humanName: Tesla PG500-216
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Volta/Tesla-PG503-216.yaml b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-PG503-216.yaml
new file mode 100644
index 000000000..2b97a4ccf
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-PG503-216.yaml
@@ -0,0 +1,35 @@
+name: Tesla-PG503-216
+humanName: Tesla PG503-216
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Volta/Tesla-V100-DGXS-16-GB.yaml b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-DGXS-16-GB.yaml
new file mode 100644
index 000000000..1df104355
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-DGXS-16-GB.yaml
@@ -0,0 +1,35 @@
+name: Tesla-V100-DGXS-16-GB
+humanName: Tesla V100 DGXS 16 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Volta/Tesla-V100-DGXS-32-GB.yaml b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-DGXS-32-GB.yaml
new file mode 100644
index 000000000..cd933e0ee
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-DGXS-32-GB.yaml
@@ -0,0 +1,35 @@
+name: Tesla-V100-DGXS-32-GB
+humanName: Tesla V100 DGXS 32 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Volta/Tesla-V100-FHHL.yaml b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-FHHL.yaml
new file mode 100644
index 000000000..3e030fb5b
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-FHHL.yaml
@@ -0,0 +1,35 @@
+name: Tesla-V100-FHHL
+humanName: Tesla V100 FHHL
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Volta/Tesla-V100-PCIe-16-GB.yaml b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-PCIe-16-GB.yaml
new file mode 100644
index 000000000..37697aa0b
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-PCIe-16-GB.yaml
@@ -0,0 +1,35 @@
+name: Tesla-V100-PCIe-16-GB
+humanName: Tesla V100 PCIe 16 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Volta/Tesla-V100-PCIe-32-GB.yaml b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-PCIe-32-GB.yaml
new file mode 100644
index 000000000..58bca68cf
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-PCIe-32-GB.yaml
@@ -0,0 +1,35 @@
+name: Tesla-V100-PCIe-32-GB
+humanName: Tesla V100 PCIe 32 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Volta/Tesla-V100-SXM2-16-GB.yaml b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-SXM2-16-GB.yaml
new file mode 100644
index 000000000..2d6374f29
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-SXM2-16-GB.yaml
@@ -0,0 +1,35 @@
+name: Tesla-V100-SXM2-16-GB
+humanName: Tesla V100 SXM2 16 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Volta/Tesla-V100-SXM2-32-GB.yaml b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-SXM2-32-GB.yaml
new file mode 100644
index 000000000..ea007895a
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-SXM2-32-GB.yaml
@@ -0,0 +1,35 @@
+name: Tesla-V100-SXM2-32-GB
+humanName: Tesla V100 SXM2 32 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Volta/Tesla-V100-SXM3-32-GB.yaml b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-SXM3-32-GB.yaml
new file mode 100644
index 000000000..49f512a3f
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100-SXM3-32-GB.yaml
@@ -0,0 +1,35 @@
+name: Tesla-V100-SXM3-32-GB
+humanName: Tesla V100 SXM3 32 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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-SERVER/Nvidia/Volta/Tesla-V100S-PCIe-32-GB.yaml b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100S-PCIe-32-GB.yaml
new file mode 100644
index 000000000..409f978b5
--- /dev/null
+++ b/specs/GPUs-SERVER/Nvidia/Volta/Tesla-V100S-PCIe-32-GB.yaml
@@ -0,0 +1,35 @@
+name: Tesla-V100S-PCIe-32-GB
+humanName: Tesla V100S PCIe 32 GB
+isPart: true
+type: Graphics Card
+data:
+ Market: Data center
+ Manufacturer: Nvidia
+ Vendor: Nvidia
+ 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 GiB
+ 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/Intel/Core/k-unlocked.yaml b/specs/Intel/Core/k-unlocked.yaml
deleted file mode 100644
index af1d5d913..000000000
--- 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 100644
index f26399bb9..000000000
--- 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 100644
index 7ddb82694..000000000
--- 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 100644
index c60888aa6..000000000
--- 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/specs/Root.yaml b/specs/Root.yaml
index e748ece0f..9f928d161 100644
--- a/specs/Root.yaml
+++ b/specs/Root.yaml
@@ -6,14 +6,41 @@ topHeader: "SELECT CATEGORY:"
sections:
- header: AMD
members:
+ - MISSINGCPUS
- CPUs-DESKTOP
- CPUs-SERVER
- - GPUs-CONSUMER
+ - GPUs-CONSUMER-AMD
+ - GPUs-CONSOLE-AMD
+ - GPUs-SERVER-AMD
- APUs-DESKTOP
- APUs-MOBILE
- header: Intel
members:
+ - GPUs-CONSUMER-INTEL
+ - GPUs-SERVER-INTEL
- Desktop-CPUs-Intel
- Mobile-CPUs-Intel
- Embedded-CPUs-Intel
- Server-CPUs-Intel
+ - header: ATI
+ members:
+ - GPUs-CONSUMER-ATI
+ - GPUs-CONSOLE-ATI
+ - GPUs-SERVER-ATI
+ - header: Nvidia
+ members:
+ - GPUs-CONSUMER-NVIDIA
+ - GPUs-CONSOLE-Nvidia
+ - GPUs-SERVER-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/specs/intel/Desktop-CPUs-Intel.yaml b/specs/intel/Desktop-CPUs-Intel.yaml
new file mode 100644
index 000000000..4946e3731
--- /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 000000000..2e426fc44
--- /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 000000000..d3039a2b7
--- /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 000000000..5856d34b0
--- /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 000000000..c295d5fc0
--- /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 000000000..fe3f33db2
--- /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 000000000..97d720496
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Apollo-Lake/Pentium-J4205.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 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 000000000..2b4419979
--- /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 000000000..cbfa7d09e
--- /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 000000000..40b27e6bf
--- /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 000000000..f8a971002
--- /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 000000000..4134b89e4
--- /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 000000000..c49844e99
--- /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 000000000..0c6103ebc
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bay-Trail/Pentium-J2900.yaml
@@ -0,0 +1,25 @@
+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'
+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 000000000..9dbd58d1e
--- /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 000000000..70b62159c
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-920.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': '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'
+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 000000000..02b0bbfe7
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-930.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': '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'
+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 000000000..5431cbc47
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-940.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': '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'
+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 000000000..4e52765cd
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-950.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.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'
+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 000000000..bfe631aed
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-960.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': '2009-10-19'
+ Socket: FCLGA1366
+ AES: false
+ 'Other Extensions':
+ - x86-64
+ AVX/SSE/MMX: 'SSE 4.2'
+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 000000000..7d5151c8d
--- /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 000000000..9cd22699e
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Bloomfield/Core-i7-975.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.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'
+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 000000000..0b3e5390c
--- /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 000000000..7b98e68ff
--- /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 000000000..6b5339458
--- /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 000000000..d7308d107
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Braswell/Pentium-J3710.yaml
@@ -0,0 +1,27 @@
+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'
+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 000000000..7f2881159
--- /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 000000000..959b5c925
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6800K.yaml
@@ -0,0 +1,23 @@
+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
+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 000000000..266014c67
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6850K.yaml
@@ -0,0 +1,23 @@
+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
+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 000000000..6494881a6
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6900K.yaml
@@ -0,0 +1,23 @@
+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
+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 000000000..e600d1dbc
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell-E/Core-i7-6950X.yaml
@@ -0,0 +1,23 @@
+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
+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 000000000..af9410a4d
--- /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 000000000..9ca895c96
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5575R.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': '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'
+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 000000000..17c55e4f7
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i5-5675C.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': '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'
+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 000000000..ca9157078
--- /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 000000000..ab4d04f66
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775C.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..3c250c2c6
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Broadwell/Core-i7-5775R.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..15516f92d
--- /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 000000000..618d184f4
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10900X.yaml
@@ -0,0 +1,21 @@
+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
+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 000000000..763659409
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10920X.yaml
@@ -0,0 +1,21 @@
+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
+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 000000000..347e8a5d6
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10940X.yaml
@@ -0,0 +1,21 @@
+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
+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 000000000..c09bc5be8
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cascade-Lake/Core-i9-10980XE.yaml
@@ -0,0 +1,21 @@
+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
+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 000000000..eece24574
--- /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 000000000..a61368f93
--- /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 000000000..6b731f628
--- /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 000000000..c820fa399
--- /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 000000000..ae624b23c
--- /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 000000000..9c3a82ebb
--- /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 000000000..0dd39f598
--- /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 000000000..0cd2d622f
--- /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 000000000..7ffba3fe6
--- /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 000000000..090bdd517
--- /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 000000000..90c1d0d97
--- /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 000000000..c322d3f03
--- /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 000000000..f68ce8047
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Cedarview/Atom-D2700.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': '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'
+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 000000000..9c28dd3af
--- /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 000000000..c0cfa75f0
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-530.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': '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'
+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 000000000..69797f315
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-540.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.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'
+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 000000000..5e70ac6b8
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i3-550.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.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'
+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 000000000..5934af113
--- /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 000000000..2ca87d255
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-650.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-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-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 000000000..3c97e326d
--- /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 000000000..eac00ee83
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-660.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.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'
+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 000000000..d530f2e8a
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-661.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..b0f57297b
--- /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 000000000..d6a58eada
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Core-i5-680.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.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'
+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 000000000..85a6747fa
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Clarkdale/Pentium-G6950.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': '2010-01-07'
+ Socket: FCLGA1156
+ AES: false
+ 'Other Extensions':
+ - x86-64
+ 'GPU Base Frequency': '533 MHz'
+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 000000000..e5d7710af
--- /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 000000000..3f0641562
--- /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 000000000..9ff9544e6
--- /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 000000000..922bd461a
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..f42bd8348
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8100T.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.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'
+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 000000000..cb11a3149
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8300.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..b5222a3f0
--- /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 000000000..b85f262cf
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-8350K.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..3c74fe8d5
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..89e3e4ce0
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100F.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..4830a4f2d
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9100T.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.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'
+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 000000000..8c5e10f78
--- /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 000000000..e1e1619b9
--- /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 000000000..d7dca0900
--- /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 000000000..4037c949c
--- /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 000000000..594fb460a
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i3-9350KF.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..9bb6c060d
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400.yaml
@@ -0,0 +1,31 @@
+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'
+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 000000000..9d943673c
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8400T.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.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'
+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 000000000..bb06c528e
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500.yaml
@@ -0,0 +1,31 @@
+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'
+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 000000000..028fa4f0b
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8500T.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.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'
+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 000000000..47921cead
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..d7e961fd5
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600K.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..a85e0ef4f
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-8600T.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.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'
+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 000000000..c03fc9a3c
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..6e1f0022a
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9400F.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': '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
+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 000000000..1ef6013e7
--- /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 000000000..03593f5ae
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..684f3d29e
--- /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 000000000..2a81661ef
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9500T.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.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'
+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 000000000..14dc452a9
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..d2985a7b4
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600K.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..2d84ddb77
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i5-9600KF.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..c1d03b460
--- /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 000000000..afbc1a09f
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8086K.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..cdc58fd58
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700.yaml
@@ -0,0 +1,31 @@
+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'
+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 000000000..abf43c391
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700K.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..34fdf61ef
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-8700T.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..cb923a160
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..c35a5e2ef
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700F.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..8a3b9e4db
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700K.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..e9b3b7ee6
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700KF.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..381c8a5e1
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i7-9700T.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..74a531af7
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..0afd9a2d7
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900K.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..760cb9eb3
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KF.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..371300110
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Core-i9-9900KS.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..d89360f7e
--- /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 000000000..2c2dff887
--- /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 000000000..d90ed7e18
--- /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 000000000..468aa839e
--- /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 000000000..d06eb2cf4
--- /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 000000000..3794ecbfc
--- /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 000000000..a918dd9e8
--- /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 000000000..af7fccc45
--- /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 000000000..a3520a87d
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5400T.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..0daef73ba
--- /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 000000000..753f8b4be
--- /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 000000000..ae8945613
--- /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 000000000..8dacee571
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Coffee-Lake/Pentium-G5500T.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..493c80fc4
--- /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 000000000..b3e04d03a
--- /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 000000000..e23e4f8e5
--- /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 000000000..175fa208d
--- /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 000000000..67fedc2b9
--- /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 000000000..270ba9bb3
--- /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 000000000..475268cdd
--- /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 000000000..39de3bac8
--- /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 000000000..bfdeb6491
--- /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 000000000..60dbdb8e2
--- /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 000000000..f6e8488e7
--- /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 000000000..0c27e2ac3
--- /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 000000000..f3940b545
--- /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 000000000..179365a4b
--- /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 000000000..9da23f9f7
--- /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 000000000..a8850cbc6
--- /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 000000000..6c0c1fd6e
--- /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 000000000..6f29edfa4
--- /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 000000000..65b2ec22c
--- /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 000000000..f42cb13e1
--- /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 000000000..dea5e1389
--- /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 000000000..a96885b3f
--- /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 000000000..a818d7f0c
--- /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 000000000..879a3ff51
--- /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 000000000..cfbac77d0
--- /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 000000000..14e66ac07
--- /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 000000000..ca6d2555a
--- /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 000000000..f5d3b1f07
--- /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 000000000..ca0fa0674
--- /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 000000000..5dbcbf904
--- /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 000000000..7402a0451
--- /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 000000000..0d2c166a1
--- /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 000000000..258613dcb
--- /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 000000000..a998ee200
--- /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 000000000..eb3f5a758
--- /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 000000000..d8cf0d6f8
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Crystal-Well/Core-i5-4570R.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': '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'
+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 000000000..992e5ef52
--- /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 000000000..ec200f5f2
--- /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 000000000..4513744cf
--- /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 000000000..471e62acc
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i5-4690K.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..18c3756cc
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Devils-Canyon/Core-i7-4790K.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..e9dbcae44
--- /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 000000000..7fcb6bdfa
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-230.yaml
@@ -0,0 +1,20 @@
+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
+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 000000000..3c3b718a7
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Diamondville/Atom-330.yaml
@@ -0,0 +1,20 @@
+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
+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 000000000..70f99e97e
--- /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 000000000..4ec0ea05d
--- /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 000000000..4912f3855
--- /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 000000000..7e21d2ad4
--- /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 000000000..a3fa843cd
--- /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 000000000..006224d76
--- /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 000000000..46069af30
--- /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 000000000..bd1babe99
--- /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 000000000..eb09a508b
--- /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 000000000..5bbad2c07
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-970.yaml
@@ -0,0 +1,25 @@
+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'
+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 000000000..1e25add5c
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980.yaml
@@ -0,0 +1,25 @@
+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'
+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 000000000..85d9ca106
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-980X.yaml
@@ -0,0 +1,25 @@
+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'
+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 000000000..e3d6061da
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Gulftown/Core-i7-990X.yaml
@@ -0,0 +1,25 @@
+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'
+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 000000000..71d7e79bc
--- /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 000000000..f5aeb5405
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5820K.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..9cc0ddcee
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5930K.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..29e4582eb
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell-E/Core-i7-5960X.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..3a1422c76
--- /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 000000000..a620ad82f
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..0b4f4ac76
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4130T.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': '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'
+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 000000000..2a78664b5
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..dbd463349
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4150T.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)': '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'
+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 000000000..76c50aa8f
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..1474b43f6
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4160T.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)': '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'
+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 000000000..babf52cce
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..730066d00
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4170T.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)': '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'
+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 000000000..bdfb955d8
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4330.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..e358f0ac2
--- /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 000000000..8ecef592d
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4340.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..604391658
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4350.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..3a9d6d777
--- /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 000000000..06ac798e8
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4360.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..da5d03c7f
--- /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 000000000..e9e0091f8
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i3-4370.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..3a29b78f7
--- /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 000000000..4719951ba
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..883f0a9d2
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4430S.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.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'
+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 000000000..4e1593dff
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4440.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..b5ced3a35
--- /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 000000000..350b954b9
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..c7f48ed4b
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460S.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.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'
+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 000000000..b25288e2c
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4460T.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..aab756324
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..f277d744d
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570S.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.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'
+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 000000000..488d37faf
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4570T.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..6d397e856
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..e479c79f5
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590S.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': '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'
+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 000000000..12382bd00
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4590T.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..1031a53a7
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..88d496a68
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670K.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..7e2704b78
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670S.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': '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'
+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 000000000..454c6ce7d
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4670T.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.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'
+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 000000000..52fd44b95
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..c8529dd94
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i5-4690S.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': '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'
+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 000000000..0c094da3e
--- /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 000000000..a7e1ec541
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4765T.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..f113030bf
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..407438116
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770K.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..64e341693
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770S.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..07cbeb819
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4770T.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..0f4e55731
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4771.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..1111f1b5b
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4785T.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..dc129a868
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..36ef69909
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790S.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..43de522b0
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Core-i7-4790T.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..dd75f023b
--- /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 000000000..8a8513cf3
--- /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 000000000..f15c2ebaa
--- /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 000000000..adff50950
--- /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 000000000..82fbd243d
--- /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 000000000..943217801
--- /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 000000000..f426758f6
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220.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': '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'
+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 000000000..40806b6fb
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3220T.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.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'
+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 000000000..18d36fa37
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3240.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': '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'
+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 000000000..4a9c6d960
--- /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 000000000..b0dbf793c
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250.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': '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'
+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 000000000..5cd262860
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3250T.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.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'
+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 000000000..478abf8d3
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3258.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': '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'
+ 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 000000000..3a03a7953
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3260.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': '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'
+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 000000000..1a0ae1c52
--- /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 000000000..b2d3e813c
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3420.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': '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'
+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 000000000..83dcc898f
--- /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 000000000..fee791a3f
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3430.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': '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'
+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 000000000..ac0cc492e
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3440.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': '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'
+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 000000000..211ec663d
--- /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 000000000..1c8adc262
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3450.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': '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'
+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 000000000..a466dad6e
--- /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 000000000..ab7c6001f
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3460.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': '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'
+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 000000000..8581cdb74
--- /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 000000000..0a1b68b81
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Haswell/Pentium-G3470.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': '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'
+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 000000000..60d218d2d
--- /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 000000000..50b36102a
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4820K.yaml
@@ -0,0 +1,24 @@
+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'
+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 000000000..36e980f6c
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4930K.yaml
@@ -0,0 +1,24 @@
+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'
+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 000000000..3ebba80d0
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge-E/Core-i7-4960X.yaml
@@ -0,0 +1,24 @@
+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'
+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 000000000..681b916d5
--- /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 000000000..bf2796fd1
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3210.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.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'
+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 000000000..20de8fc62
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220.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.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'
+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 000000000..1fd2f07c9
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3220T.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.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'
+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 000000000..0f5c974a4
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3225.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.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'
+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 000000000..d86614013
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3240.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': '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-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 000000000..8d11df330
--- /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 000000000..1507dfbdb
--- /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 000000000..adb6000f9
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i3-3250.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.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'
+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 000000000..2c371f2f9
--- /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 000000000..0c6bcd250
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..48f830f8b
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3330S.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': '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'
+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 000000000..1cd5e1d8c
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..29282f1de
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3340S.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': '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'
+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 000000000..eeaee6566
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3350P.yaml
@@ -0,0 +1,24 @@
+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'
+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 000000000..6cd3a413e
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..841164177
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3450S.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': '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'
+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 000000000..342933e7c
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..15912c3ff
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470S.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': '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'
+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 000000000..7e07467f3
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3470T.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..5761f7d45
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3475S.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': '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'
+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 000000000..e87b3183a
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3550.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..87d9284f3
--- /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 000000000..2e3b66f4d
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..1be3b1f6a
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570K.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..f0580e92a
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i5-3570S.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.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'
+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 000000000..a900ba3ab
--- /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 000000000..631d81e6f
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..ed18cfc7e
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770K.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..498739de1
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Core-i7-3770S.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..0b9051961
--- /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 000000000..de9fddab5
--- /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 000000000..07c80db67
--- /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 000000000..7c90544ff
--- /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 000000000..24f1c9fc0
--- /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 000000000..5443e7c9d
--- /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 000000000..28581000b
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2010.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)': '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 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 000000000..d06109e4b
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2020.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.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'
+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 000000000..86b17a2f0
--- /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 000000000..089395415
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2030.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 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 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 000000000..e15df4224
--- /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 000000000..127233457
--- /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 000000000..7ea9e4124
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2120.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.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'
+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 000000000..2c55a8703
--- /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 000000000..30ca045ea
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Ivy-Bridge/Pentium-G2130.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.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'
+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 000000000..0714df7af
--- /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 000000000..5126514e7
--- /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 000000000..cf1b1416c
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..def3302c8
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7100T.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.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'
+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 000000000..4ceb9abd5
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7101E.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..773fa8c98
--- /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 000000000..a9cdda33f
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..645099d79
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7300T.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.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'
+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 000000000..ce91162e9
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7320.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..84998ff55
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i3-7350K.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..187ba5bc5
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..6573d05ae
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7400T.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..d58904ae2
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..0bd27b47e
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7500T.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..0f89cf0ff
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..47ae18159
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600K.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..bfc594dce
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7600T.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..c73b69424
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i5-7640X.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..a680cf63d
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..1cdbba373
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700K.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..1810c260b
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7700T.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..397dca62b
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Core-i7-7740X.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..098747271
--- /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 000000000..8b46bfb5f
--- /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 000000000..c037d53b4
--- /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 000000000..e31c1cba3
--- /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 000000000..7cfae2a97
--- /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 000000000..ed8a1a71e
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..bc1ad568e
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4560T.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': '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'
+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 000000000..de85e74ed
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4600.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..e1ea7b172
--- /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 000000000..49dafee82
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Kaby-Lake/Pentium-G4620.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..0a8dc4b76
--- /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 000000000..c300ba3c2
--- /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 000000000..01c5f3c9b
--- /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 000000000..a34c90705
--- /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 000000000..ac099572a
--- /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 000000000..7727e2914
--- /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 000000000..cf509d843
--- /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 000000000..d6f6b9592
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-750.yaml
@@ -0,0 +1,25 @@
+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'
+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 000000000..521d55fdf
--- /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 000000000..920110dda
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i5-760.yaml
@@ -0,0 +1,25 @@
+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'
+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 000000000..83368a0ba
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-860.yaml
@@ -0,0 +1,25 @@
+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'
+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 000000000..c2c1c7ad8
--- /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 000000000..51493080c
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-870.yaml
@@ -0,0 +1,25 @@
+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'
+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 000000000..e7171aaed
--- /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 000000000..0e5007d13
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-875K.yaml
@@ -0,0 +1,25 @@
+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'
+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 000000000..22cd30b03
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Lynnfield/Core-i7-880.yaml
@@ -0,0 +1,25 @@
+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'
+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 000000000..47b5a10af
--- /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 000000000..4697d1f5b
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D410.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': 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
+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 000000000..b662045cc
--- /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 000000000..f32f86a3e
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D510.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..06ff0ac23
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Pineview/Atom-D525.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..3c43b7232
--- /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 000000000..d6ee37c67
--- /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 000000000..8f102b7bd
--- /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 000000000..d2ba380fd
--- /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 000000000..4e94d936f
--- /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 000000000..ed658c88a
--- /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 000000000..3f1a45828
--- /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 000000000..99912ed75
--- /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 000000000..8aca037ab
--- /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 000000000..5f33edd88
--- /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 000000000..1389200a9
--- /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 000000000..9dc0646b2
--- /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 000000000..75e5739ce
--- /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 000000000..ce8eb37cb
--- /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 000000000..a9c6d5467
--- /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 000000000..f594e99ca
--- /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 000000000..b61f61207
--- /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 000000000..9f75b5e1f
--- /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 000000000..582874e42
--- /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 000000000..1ed112e1b
--- /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 000000000..48c842d16
--- /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 000000000..3fb886a0d
--- /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 000000000..59d1f789b
--- /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 000000000..72c37d77b
--- /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 000000000..d059e9327
--- /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 000000000..be4489f9c
--- /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 000000000..8cc3e06c1
--- /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 000000000..2c70270f7
--- /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 000000000..ffe3c0d3d
--- /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 000000000..336b3f14f
--- /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 000000000..daeaa3c34
--- /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 000000000..8693730a9
--- /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 000000000..56969b25a
--- /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 000000000..7d7af853c
--- /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 000000000..d9939b5e2
--- /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 000000000..b2dc83497
--- /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 000000000..7026cacd0
--- /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 000000000..bcd235e30
--- /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 000000000..dc2b55740
--- /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 000000000..6dec9710c
--- /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 000000000..9d9380159
--- /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 000000000..92537582d
--- /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 000000000..c0d265d00
--- /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 000000000..22b9be05c
--- /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 000000000..995e00f7f
--- /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 000000000..85fc0c534
--- /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 000000000..77377cecb
--- /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 000000000..fe4cc3664
--- /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 000000000..3531161b6
--- /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 000000000..d9005b1dd
--- /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 000000000..ed779dbb3
--- /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 000000000..b08e2c810
--- /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 000000000..05b2121c3
--- /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 000000000..16e8a05ab
--- /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 000000000..f4a5c4347
--- /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 000000000..37ee9d43a
--- /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 000000000..4d0d3ded2
--- /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 000000000..a22203331
--- /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 000000000..17476dcd5
--- /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 000000000..44a645e9e
--- /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 000000000..f417a4702
--- /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 000000000..4bb9dca7b
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3820.yaml
@@ -0,0 +1,24 @@
+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'
+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 000000000..10dc7ecbd
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3930K.yaml
@@ -0,0 +1,24 @@
+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'
+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 000000000..2e9c66f99
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3960X.yaml
@@ -0,0 +1,24 @@
+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'
+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 000000000..7e5627742
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge-E/Core-i7-3970X.yaml
@@ -0,0 +1,24 @@
+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'
+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 000000000..0be92c44e
--- /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 000000000..b0498a80d
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2100.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': '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'
+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 000000000..80cf755c5
--- /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 000000000..d23830313
--- /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 000000000..eb636be3f
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2105.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-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 000000000..210b61e3c
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120.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.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'
+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 000000000..63aa71c16
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2120T.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.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'
+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 000000000..b73893d40
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2125.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.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'
+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 000000000..727acef54
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i3-2130.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.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'
+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 000000000..29bb3a489
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2300.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..1a709779a
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2310.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..3bad457a1
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2320.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..67d2a63c7
--- /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 000000000..481bd7125
--- /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 000000000..357ab7d8e
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..9dbd8b976
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2400S.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..f61736aa7
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2405S.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..9ee2532d6
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2450P.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.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'
+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 000000000..52db96793
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..a44cee464
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500K.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..628546e85
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2500S.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..c6db33bb6
--- /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 000000000..86ab353f7
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i5-2550K.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.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'
+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 000000000..7f8d4e4ad
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..3b55401ff
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600K.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..95d8dea3a
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2600S.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..310dc2d67
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Core-i7-2700K.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..108fec9c5
--- /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 000000000..e95b20c4c
--- /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 000000000..f23142f9e
--- /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 000000000..aaf3738dd
--- /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 000000000..a62cebc81
--- /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 000000000..1ec2bd49f
--- /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 000000000..cb9ec4f38
--- /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 000000000..858acfec1
--- /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 000000000..13f7bff81
--- /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 000000000..87ee3d5bd
--- /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 000000000..6e16018bb
--- /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 000000000..f99f7024c
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G620.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)': '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: '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 000000000..24c0d4802
--- /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 000000000..a98ae74ed
--- /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 000000000..f374e406b
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G630.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 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 000000000..c63db9f00
--- /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 000000000..b33253e12
--- /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 000000000..acf33a865
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G640.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.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'
+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 000000000..c36bf2545
--- /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 000000000..a6c48d2df
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G645.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.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'
+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 000000000..e60d4e4d0
--- /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 000000000..9dac18956
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G840.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': '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'
+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 000000000..45f84f9ec
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G850.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': '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'
+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 000000000..9b165df16
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G860.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': '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'
+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 000000000..41d8c7b4a
--- /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 000000000..d373c1fb3
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Sandy-Bridge/Pentium-G870.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': '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'
+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 000000000..5f0c8b7fe
--- /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 000000000..517d5aa42
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6098P.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..f2cdeaf85
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..a269352c7
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6100T.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..5192d5fe7
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..0e7da5753
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6300T.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..e55cd4a71
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i3-6320.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..208a05153
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..ed656dc07
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6400T.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..b80e81971
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6402P.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..3064b5584
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..1a473359e
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6500T.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..c081ca1a7
--- /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 000000000..066c04b83
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..203fe09a6
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600K.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..014e80b09
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i5-6600T.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..e727a9e74
--- /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 000000000..8621f192b
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..f2ea2d876
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700K.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..79abef845
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-6700T.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..9a558e6b9
--- /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 000000000..ea1726b54
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7800X.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..5e63bcd1b
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-7820X.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..c4c45dc44
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i7-9800X.yaml
@@ -0,0 +1,22 @@
+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
+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 000000000..29cc68645
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7900X.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..50611cf13
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7920X.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..42290c114
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7940X.yaml
@@ -0,0 +1,21 @@
+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
+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 000000000..1ce9ec769
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7960X.yaml
@@ -0,0 +1,21 @@
+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
+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 000000000..72d105211
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-7980XE.yaml
@@ -0,0 +1,21 @@
+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
+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 000000000..13bf7e8ad
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9820X.yaml
@@ -0,0 +1,22 @@
+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
+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 000000000..791a6cb6a
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9900X.yaml
@@ -0,0 +1,22 @@
+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
+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 000000000..964e2d9ca
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9920X.yaml
@@ -0,0 +1,22 @@
+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
+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 000000000..5f46f23e1
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9940X.yaml
@@ -0,0 +1,22 @@
+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
+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 000000000..fa58144bd
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9960X.yaml
@@ -0,0 +1,22 @@
+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
+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 000000000..74fbd729e
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Core-i9-9980XE.yaml
@@ -0,0 +1,22 @@
+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
+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 000000000..5c0cb69f3
--- /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 000000000..32e478949
--- /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 000000000..e0b5519e1
--- /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 000000000..5e0e57fb6
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..c6b54674d
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4400T.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': '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'
+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 000000000..90671db4c
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4500.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': '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'
+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 000000000..111f31d2e
--- /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 000000000..d10a80e13
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Pentium-G4520.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': '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'
+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 000000000..78126bcda
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Skylake/Xeon-W-3175X.yaml
@@ -0,0 +1,22 @@
+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
+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 000000000..659482a7e
--- /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 000000000..3faab41a8
--- /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 000000000..3b1170c51
--- /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 000000000..f62b3d8fb
--- /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 000000000..8d3b049e2
--- /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 000000000..c5ed268aa
--- /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 000000000..479c4c1ec
--- /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 000000000..4b7138ba2
--- /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 000000000..124aa1f21
--- /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 000000000..fca0d1d0d
--- /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 000000000..4fca4aa40
--- /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 000000000..48ccca13c
--- /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 000000000..aea80b03a
--- /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 000000000..5b5c11c3a
--- /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 000000000..195e0975e
--- /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 000000000..ddf10ee27
--- /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 000000000..2c38aa3cd
--- /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 000000000..0e6141c7a
--- /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 000000000..9012e96ff
--- /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 000000000..0b9d42f7c
--- /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 000000000..f0918c4b4
--- /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 000000000..c6c5fcff4
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5200.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.5 GHz'
+ 'L2 Cache (Total)': '2 MiB'
+ 'Die Size': '82 mm'
+ 'Release Date': '2008-08-31'
+ Socket: LGA775
+ AES: false
+ 'Other Extensions':
+ - x86-64
+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 000000000..0517f1bf5
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5300.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.6 GHz'
+ 'L2 Cache (Total)': '2 MiB'
+ 'Die Size': '82 mm'
+ 'Release Date': '2008-12-01'
+ Socket: LGA775
+ AES: false
+ 'Other Extensions':
+ - x86-64
+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 000000000..d98dea900
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5400.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)': '2 MiB'
+ 'Die Size': '82 mm'
+ 'Release Date': '2009-01-18'
+ Socket: LGA775
+ AES: false
+ 'Other Extensions':
+ - x86-64
+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 000000000..ff2adb2ca
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5500.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)': '2 MiB'
+ 'Die Size': '82 mm'
+ 'Release Date': 'Q2 2010'
+ Socket: LGA775
+ AES: false
+ 'Other Extensions':
+ - x86-64
+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 000000000..73b363682
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5700.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)': '2 MiB'
+ 'Die Size': '82 mm'
+ 'Release Date': 'Q3 2010'
+ Socket: LGA775
+ AES: false
+ 'Other Extensions':
+ - x86-64
+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 000000000..a97cd2e49
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E5800.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.2 GHz'
+ 'L2 Cache (Total)': '2 MiB'
+ 'Die Size': '82 mm'
+ 'Release Date': 'Q4 2010'
+ Socket: LGA775
+ AES: false
+ 'Other Extensions':
+ - x86-64
+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 000000000..24f835f4a
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6300.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)': '2 MiB'
+ 'Die Size': '82 mm'
+ 'Release Date': '2009-05-10'
+ Socket: LGA775
+ AES: false
+ 'Other Extensions':
+ - x86-64
+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 000000000..acb2b74cf
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6500.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 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 000000000..49324c2c7
--- /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 000000000..c9e54468e
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6600.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)': '2 MiB'
+ 'Die Size': '82 mm'
+ 'Release Date': 'Q1 2010'
+ Socket: LGA775
+ AES: false
+ 'Other Extensions':
+ - x86-64
+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 000000000..702d5b1ff
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6700.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.2 GHz'
+ 'L2 Cache (Total)': '2 MiB'
+ 'Die Size': '82 mm'
+ 'Release Date': '2010-06-01'
+ Socket: LGA775
+ AES: false
+ 'Other Extensions':
+ - x86-64
+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 000000000..32e103aab
--- /dev/null
+++ b/specs/intel/Desktop-CPUs-Intel/Desktop-Wolfdale/Pentium-E6800.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.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
+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 000000000..29684110a
--- /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 000000000..8889de845
--- /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 000000000..38fca4ce1
--- /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 000000000..6fbdc004e
--- /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 000000000..5d9050a2e
--- /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 000000000..01db63904
--- /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 000000000..c8cf6b943
--- /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 000000000..516e1a515
--- /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 000000000..6d2c8c2c1
--- /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 000000000..444d4d2ca
--- /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 000000000..e9c5a1398
--- /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 000000000..40e3c6b32
--- /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 000000000..90d779ac8
--- /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 000000000..5eb4aca97
--- /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 000000000..d0d274f21
--- /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 000000000..6cbe43fe0
--- /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 000000000..397dbc035
--- /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 000000000..231d7ebab
--- /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 000000000..3c859e169
--- /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 000000000..dc1158d27
--- /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 000000000..904326e43
--- /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 000000000..e29d12c77
--- /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 000000000..97291eee5
--- /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 000000000..3782d0a10
--- /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 000000000..a9a460c9f
--- /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 000000000..357eb1ad2
--- /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 000000000..60fdbb8f6
--- /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 000000000..22d7148bb
--- /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 000000000..12cf261a8
--- /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 000000000..993136d61
--- /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 000000000..7c30cb2ff
--- /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 000000000..162f7fd42
--- /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 000000000..7d30fa1c0
--- /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 000000000..6be642348
--- /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 000000000..7ad6c8ef1
--- /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 000000000..09c333274
--- /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 000000000..2a3b19e64
--- /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 000000000..5fb6af265
--- /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 000000000..23c13f2b5
--- /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 000000000..5a41ad649
--- /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 000000000..511be5c68
--- /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 000000000..15c536c4e
--- /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 000000000..b0ebf90b0
--- /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 000000000..b6c9b1e96
--- /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 000000000..a23ce8530
--- /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 000000000..663de45df
--- /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 000000000..14b1e6a6b
--- /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 000000000..1833c1b74
--- /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 000000000..9d1ebc428
--- /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 000000000..57948a0f2
--- /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 000000000..b7a40eaa6
--- /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 000000000..e4b8bdec0
--- /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 000000000..7383a60bb
--- /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 000000000..f0546dc92
--- /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 000000000..cf02c5c44
--- /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 000000000..edaae7785
--- /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 000000000..f180abee5
--- /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 000000000..f3ede7787
--- /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 000000000..30fbcf54a
--- /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 000000000..062db4513
--- /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 000000000..b8f159ea2
--- /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 000000000..7e812d24c
--- /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 000000000..face86ee9
--- /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 000000000..bc87fc3ff
--- /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 000000000..7452a250e
--- /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 000000000..8aa26248f
--- /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 000000000..e27765258
--- /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 000000000..85945076f
--- /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 000000000..ad4e9ceaf
--- /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 000000000..1cfadf6af
--- /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 000000000..314e8f39c
--- /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 000000000..b3d0b7a30
--- /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 000000000..8c1803a63
--- /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 000000000..e596b68f5
--- /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 000000000..25bb3325c
--- /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 000000000..ef92c1f01
--- /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 000000000..666b3b3b1
--- /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 000000000..99f8fb523
--- /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 000000000..f53a1d61d
--- /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 000000000..0db2b5fc7
--- /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 000000000..70f1e44e2
--- /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 000000000..5ff1f2f6c
--- /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 000000000..e9e107008
--- /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 000000000..28803ae7c
--- /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 000000000..81f931619
--- /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 000000000..1a2f52fa4
--- /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 000000000..d67e72584
--- /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 000000000..80889f0b5
--- /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 000000000..454e8019e
--- /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 000000000..64befc5b9
--- /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 000000000..42571ac0c
--- /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 000000000..f489bf744
--- /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 000000000..343f67c6b
--- /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 000000000..e01059239
--- /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 000000000..2390db52e
--- /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 000000000..957f4e628
--- /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 000000000..c17fd3625
--- /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 000000000..661eae422
--- /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 000000000..d562a3e11
--- /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 000000000..a3545eccf
--- /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 000000000..8a0b68958
--- /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 000000000..c8e226fa8
--- /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 000000000..3d900465e
--- /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 000000000..e3bfda3ad
--- /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 000000000..6936af31e
--- /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 000000000..fce31b7f9
--- /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 000000000..b62d8c4d6
--- /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 000000000..57e40b0ee
--- /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 000000000..18252b575
--- /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 000000000..f7c462504
--- /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 000000000..ed396c688
--- /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 000000000..4374dab7b
--- /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 000000000..ed90b32c3
--- /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 000000000..0279a4969
--- /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 000000000..72b4e3ac4
--- /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 000000000..b2a9aef51
--- /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 000000000..22604ba8e
--- /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 000000000..1dc30193c
--- /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 000000000..6e7024f4c
--- /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 000000000..496dc9a6d
--- /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 000000000..7d5074a7a
--- /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 000000000..56e077eb5
--- /dev/null
+++ b/specs/intel/Embedded-CPUs-Intel/Embedded-Ivy-Bridge/Core-i7-3610QE.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: FCPGA988
+ 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-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 000000000..0a1102367
--- /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 000000000..93ee9db52
--- /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 000000000..1100d5e49
--- /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 000000000..e1e6da7dc
--- /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 000000000..833ce537c
--- /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 000000000..98d619683
--- /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 000000000..8831dd1e9
--- /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 000000000..3985f394e
--- /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 000000000..28880a16c
--- /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 000000000..b17619608
--- /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 000000000..8006f4de8
--- /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 000000000..f79bcc15c
--- /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 000000000..e7b660b66
--- /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 000000000..0698a1bbf
--- /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 000000000..1ebce802f
--- /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 000000000..01c60d6e4
--- /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 000000000..a957cdd2b
--- /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 000000000..06e1c9da6
--- /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 000000000..2f4269cbb
--- /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 000000000..faa4efc27
--- /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 000000000..d057c7af8
--- /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 000000000..d81b65811
--- /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 000000000..c3fada310
--- /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 000000000..537e4f0c3
--- /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 000000000..eb8db4a99
--- /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 000000000..33ddf4b85
--- /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 000000000..8581ff800
--- /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 000000000..d59b4fce0
--- /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 000000000..f70da62fe
--- /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 000000000..a4e50c42d
--- /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 000000000..b31be5a5b
--- /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 000000000..eabad6dea
--- /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 000000000..1621b655a
--- /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 000000000..d82370f9d
--- /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 000000000..72fc4672c
--- /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 000000000..40bb99ee9
--- /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 000000000..b922dd541
--- /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 000000000..adac77070
--- /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 000000000..50f421f04
--- /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 000000000..ac7e3ac42
--- /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 000000000..7c364e50e
--- /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 000000000..8ea7de80f
--- /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 000000000..2d8972ccf
--- /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 000000000..a754a6800
--- /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 000000000..6b3836f88
--- /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 000000000..95d2ecc02
--- /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 000000000..f399fc850
--- /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 000000000..122bb698f
--- /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 000000000..0a17c3bf1
--- /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 000000000..26a67de9c
--- /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 000000000..32801bdf5
--- /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 000000000..8898d1a4b
--- /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 000000000..b04e23320
--- /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 000000000..0c4939598
--- /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 000000000..41c655dcc
--- /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 000000000..7fe13220f
--- /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 000000000..e7a12fb5e
--- /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 000000000..01ab433e1
--- /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 000000000..1dcb122d3
--- /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 000000000..a746628b2
--- /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 000000000..733acacb2
--- /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 000000000..e50e3d60c
--- /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 000000000..df5ccaed8
--- /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 000000000..174791ab6
--- /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 000000000..971f3d77d
--- /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 000000000..0f7c9e92f
--- /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 000000000..384dad62b
--- /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 000000000..04f34cb19
--- /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 000000000..6c28fcad3
--- /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 000000000..2852620bc
--- /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 000000000..56f6f4278
--- /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 000000000..cf04fe5a3
--- /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 000000000..f41e62622
--- /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 000000000..b3f6d3ffb
--- /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 000000000..550c86219
--- /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 000000000..40c693081
--- /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 000000000..fb05c5fa2
--- /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 000000000..8fd08b0fc
--- /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 000000000..00c5349e3
--- /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 000000000..e5f8d2c77
--- /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 000000000..60ed5d46b
--- /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 000000000..340df84bf
--- /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 000000000..88ea9a4cd
--- /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 000000000..c34119619
--- /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 000000000..e0eb5df27
--- /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 000000000..87116ff16
--- /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 000000000..3b348de07
--- /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 000000000..c25703328
--- /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 000000000..6ffcb9ab8
--- /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 000000000..4d59e37a0
--- /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 000000000..56df05170
--- /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 000000000..fb556454b
--- /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 000000000..297a5aae4
--- /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 000000000..584fe7fd0
--- /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 000000000..0307fbbd8
--- /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 000000000..013b23721
--- /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 000000000..2c56a91ac
--- /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 000000000..f2399c35e
--- /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 000000000..21fa003bd
--- /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 000000000..5518b1296
--- /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 000000000..a7755a819
--- /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 000000000..48752d5ca
--- /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 000000000..fe0315daf
--- /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 000000000..cb4b51225
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-10210Y.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': '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'
+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 000000000..4cb332990
--- /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 000000000..f5a56492d
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8200Y.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..35a28a012
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i5-8210Y.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.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'
+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 000000000..851954a83
--- /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 000000000..e5a81e41d
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-10510Y.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.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'
+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 000000000..6b6d17330
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-i7-8500Y.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..1f3ac581c
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Amber-Lake-Y/Core-m3-8100Y.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..d144dc89a
--- /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 000000000..9bcd0ba98
--- /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 000000000..cba6f747c
--- /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 000000000..3afbba1a9
--- /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 000000000..a3e3dc29d
--- /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 000000000..4322a6c3d
--- /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 000000000..9fe9c6f8a
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Apollo-Lake/Pentium-N4200.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..48f79c8d7
--- /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 000000000..613d9a45a
--- /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 000000000..c2b5a30a0
--- /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 000000000..1af7728b9
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-330M.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, 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-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 000000000..e3db69413
--- /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 000000000..3c02ba791
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-350M.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.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'
+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 000000000..c3bb9575c
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-370M.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.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'
+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 000000000..12fac545d
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i3-380M.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.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'
+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 000000000..bb8d192eb
--- /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 000000000..809e24738
--- /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 000000000..106994bf8
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-430M.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.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'
+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 000000000..5feb2dbb8
--- /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 000000000..7ecb4ae01
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-450M.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.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'
+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 000000000..677c86edb
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-460M.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': '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'
+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 000000000..3b8a8a7ec
--- /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 000000000..6885286f1
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-480M.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.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'
+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 000000000..654ea7bb6
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-520M.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.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'
+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 000000000..2595c1c4f
--- /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 000000000..bdefc0f94
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-540M.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.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'
+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 000000000..567586e20
--- /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 000000000..876fc4158
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-560M.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.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'
+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 000000000..20c32c1f0
--- /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 000000000..b01affc39
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i5-580M.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.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'
+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 000000000..495e40c33
--- /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 000000000..367e750d6
--- /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 000000000..f86d13991
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-620M.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.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'
+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 000000000..d9a69479b
--- /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 000000000..e5f20b63d
--- /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 000000000..adc352293
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Core-i7-640M.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.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'
+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 000000000..87cef887f
--- /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 000000000..64ae2657e
--- /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 000000000..c4486e303
--- /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 000000000..eb5307907
--- /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 000000000..b2c408a9d
--- /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 000000000..c80c48367
--- /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 000000000..ffcd2c9c7
--- /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 000000000..6dadf0f79
--- /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 000000000..84cd98936
--- /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 000000000..f2251adb3
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6100.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)': '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'
+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 000000000..1355271a1
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Arrandale/Pentium-P6200.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.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'
+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 000000000..f6b5b6782
--- /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 000000000..bf7eba7bc
--- /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 000000000..91e91a02f
--- /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 000000000..0ec52e78e
--- /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 000000000..6805a1bf7
--- /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 000000000..d12100bb6
--- /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 000000000..94d39f388
--- /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 000000000..51a4f507a
--- /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 000000000..50bc1507c
--- /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 000000000..b1588ff57
--- /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 000000000..c9d721fb6
--- /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 000000000..3573bca33
--- /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 000000000..f0d50c7ce
--- /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 000000000..262157075
--- /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 000000000..bc67d75a6
--- /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 000000000..67075edcb
--- /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 000000000..0bc8db564
--- /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 000000000..1254c473c
--- /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 000000000..0eca86481
--- /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 000000000..a724e2fb4
--- /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 000000000..3b83f7ddf
--- /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 000000000..8eda36bf9
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3510.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': '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'
+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 000000000..47a6c8fe7
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3520.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': '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'
+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 000000000..5f9d86bca
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3530.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': '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'
+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 000000000..ba6429857
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Bay-Trail/Pentium-N3540.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.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'
+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 000000000..724615828
--- /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 000000000..e3a670ba7
--- /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 000000000..1884aae76
--- /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 000000000..310a85223
--- /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 000000000..87e05c422
--- /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 000000000..4406e21ef
--- /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 000000000..0c7f75d91
--- /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 000000000..5f7687520
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3700.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': '400 MHz'
+ 'VRAM Type': DDR3L
+ 'Maximum VRAM Capacity': '8 GiB'
+ 'DirectX Support': '0'
+ 'OpenGL Support': 'Yes'
+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 000000000..4c1227525
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Braswell/Pentium-N3710.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': '400 MHz'
+ 'VRAM Type': DDR3L
+ 'Maximum VRAM Capacity': '8 GiB'
+ 'DirectX Support': '0'
+ 'OpenGL Support': 'Yes'
+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 000000000..edc980924
--- /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 000000000..668f3ac6a
--- /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 000000000..2d38764a1
--- /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 000000000..301531be5
--- /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 000000000..05c6820f3
--- /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 000000000..cf5a0a574
--- /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 000000000..3404b0c41
--- /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 000000000..6911dec79
--- /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 000000000..c3102e5db
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5005U.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..6f9c8b879
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5010U.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..3cb19299d
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5015U.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..726356990
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i3-5020U.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..c4e2be817
--- /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 000000000..5fde70dfe
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5200U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..c5cb6a688
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5250U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..6c0db5bf9
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5257U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..277bd2351
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5287U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..ac7d9e00c
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5300U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..873ff1126
--- /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 000000000..0e0f3462a
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i5-5350U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..cbc1be193
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5500U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..6d93fe959
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5550U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..c16a7b0e6
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5557U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..5913c61d9
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5600U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..3b2d54367
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5650U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..5c96d0a85
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5700HQ.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.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'
+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 000000000..9c4e57e76
--- /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 000000000..9b7e7242c
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5850HQ.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.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'
+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 000000000..f79c59081
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Core-i7-5950HQ.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.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'
+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 000000000..b55ba9c1b
--- /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 000000000..8accc0939
--- /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 000000000..664ceb091
--- /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 000000000..b5a878ec1
--- /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 000000000..a7e22a229
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3805U.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-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 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 000000000..440757b7b
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Broadwell/Pentium-3825U.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..c0bf485ef
--- /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 000000000..63c0b162d
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2600.yaml
@@ -0,0 +1,22 @@
+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'
+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 000000000..42c2bb595
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Cedarview/Atom-N2800.yaml
@@ -0,0 +1,22 @@
+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'
+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 000000000..92394ec08
--- /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 000000000..3dda5f7b1
--- /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 000000000..0b653c808
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-720QM.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.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'
+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 000000000..6e4d8d0c4
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-740QM.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': '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'
+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 000000000..dd222ce0c
--- /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 000000000..08fb8229b
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Clarksfield/Core-i7-840QM.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.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'
+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 000000000..fc18511e1
--- /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 000000000..588e79805
--- /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 000000000..a92a063f3
--- /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 000000000..99120064b
--- /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 000000000..48d65bae0
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8100B.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..7a3607892
--- /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 000000000..ff272c13d
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i3-8109U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..ced042213
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8257U.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.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'
+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 000000000..188092cfe
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8259U.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.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'
+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 000000000..caed31b9d
--- /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 000000000..a78f555f3
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8279U.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.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'
+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 000000000..136d48acf
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8300H.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..ff06298a3
--- /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 000000000..6fd38b8ef
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8400H.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..3c63221c0
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-8500B.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': '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'
+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 000000000..24a2d50cc
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300H.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..989e98d1b
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9300HF.yaml
@@ -0,0 +1,24 @@
+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'
+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 000000000..d08012d98
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i5-9400H.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..d9875005c
--- /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 000000000..6e4cab603
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8559U.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.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'
+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 000000000..f9073f081
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8569U.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.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'
+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 000000000..35d54afb6
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8700B.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..f0cb02f01
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8750H.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.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'
+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 000000000..b01fcdd7e
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-8850H.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..c5517d01c
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9750H.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.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'
+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 000000000..2eb63d6ea
--- /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 000000000..400349328
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i7-9850H.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.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'
+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 000000000..b7cec3951
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-8950HK.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: '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 000000000..37686a9b9
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9880H.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..c847bcbfa
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Core-i9-9980HK.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..aa53e434d
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2176M.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..1070bb18f
--- /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 000000000..dd2ea983b
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Coffee-Lake/Xeon-E-2276M.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.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'
+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 000000000..2600e5713
--- /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 000000000..644b3558e
--- /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 000000000..2c838b6a9
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i3-10110U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..46be95aa5
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i5-10210U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..342bbe23f
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10510U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..27665c67e
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Comet-Lake/Core-i7-10710U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..79723cbe7
--- /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 000000000..9c108ed61
--- /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 000000000..03c0499e1
--- /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 000000000..f02c98959
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4750HQ.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 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'
+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 000000000..89baa0562
--- /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 000000000..234d040d6
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4770HQ.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.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'
+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 000000000..31e3c51f9
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4850HQ.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.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'
+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 000000000..6ca41426c
--- /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 000000000..12e12b022
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4870HQ.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.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'
+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 000000000..b915c959b
--- /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 000000000..f855e4667
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4960HQ.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.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'
+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 000000000..43e206538
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Crystal-Well/Core-i7-4980HQ.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.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'
+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 000000000..86582d816
--- /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 000000000..a7eb332e8
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N270.yaml
@@ -0,0 +1,19 @@
+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
+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 000000000..5ad92dd20
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Diamondville/Atom-N280.yaml
@@ -0,0 +1,19 @@
+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
+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 000000000..35f0e0eaf
--- /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 000000000..3a84dda65
--- /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 000000000..e5866b4b5
--- /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 000000000..9ce58eb6c
--- /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 000000000..cc7bafe7e
--- /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 000000000..699931b2c
--- /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 000000000..2ce405372
--- /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 000000000..00e4c00a3
--- /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 000000000..1d08a8c4f
--- /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 000000000..bf315b992
--- /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 000000000..bbb4f6c21
--- /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 000000000..7d5fe91b7
--- /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 000000000..a5067193a
--- /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 000000000..fff2de1d0
--- /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 000000000..fae654572
--- /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 000000000..c6a8d2c97
--- /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 000000000..a621b2c3c
--- /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 000000000..9e59a1da8
--- /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 000000000..5b6a2a702
--- /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 000000000..d156d84c2
--- /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 000000000..d45c82f22
--- /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 000000000..789453888
--- /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 000000000..18b40bac2
--- /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 000000000..0466f1acd
--- /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 000000000..941471582
--- /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 000000000..234b27ba6
--- /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 000000000..e06c50c4b
--- /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 000000000..65270c774
--- /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 000000000..7d4e9e97f
--- /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 000000000..e7c5c2e02
--- /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 000000000..d8ac4f419
--- /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 000000000..cbd67bbbf
--- /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 000000000..f3294fed7
--- /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 000000000..e91f620e3
--- /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 000000000..77fd4862a
--- /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 000000000..8f72399a2
--- /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 000000000..69f283a5a
--- /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 000000000..8890e563d
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4000M.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.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'
+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 000000000..634e54854
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4005U.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.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'
+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 000000000..ee163f156
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4010U.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.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'
+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 000000000..d514fc3d1
--- /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 000000000..b15ce2bf7
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4012Y.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.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'
+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 000000000..b2b368a5d
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4020Y.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.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'
+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 000000000..23bbd05d9
--- /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 000000000..f66e9dcf8
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4030U.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': '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-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 000000000..18910f4aa
--- /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 000000000..4ec20d8cb
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i3-4100M.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.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'
+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 000000000..a93226aca
--- /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 000000000..9e69f2e10
--- /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 000000000..abe0475b1
--- /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 000000000..e92c8cb61
--- /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 000000000..e67e494e1
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200H.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..aa1afb2e8
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200M.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.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'
+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 000000000..ce7368aa1
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4200U.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.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'
+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 000000000..c9f0aa2fe
--- /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 000000000..e1137a52a
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4202Y.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': '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 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 000000000..cef2dc16d
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210H.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..241a2ce60
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210M.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.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'
+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 000000000..c23639749
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210U.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.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'
+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 000000000..31f46950b
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4210Y.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'
+ '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'
+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 000000000..0bf35c8c0
--- /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 000000000..841f2bbf6
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4250U.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.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'
+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 000000000..0cb7dc15d
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4258U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..5e15b1a20
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4260U.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.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'
+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 000000000..37dd31b0a
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4278U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..5a8f5a922
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4288U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..9ca409164
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300M.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.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'
+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 000000000..5d41f4eec
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300U.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.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'
+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 000000000..d19296ef3
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4300Y.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.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'
+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 000000000..df2d5e6e3
--- /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 000000000..22507a77a
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4308U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..a34b6afcb
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310M.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.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'
+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 000000000..4a8c5a638
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i5-4310U.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': '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'
+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 000000000..cfe2856cb
--- /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 000000000..e816ae1d4
--- /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 000000000..30fcecc33
--- /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 000000000..05bff87c7
--- /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 000000000..1eca9b900
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4500U.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.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'
+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 000000000..354b528f6
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4510U.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': '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'
+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 000000000..4910e85b4
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4550U.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.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'
+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 000000000..a3e91c9e9
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4558U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..b32c855d2
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4578U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..2a10a9c58
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600M.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)': '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'
+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 000000000..83fbb00a6
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4600U.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': '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'
+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 000000000..e4410499f
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4610M.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': '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'
+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 000000000..9378b85f9
--- /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 000000000..08f4b408a
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4650U.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.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'
+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 000000000..6ed7958ba
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700HQ.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..87170ded9
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4700MQ.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..7f2604cfe
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702HQ.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..44e266cb4
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4702MQ.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..d73d527c8
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710HQ.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..1e595e7e8
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4710MQ.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..bd74b8a7f
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712HQ.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..917fa1387
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4712MQ.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..3c25c8c88
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4720HQ.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..9797aff64
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4722HQ.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..02322c3ec
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4800MQ.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..534e8473a
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4810MQ.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..191c03b59
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4900MQ.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..5c399e66f
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4910MQ.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..04ed06da7
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4930MX.yaml
@@ -0,0 +1,28 @@
+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'
+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 000000000..8b3c2b37f
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Core-i7-4940MX.yaml
@@ -0,0 +1,27 @@
+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'
+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 000000000..175a72009
--- /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 000000000..18eeabe77
--- /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 000000000..89a0b7a2a
--- /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 000000000..77aca25b4
--- /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 000000000..28cd39aec
--- /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 000000000..484a1672b
--- /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 000000000..273fc1b67
--- /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 000000000..5349365c8
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Haswell/Pentium-3550M.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.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'
+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 000000000..61097e1dc
--- /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 000000000..2f7f1e5b9
--- /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 000000000..46efa5dfd
--- /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 000000000..1fe76eec0
--- /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 000000000..807b05408
--- /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 000000000..b7705a0e2
--- /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 000000000..7a5873239
--- /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 000000000..254a1bfaf
--- /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 000000000..62aed6b1a
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i3-1005G1.yaml
@@ -0,0 +1,28 @@
+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'
+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 000000000..828c67a6c
--- /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 000000000..f899aa666
--- /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 000000000..ecbdb6cbe
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G1.yaml
@@ -0,0 +1,28 @@
+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'
+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 000000000..2d8bc6ad2
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G4.yaml
@@ -0,0 +1,28 @@
+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'
+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 000000000..6148c8a79
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i5-1035G7.yaml
@@ -0,0 +1,28 @@
+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'
+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 000000000..276fee03c
--- /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 000000000..7fad9a75a
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ice-Lake/Core-i7-1065G7.yaml
@@ -0,0 +1,28 @@
+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'
+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 000000000..cb23509ae
--- /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 000000000..b4eb34574
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3110M.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.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'
+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 000000000..a0177a4c5
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3120M.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.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'
+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 000000000..1fcc012d8
--- /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 000000000..31235ace9
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3217U.yaml
@@ -0,0 +1,25 @@
+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'
+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 000000000..bbb8be246
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i3-3227U.yaml
@@ -0,0 +1,25 @@
+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'
+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 000000000..43eee9467
--- /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 000000000..a79ecc83e
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3210M.yaml
@@ -0,0 +1,27 @@
+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'
+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 000000000..b6230cf05
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3230M.yaml
@@ -0,0 +1,27 @@
+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'
+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 000000000..c2757ac8d
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3317U.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..0f5156b6e
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3320M.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..55a80466d
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3337U.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..7d43f58eb
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3339Y.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 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-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 000000000..4c0e93430
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3340M.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..39299a22f
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3360M.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..b2cbf2e0e
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3380M.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..36b5731d0
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3427U.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..d9fa9e295
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i5-3437U.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..0f7a7f103
--- /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 000000000..094b5c48c
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3517U.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..e66b7c0c6
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3520M.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..dd32013e7
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3537U.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..fda701d52
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3540M.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..c46f42b94
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3610QM.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..a7425b9a7
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3612QM.yaml
@@ -0,0 +1,27 @@
+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'
+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 000000000..44a734338
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3615QM.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..b3b0791ef
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3630QM.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..c33cd0417
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3632QM.yaml
@@ -0,0 +1,27 @@
+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'
+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 000000000..91885beec
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3635QM.yaml
@@ -0,0 +1,25 @@
+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'
+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 000000000..c5f75f53c
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3667U.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..e3c012894
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3687U.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..3a750770b
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3689Y.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.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'
+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 000000000..81cc68bfc
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3720QM.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..6ab43d9ea
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3740QM.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..343ab9b95
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3820QM.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..882f07c90
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3840QM.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..d61260f28
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3920XM.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..d326a7a18
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Core-i7-3940XM.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..4465bad7a
--- /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 000000000..ce796af99
--- /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 000000000..1e3dfc98b
--- /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 000000000..6c1043bf0
--- /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 000000000..c75e12c08
--- /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 000000000..b739cd8ac
--- /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 000000000..88f421aae
--- /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 000000000..300ab4747
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2020M.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.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'
+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 000000000..616d1b5ed
--- /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 000000000..a67dc0631
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2117U.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': '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 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 000000000..16599c845
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Ivy-Bridge/Pentium-2127U.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.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'
+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 000000000..c51f4cc6d
--- /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 000000000..34bfb4c11
--- /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 000000000..d4c17b402
--- /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 000000000..ad43d645a
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i5-8305G.yaml
@@ -0,0 +1,31 @@
+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'
+ 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 000000000..3a00f1de6
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8705G.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: '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 000000000..d4868d3ae
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8706G.yaml
@@ -0,0 +1,31 @@
+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'
+ 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 000000000..73989756d
--- /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 000000000..3dfec78ab
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-G/Core-i7-8809G.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.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'
+ 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 000000000..329007e0c
--- /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 000000000..171f22a84
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8250U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..76df15bb3
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i5-8350U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..19bdbfa21
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8550U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..343cd0737
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Core-i7-8650U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..706fb538c
--- /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 000000000..cf1eee412
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake-R/Pentium-4417U.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': 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'
+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 000000000..21f9d1c45
--- /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 000000000..2da0695cc
--- /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 000000000..f0fde2740
--- /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 000000000..75364a41d
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7020U.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..1d7cdf9c0
--- /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 000000000..0f186ed24
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7100U.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..6277db12f
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7130U.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..ff06f7ebe
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-7167U.yaml
@@ -0,0 +1,28 @@
+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'
+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 000000000..fddd3f9f3
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i3-8130U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..001b1dbb0
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7200U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..5389c0ae4
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7260U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..83df676b9
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7267U.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.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'
+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 000000000..5a63cd017
--- /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 000000000..9cd880444
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300HQ.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..550968c90
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7300U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..145cc93ee
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7360U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..b291a8477
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7440HQ.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..f1708a82e
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i5-7Y54.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.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'
+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 000000000..74f5cf960
--- /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 000000000..6e5b76541
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7500U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..3fdb7a92d
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7560U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..3b11b1bd5
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7567U.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.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'
+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 000000000..e5c09c8e4
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7600U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..3b3e9d17e
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7660U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..733ab0c9b
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7700HQ.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': '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'
+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 000000000..8486aefb7
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HK.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': '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'
+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 000000000..2ef84822f
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7820HQ.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': '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'
+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 000000000..ba5b708b1
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7920HQ.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.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'
+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 000000000..f4e4bdb4f
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Core-i7-7Y75.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.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'
+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 000000000..ca0f9a9fa
--- /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 000000000..6eb124cf5
--- /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 000000000..80878d856
--- /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 000000000..96f9c5630
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4410Y.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..fa9eb70da
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415U.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..dea26611a
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Kaby-Lake/Pentium-4415Y.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..2ddf6ddc9
--- /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 000000000..ca5160e7c
--- /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 000000000..9fe1da420
--- /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 000000000..6728aab60
--- /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 000000000..5b304f0c7
--- /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 000000000..07629758c
--- /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 000000000..e9660df75
--- /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 000000000..b4575fffe
--- /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 000000000..a63b0384b
--- /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 000000000..4db16dff9
--- /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 000000000..8cbacfb28
--- /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 000000000..04946fc0e
--- /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 000000000..a616544cd
--- /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 000000000..0f7de757b
--- /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 000000000..7fcbbb5ee
--- /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 000000000..ed22d8fbb
--- /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 000000000..1b190cac2
--- /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 000000000..b8a8fd3f6
--- /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 000000000..5f99517f2
--- /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 000000000..58b3fa1ab
--- /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 000000000..46887162e
--- /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 000000000..7e82a3845
--- /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 000000000..22dded348
--- /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 000000000..f14fccfcd
--- /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 000000000..f8c431345
--- /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 000000000..7f6675622
--- /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 000000000..1c3015bd0
--- /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 000000000..7c71a8d14
--- /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 000000000..6960e0f20
--- /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 000000000..8b53fa7e4
--- /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 000000000..de1e7e9de
--- /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 000000000..62818a02d
--- /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 000000000..a6f235046
--- /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 000000000..9d02f12fd
--- /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 000000000..502abbc1d
--- /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 000000000..4bdf57c67
--- /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 000000000..c2506824d
--- /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 000000000..58cb78df8
--- /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 000000000..07846a83e
--- /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 000000000..ad24fe256
--- /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 000000000..675226080
--- /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 000000000..26ff8a87c
--- /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 000000000..763983a9b
--- /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 000000000..f597f23fb
--- /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 000000000..112138f44
--- /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 000000000..ea792cd33
--- /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 000000000..39793fa1a
--- /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 000000000..9ff3203b9
--- /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 000000000..02095aee0
--- /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 000000000..a0cd763ef
--- /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 000000000..70d6715e9
--- /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 000000000..58433a3eb
--- /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 000000000..a111bfc5e
--- /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 000000000..f4cae18e9
--- /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 000000000..8732c61a7
--- /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 000000000..90a55aee5
--- /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 000000000..556b8bdda
--- /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 000000000..f5a1e7d14
--- /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 000000000..f2aaf0ec5
--- /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 000000000..00dfe03c1
--- /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 000000000..a7ee1701f
--- /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 000000000..819b83b59
--- /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 000000000..9b531bed6
--- /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 000000000..970114b1a
--- /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 000000000..d14b2ecc2
--- /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 000000000..eeed25c90
--- /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 000000000..dc50c98f2
--- /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 000000000..7e9827918
--- /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 000000000..4fc54bb51
--- /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 000000000..171e70080
--- /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 000000000..7d1efd4ce
--- /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 000000000..584f5bd1f
--- /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 000000000..8ad37c7bf
--- /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 000000000..cb509ed2f
--- /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 000000000..e3a5a6e88
--- /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 000000000..815334b3e
--- /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 000000000..75274c932
--- /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 000000000..6e5d9fccc
--- /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 000000000..d48d67e10
--- /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 000000000..e702c98c1
--- /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 000000000..8013e65f3
--- /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 000000000..d937aa13a
--- /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 000000000..7af699e04
--- /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 000000000..6fd50aef5
--- /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 000000000..e1faefcc5
--- /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 000000000..13475fe95
--- /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 000000000..e3424eb0b
--- /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 000000000..afc4dffb5
--- /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 000000000..8592e6401
--- /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 000000000..cfc6581fa
--- /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 000000000..0e165b0b9
--- /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 000000000..1ba31f6a8
--- /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 000000000..dd5fba59d
--- /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 000000000..0141cd362
--- /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 000000000..7740221cc
--- /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 000000000..182a304ee
--- /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 000000000..685e37a8a
--- /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 000000000..ddce0e5a6
--- /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 000000000..8b67a9008
--- /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 000000000..b638b541d
--- /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 000000000..28c16bee3
--- /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 000000000..5efa589ff
--- /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 000000000..51579aaef
--- /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 000000000..bb2325850
--- /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 000000000..78c18f812
--- /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 000000000..230e2cf6c
--- /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 000000000..c15441cd0
--- /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 000000000..6a8f0b698
--- /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 000000000..b62536927
--- /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 000000000..df791b17f
--- /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 000000000..46cac0754
--- /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 000000000..af13d7351
--- /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 000000000..6c6e91322
--- /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 000000000..ac0d7a02f
--- /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 000000000..04dec7a23
--- /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 000000000..a0b77c259
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4200.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)': '1024 KiB'
+ 'Die Size': '107 mm'
+ 'Release Date': 'Q1 2009'
+ Socket: PGA478
+ 'Other Extensions':
+ - x86-64
+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 000000000..5eff93bc9
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4300.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)': '1024 KiB'
+ 'Die Size': '107 mm'
+ Socket: PGA478
+ 'Other Extensions':
+ - x86-64
+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 000000000..b500022ad
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4400.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)': '1024 KiB'
+ 'Die Size': '107 mm'
+ 'Release Date': 'Q4 2009'
+ Socket: PGA478
+ 'Other Extensions':
+ - x86-64
+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 000000000..8bbaf9e98
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Penryn/Pentium-T4500.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.3 GHz'
+ 'L2 Cache (Total)': '1024 KiB'
+ 'Die Size': '107 mm'
+ 'Release Date': 'Q1 2010'
+ 'Other Extensions':
+ - x86-64
+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 000000000..f92dcad1a
--- /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 000000000..d9444de74
--- /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 000000000..d621dd4a2
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N450.yaml
@@ -0,0 +1,23 @@
+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
+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 000000000..9cef36dae
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N455.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.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'
+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 000000000..47b5f0da9
--- /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 000000000..7e3c5459a
--- /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 000000000..00bb1ef0b
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N550.yaml
@@ -0,0 +1,22 @@
+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'
+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 000000000..16dcb894f
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Pineview/Atom-N570.yaml
@@ -0,0 +1,22 @@
+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'
+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 000000000..3ddbee193
--- /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 000000000..29cce15ef
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2310M.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': '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'
+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 000000000..ed2b21737
--- /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 000000000..54bfc9984
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2328M.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': '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'
+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 000000000..f007f0720
--- /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 000000000..25d2166b5
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2330M.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: 'FCBGA1023, 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-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 000000000..b44ab7c79
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2348M.yaml
@@ -0,0 +1,24 @@
+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'
+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 000000000..238eb56a2
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2350M.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.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'
+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 000000000..774b500c1
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2357M.yaml
@@ -0,0 +1,24 @@
+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'
+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 000000000..ce8cd5ea4
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2365M.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.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'
+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 000000000..4670d0239
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2367M.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.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'
+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 000000000..537f51753
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2370M.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.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'
+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 000000000..c91b708c9
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i3-2375M.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': '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'
+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 000000000..f4a1cfcf6
--- /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 000000000..ba637159d
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2410M.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.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'
+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 000000000..9cae15a1d
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2430M.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.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'
+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 000000000..abb8541b9
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2435M.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.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'
+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 000000000..f34b0a261
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2450M.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': '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'
+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 000000000..2dc3f584c
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2467M.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.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'
+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 000000000..937f9ae51
--- /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 000000000..d27e18860
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2520M.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.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'
+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 000000000..8d8774d98
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2537M.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'
+ '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'
+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 000000000..597627fee
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2540M.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.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'
+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 000000000..d1dc3dcc3
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i5-2557M.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.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'
+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 000000000..045572d8a
--- /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 000000000..a5a3aa1b4
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2620M.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.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'
+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 000000000..36249c0d4
--- /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 000000000..88ad0f913
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2630QM.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': '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'
+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 000000000..36e8625b6
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2635QM.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': '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'
+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 000000000..6d62e495c
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2637M.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.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'
+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 000000000..4413ed26e
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2640M.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.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'
+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 000000000..15bc6fcef
--- /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 000000000..c02b6a329
--- /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 000000000..6d66d8410
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2670QM.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': '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'
+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 000000000..213740a96
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2675QM.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': '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'
+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 000000000..0118eece7
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2677M.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.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'
+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 000000000..02c55c1a8
--- /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 000000000..3c4d63173
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2720QM.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.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'
+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 000000000..6931d7e2f
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2760QM.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.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'
+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 000000000..a9cee090f
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2820QM.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.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'
+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 000000000..d0caad583
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2860QM.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.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'
+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 000000000..a2b60ddb0
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2920XM.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..f4d3ab5ff
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Core-i7-2960XM.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..6e4acd82c
--- /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 000000000..ce02f84e8
--- /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 000000000..3241265cd
--- /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 000000000..14a57994d
--- /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 000000000..6eca2df31
--- /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 000000000..5c915b00c
--- /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 000000000..03676bb4f
--- /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 000000000..53cf39598
--- /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 000000000..2e6b727a5
--- /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 000000000..ceeec0912
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-967.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': '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'
+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 000000000..f52d54664
--- /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 000000000..194c3026a
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-987.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 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 000000000..f374e58f5
--- /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 000000000..848eb5e4b
--- /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 000000000..c1202292d
--- /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 000000000..5ab53f4ee
--- /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 000000000..4596fbfad
--- /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 000000000..463b7c4b9
--- /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 000000000..0fad97b06
--- /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 000000000..6f3c7a468
--- /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 000000000..3afb19bdf
--- /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 000000000..1c79ee1b7
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B940.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': '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'
+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 000000000..af8a58e03
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B950.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': '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'
+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 000000000..05b898fae
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B960.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': '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'
+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 000000000..2d14450aa
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B970.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': '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'
+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 000000000..2d0d8980b
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Sandy-Bridge/Pentium-B980.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': '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'
+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 000000000..95cc17518
--- /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 000000000..253dd3bee
--- /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 000000000..d8cffba1f
--- /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 000000000..dc9f1df29
--- /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 000000000..132a90c2a
--- /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 000000000..70a3e8f62
--- /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 000000000..b5f8bf4f3
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Silverthorne/Atom-Z520.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.33 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 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 000000000..6ac219424
--- /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 000000000..771ccbed5
--- /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 000000000..9a81d4b42
--- /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 000000000..fc6b1c193
--- /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 000000000..dec6e26a5
--- /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 000000000..ddd0c213c
--- /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 000000000..78b10775b
--- /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 000000000..5acd3cba4
--- /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 000000000..0487a8f18
--- /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 000000000..3932a2a5a
--- /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 000000000..73444006c
--- /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 000000000..45fc54dc9
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6006U.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..64de33000
--- /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 000000000..6ee839a39
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6100U.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..b6d3055cc
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6157U.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..6274ecc40
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i3-6167U.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..2c602cab3
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6200U.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.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'
+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 000000000..4460e2a70
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6260U.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': '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'
+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 000000000..c8db1e85e
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6267U.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.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'
+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 000000000..6cd84bcfa
--- /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 000000000..72eaeb381
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300HQ.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': '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'
+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 000000000..9a7227c1e
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6300U.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 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'
+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 000000000..b42ce6193
--- /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 000000000..43b6d59d0
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6360U.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 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'
+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 000000000..d1bd74edb
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i5-6440HQ.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.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'
+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 000000000..512bc4423
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6500U.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.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'
+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 000000000..5ca347264
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6560U.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..4db13edd6
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6567U.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.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'
+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 000000000..1466fcf36
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6600U.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.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'
+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 000000000..c822c5667
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6650U.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.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'
+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 000000000..62dbb653b
--- /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 000000000..01e8bc4ed
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6700HQ.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.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'
+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 000000000..19e31ccb2
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6770HQ.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.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'
+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 000000000..45ba4bd35
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HK.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': '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'
+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 000000000..9937aac6d
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6820HQ.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': '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'
+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 000000000..15cc36b34
--- /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 000000000..c9f5444d3
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Core-i7-6920HQ.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': '64 GiB'
+ 'DirectX Support': '12'
+ 'OpenGL Support': '4.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 000000000..6cc81fdbf
--- /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 000000000..0a21b0783
--- /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 000000000..89fc03ccc
--- /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 000000000..decd49f0b
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405U.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..f337cb43c
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Skylake/Pentium-4405Y.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..fd8a3b54f
--- /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 000000000..b35710d2e
--- /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 000000000..a38cf0048
--- /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 000000000..8ccb1dd6f
--- /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 000000000..34eaa8f0b
--- /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 000000000..67516f918
--- /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 000000000..6588a5f06
--- /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 000000000..0d4a5513a
--- /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 000000000..7c5aa8ff9
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i3-8145U.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': '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'
+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 000000000..85f331eaf
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8265U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..b167b76bd
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i5-8365U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..daf40b3b2
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8565U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..2e0f54147
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Core-i7-8665U.yaml
@@ -0,0 +1,30 @@
+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'
+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 000000000..2581366aa
--- /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 000000000..c0387d0cd
--- /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 000000000..2bd08d28c
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Whiskey-Lake/Pentium-5405U.yaml
@@ -0,0 +1,29 @@
+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'
+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 000000000..2875ed5f4
--- /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 000000000..55a2e6d84
--- /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 000000000..fe4f419a2
--- /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 000000000..bf9176dae
--- /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 000000000..b80622078
--- /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 000000000..722612a3e
--- /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 000000000..f82f1b495
--- /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 000000000..e86096ac5
--- /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 000000000..51a45f72d
--- /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 000000000..fa1529918
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2250.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.73 GHz'
+ 'L2 Cache (Total)': '2 MiB'
+ 'Die Size': '90 mm'
+ Socket: PPGA478
+ 'Other Extensions': { }
+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 000000000..60f1d6101
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2300.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 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 000000000..12ccd23b9
--- /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 000000000..f2d714549
--- /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 000000000..fbc4ec262
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2400.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.83 GHz'
+ 'L2 Cache (Total)': '2 MiB'
+ 'Die Size': '90 mm'
+ Socket: 'PBGA479, PPGA478'
+ 'Other Extensions': { }
+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 000000000..8fddcf86a
--- /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 000000000..02e5b4249
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2500.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 GHz'
+ 'L2 Cache (Total)': '2 MiB'
+ 'Die Size': '90 mm'
+ 'Release Date': '2006-02-14'
+ Socket: 'PBGA479, PPGA478'
+ 'Other Extensions': { }
+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 000000000..6abfbed3b
--- /dev/null
+++ b/specs/intel/Mobile-CPUs-Intel/Mobile-Yonah/Core-T2600.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.16 GHz'
+ 'L2 Cache (Total)': '2 MiB'
+ 'Die Size': '90 mm'
+ Socket: 'PBGA479, PPGA478'
+ 'Other Extensions': { }
+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 000000000..115425acb
--- /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 000000000..9d8f69fea
--- /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 000000000..671e9fa5d
--- /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 000000000..692261002
--- /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 000000000..1a12d14f5
--- /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 000000000..54c0aa2c8
--- /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 000000000..1c20f2316
--- /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 000000000..bac21ed4c
--- /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 000000000..4dfc0d5f0
--- /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 000000000..1d592ae95
--- /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 000000000..5d6a409dd
--- /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 000000000..1e8417f43
--- /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 000000000..688b1f11d
--- /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 000000000..02aeb4105
--- /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 000000000..7b2c90388
--- /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 000000000..b7ac2e6d6
--- /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 000000000..92321fb72
--- /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 000000000..8ca89449f
--- /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 000000000..ebb844799
--- /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 000000000..3dbb33199
--- /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 000000000..c01715ebc
--- /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 000000000..93400562a
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3520.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.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'
+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 000000000..395716048
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3530.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.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'
+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 000000000..6d9b924a4
--- /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 000000000..c3f0c8af5
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3550.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': '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'
+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 000000000..370096907
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3565.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': '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'
+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 000000000..2d784d1ba
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Bloomfield/Xeon-W3570.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.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'
+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 000000000..fd700bcf6
--- /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 000000000..54b9a0b17
--- /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 000000000..6084bab58
--- /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 000000000..58517e45e
--- /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 000000000..7614d6c08
--- /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 000000000..bacb4e451
--- /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 000000000..e4e13b700
--- /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 000000000..4e5b908b3
--- /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 000000000..0cbc46bb8
--- /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 000000000..5d34e46fd
--- /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 000000000..488b513c8
--- /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 000000000..02ee4cca2
--- /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 000000000..ca05dd5dd
--- /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 000000000..4fc6a5f6a
--- /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 000000000..df26991ef
--- /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 000000000..6a49f2a6f
--- /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 000000000..c650c3301
--- /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 000000000..b0add4a94
--- /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 000000000..5bd1da7ca
--- /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 000000000..46e1d2c97
--- /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 000000000..5577fb415
--- /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 000000000..949b794fb
--- /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 000000000..e9218d190
--- /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 000000000..4483df63e
--- /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 000000000..a43939973
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Broadwell/Xeon-D-1541.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.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
+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 000000000..cbab3f4a1
--- /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 000000000..804dc9006
--- /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 000000000..2847968ff
--- /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 000000000..0ba2162d0
--- /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 000000000..cf3718c62
--- /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 000000000..c78db36f5
--- /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 000000000..ff79ee644
--- /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 000000000..3004d20da
--- /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 000000000..9d287363e
--- /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 000000000..eb3955be9
--- /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 000000000..b95af9a52
--- /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 000000000..a9f762e1f
--- /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 000000000..905230096
--- /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 000000000..ad1cf9090
--- /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 000000000..b3b73149b
--- /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 000000000..0cb2ff289
--- /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 000000000..06dc1bb77
--- /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 000000000..56e0866cf
--- /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 000000000..815776d05
--- /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 000000000..30262ceb8
--- /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 000000000..19340b29c
--- /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 000000000..f102daf4f
--- /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 000000000..0e0347d96
--- /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 000000000..e4d7f2677
--- /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 000000000..9f238c647
--- /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 000000000..9a5449edc
--- /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 000000000..15fb43890
--- /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 000000000..be9598a74
--- /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 000000000..81f5790b8
--- /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 000000000..ceb25bc29
--- /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 000000000..a6a3ae46e
--- /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 000000000..f0f61d1ea
--- /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 000000000..a3603f9cf
--- /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 000000000..8853e9782
--- /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 000000000..6a9a63802
--- /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 000000000..2ab38287f
--- /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 000000000..a632f3078
--- /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 000000000..6808b9461
--- /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 000000000..891851d94
--- /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 000000000..17e4cdece
--- /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 000000000..bc8ae2135
--- /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 000000000..b83e4c022
--- /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 000000000..33e0dac03
--- /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 000000000..eca38d739
--- /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 000000000..55d3e63e7
--- /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 000000000..54a58dcd8
--- /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 000000000..c2a138c17
--- /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 000000000..1d8324cf2
--- /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 000000000..659a5eeb7
--- /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 000000000..e1640cd67
--- /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 000000000..13ed896ee
--- /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 000000000..2a228125b
--- /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 000000000..778a2e868
--- /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 000000000..db2fe35ed
--- /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 000000000..85bf85201
--- /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 000000000..afded4ffe
--- /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 000000000..134074ae2
--- /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 000000000..65f0032b1
--- /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 000000000..7f068e205
--- /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 000000000..40b45e7cc
--- /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 000000000..ea573f39d
--- /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 000000000..6799a3404
--- /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 000000000..0c3d4d94e
--- /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 000000000..02387322e
--- /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 000000000..739442894
--- /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 000000000..889745a54
--- /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 000000000..e46240ba7
--- /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 000000000..c5c5a9cca
--- /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 000000000..e351d600e
--- /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 000000000..ea604cbed
--- /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 000000000..d2048593c
--- /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 000000000..86c77e82c
--- /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 000000000..a742d41d2
--- /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 000000000..70536ef84
--- /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 000000000..631e6373d
--- /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 000000000..13a171325
--- /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 000000000..8530cff25
--- /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 000000000..dd806f476
--- /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 000000000..e63327b85
--- /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 000000000..9bd3b4407
--- /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 000000000..8dccd2530
--- /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 000000000..81ffb032a
--- /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 000000000..a0084fb18
--- /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 000000000..1953336ea
--- /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 000000000..1fd7adffa
--- /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 000000000..0f422b233
--- /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 000000000..acb98880d
--- /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 000000000..35076a7dd
--- /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 000000000..767f0e0e1
--- /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 000000000..35b95d2cb
--- /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 000000000..8081d1837
--- /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 000000000..b7fdb710e
--- /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 000000000..36a081437
--- /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 000000000..bcdaadb94
--- /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 000000000..cafa634f1
--- /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 000000000..bef3241c5
--- /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 000000000..93f6f6443
--- /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 000000000..8ddc0bc78
--- /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 000000000..ffbd53c42
--- /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 000000000..c790cdf72
--- /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 000000000..e7f5327c0
--- /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 000000000..236eb8e2d
--- /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 000000000..d5d38b1f1
--- /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 000000000..0151e8d5e
--- /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 000000000..ed7556c70
--- /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 000000000..41bda0c52
--- /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 000000000..4a9520e2a
--- /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 000000000..62a8a22d1
--- /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 000000000..3215ca8ca
--- /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 000000000..28a66c6fb
--- /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 000000000..5d7b4064d
--- /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 000000000..c5343cfc6
--- /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 000000000..e0f37ba75
--- /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 000000000..4dd909691
--- /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 000000000..a71d97616
--- /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 000000000..d95f54201
--- /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 000000000..7a0b947c4
--- /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 000000000..032715a54
--- /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 000000000..c8b0d8629
--- /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 000000000..c3b0e6757
--- /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 000000000..362ea9ad5
--- /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 000000000..ad894f2e2
--- /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 000000000..d0dc64f91
--- /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 000000000..a36c4e467
--- /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 000000000..1db5c7bca
--- /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 000000000..91bfae6ae
--- /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 000000000..3b5dee02d
--- /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 000000000..6a3f9baeb
--- /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 000000000..b04045c54
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5310.yaml
@@ -0,0 +1,19 @@
+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
+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 000000000..9e9450175
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5320.yaml
@@ -0,0 +1,19 @@
+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
+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 000000000..9f75f7791
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5335.yaml
@@ -0,0 +1,19 @@
+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
+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 000000000..e799344b4
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Clovertown/Xeon-E5345.yaml
@@ -0,0 +1,19 @@
+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
+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 000000000..f7d9e36ed
--- /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 000000000..235e3d84b
--- /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 000000000..405e3e26c
--- /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 000000000..9dc85118b
--- /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 000000000..10bfe4950
--- /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 000000000..0f588a107
--- /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 000000000..de19b85a6
--- /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 000000000..59282ffb7
--- /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 000000000..3d26315ca
--- /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 000000000..0805631fe
--- /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 000000000..a3a9c5182
--- /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 000000000..ad9b86615
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2136.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..de3219bac
--- /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 000000000..54ba3c4ab
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Coffee-Lake/Xeon-E-2146G.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.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'
+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 000000000..e9b1e4c45
--- /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 000000000..5ef6f2fe5
--- /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 000000000..736c02f5e
--- /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 000000000..63fdad0de
--- /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 000000000..5ff01cee3
--- /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 000000000..3871e26f3
--- /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 000000000..19b43037e
--- /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 000000000..8d7589ee4
--- /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 000000000..9b52d8820
--- /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 000000000..67321c991
--- /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 000000000..5dd267bcd
--- /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 000000000..c1bd972b5
--- /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 000000000..58c9c87cb
--- /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 000000000..667086acb
--- /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 000000000..3ba25eed9
--- /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 000000000..3b1fd7e84
--- /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 000000000..122fdaf5a
--- /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 000000000..428b48417
--- /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 000000000..e63e46d3e
--- /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 000000000..403d70b5f
--- /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 000000000..d7bd6e2a2
--- /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 000000000..b823128f0
--- /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 000000000..fb2372b69
--- /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 000000000..6d9d7e0b1
--- /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 000000000..3352e29ea
--- /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 000000000..c492346d3
--- /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 000000000..c79c6c4bf
--- /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 000000000..1f9dc0c47
--- /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 000000000..03ed25c33
--- /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 000000000..3bf9c9633
--- /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 000000000..400fdae83
--- /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 000000000..e1fbb23f4
--- /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 000000000..6889eb02c
--- /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 000000000..f6bb42608
--- /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 000000000..00333bafc
--- /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 000000000..d4e37c2ba
--- /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 000000000..ceeb02078
--- /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 000000000..788bbe062
--- /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 000000000..03d2e1017
--- /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 000000000..6ca42ee2e
--- /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 000000000..04940cece
--- /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 000000000..10cf56eb5
--- /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 000000000..b559b89dd
--- /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 000000000..06cb8f0af
--- /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 000000000..37a0a2f79
--- /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 000000000..111798831
--- /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 000000000..20bb30e57
--- /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 000000000..93dc8f445
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Gulftown/Xeon-W3690.yaml
@@ -0,0 +1,25 @@
+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'
+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 000000000..c30d72143
--- /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 000000000..7e8994621
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5405.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 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 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 000000000..e320a119d
--- /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 000000000..3130233a7
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5420.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.5 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 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 000000000..4cd1c7445
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5430.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.66 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 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 000000000..4fc26741e
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5440.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.83 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 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 000000000..21b00b71e
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5450.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': '3 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 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 000000000..df7332fa1
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5462.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.8 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 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 000000000..ee0617170
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-E5472.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': '3 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 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 000000000..bfcf99416
--- /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 000000000..100c98fc9
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-L5420.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.5 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 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 000000000..2d29e5253
--- /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 000000000..d74f434ce
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5450.yaml
@@ -0,0 +1,19 @@
+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
+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 000000000..b1a26aa24
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5460.yaml
@@ -0,0 +1,19 @@
+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
+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 000000000..d53b3557c
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5470.yaml
@@ -0,0 +1,19 @@
+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
+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 000000000..147dd1bdb
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Harpertown/Xeon-X5472.yaml
@@ -0,0 +1,19 @@
+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
+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 000000000..2567fbc24
--- /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 000000000..fa4d8679b
--- /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 000000000..b7f0e24fc
--- /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 000000000..5305a46df
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1220-v3.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..276d4f532
--- /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 000000000..7f565bb9a
--- /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 000000000..b28a0df33
--- /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 000000000..689e947c4
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1230-v3.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.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
+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 000000000..838c151c6
--- /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 000000000..a627cbb2d
--- /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 000000000..ad0bbfa99
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1240-v3.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': '2013-06-01'
+ Socket: FCLGA1150
+ AES: true
+ 'Other Extensions':
+ - x86-64
+ AVX/SSE/MMX: AVX2
+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 000000000..7438e2989
--- /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 000000000..4461b5ad6
--- /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 000000000..372a77d6e
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1245-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.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'
+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 000000000..64651921a
--- /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 000000000..32f3c1f30
--- /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 000000000..fc8ee714d
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1270-v3.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': '2013-06-01'
+ Socket: FCLGA1150
+ AES: true
+ 'Other Extensions':
+ - x86-64
+ AVX/SSE/MMX: AVX2
+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 000000000..f57f85115
--- /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 000000000..447c3875b
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1275-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.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'
+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 000000000..39055cdfc
--- /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 000000000..ce6944c3f
--- /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 000000000..b1f83e0f1
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Haswell/Xeon-E3-1280-v3.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.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
+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 000000000..d047d972e
--- /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 000000000..ab3a09817
--- /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 000000000..79c7d243d
--- /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 000000000..0fd5c2813
--- /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 000000000..136b73313
--- /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 000000000..1611ab059
--- /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 000000000..4984ce752
--- /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 000000000..71d216642
--- /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 000000000..077c6a787
--- /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 000000000..8f23ae370
--- /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 000000000..cbf78fdb1
--- /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 000000000..2cdf8a345
--- /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 000000000..cc5acff79
--- /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 000000000..67d24204b
--- /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 000000000..f2ff4b4e1
--- /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 000000000..f8b444c7b
--- /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 000000000..6cf6e83f8
--- /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 000000000..7b2efe2fc
--- /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 000000000..94c5abe6e
--- /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 000000000..0d0d5f262
--- /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 000000000..f031fb0a5
--- /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 000000000..7896919a5
--- /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 000000000..46594b281
--- /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 000000000..9c1a51f5f
--- /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 000000000..3c9abb8cb
--- /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 000000000..e7b8e4045
--- /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 000000000..96aef1871
--- /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 000000000..87ef01199
--- /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 000000000..f74260866
--- /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 000000000..0d614cb6c
--- /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 000000000..926f828f9
--- /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 000000000..5c60986df
--- /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 000000000..535466c70
--- /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 000000000..4bcf13d3f
--- /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 000000000..89e9c4e9a
--- /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 000000000..c2e035270
--- /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 000000000..934311148
--- /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 000000000..e2c97fb7e
--- /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 000000000..cd67a8ec0
--- /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 000000000..9957c8905
--- /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 000000000..a8832d332
--- /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 000000000..fa1baf7ef
--- /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 000000000..dcd6e8e14
--- /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 000000000..ea01c86b0
--- /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 000000000..5a8d18604
--- /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 000000000..a82c30fff
--- /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 000000000..530264631
--- /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 000000000..63285f881
--- /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 000000000..5a5d755e9
--- /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 000000000..38ce5fb60
--- /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 000000000..fc2bbc2c2
--- /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 000000000..f46c90de6
--- /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 000000000..1000c46a0
--- /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 000000000..dfe985415
--- /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 000000000..660f80b84
--- /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 000000000..7b72f70ef
--- /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 000000000..4b917e167
--- /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 000000000..9caefd4c2
--- /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 000000000..b0defebfd
--- /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 000000000..4e58240c0
--- /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 000000000..9a9f5bbff
--- /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 000000000..fcad0e1e9
--- /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 000000000..0aaf8b53b
--- /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 000000000..fbe017f7b
--- /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 000000000..8fb5e7597
--- /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 000000000..20465a5b0
--- /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 000000000..4f1c07ee3
--- /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 000000000..58687ed6c
--- /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 000000000..aa491f26e
--- /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 000000000..8206542a6
--- /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 000000000..ea35a0d9d
--- /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 000000000..bd3ed96c6
--- /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 000000000..5df085231
--- /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 000000000..763988634
--- /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 000000000..416f92d87
--- /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 000000000..d23dea613
--- /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 000000000..248a5cd1c
--- /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 000000000..588fd77a9
--- /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 000000000..127044c3b
--- /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 000000000..8586a8e42
--- /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 000000000..7a565f426
--- /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 000000000..d8799c3f5
--- /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 000000000..c376f3811
--- /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 000000000..9deb9ed07
--- /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 000000000..3bc3366ed
--- /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 000000000..284129959
--- /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 000000000..0f56da0fd
--- /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 000000000..73ae637e8
--- /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 000000000..d5f82d3f7
--- /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 000000000..43150b111
--- /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 000000000..5babcbdd5
--- /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 000000000..db7801455
--- /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 000000000..608570cba
--- /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 000000000..bbb19cb61
--- /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 000000000..2502d7a9f
--- /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 000000000..1c9cfe282
--- /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 000000000..979a355da
--- /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 000000000..4224b1c6e
--- /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 000000000..2808a3021
--- /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 000000000..dda9db5d4
--- /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 000000000..61755a9d2
--- /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 000000000..ee61d4dd2
--- /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 000000000..8c929ef0f
--- /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 000000000..3dd7eaeb7
--- /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 000000000..18f7411e5
--- /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 000000000..472ec1ece
--- /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 000000000..6385c43c6
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Ivy-Bridge/Xeon-E3-1230V2.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.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'
+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 000000000..adf1e8e91
--- /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 000000000..cb0bf43a3
--- /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 000000000..3bc798aa3
--- /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 000000000..4ffbbc36a
--- /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 000000000..4a597a27e
--- /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 000000000..6cf7b4e2f
--- /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 000000000..22b8743ca
--- /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 000000000..3e0033efd
--- /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 000000000..ce26f4399
--- /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 000000000..a20b214eb
--- /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 000000000..818904e1c
--- /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 000000000..eb42bc38a
--- /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 000000000..bc3764643
--- /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 000000000..3d6ab4f37
--- /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 000000000..aa63a1403
--- /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 000000000..ca752bae2
--- /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 000000000..db785d363
--- /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 000000000..51687d9e4
--- /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 000000000..308214dd1
--- /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 000000000..ac5b410dc
--- /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 000000000..41d0f2a17
--- /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 000000000..2cd6b9320
--- /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 000000000..09ddbefaf
--- /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 000000000..0316357e3
--- /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 000000000..69174690c
--- /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 000000000..b03cb3aec
--- /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 000000000..6dff0119e
--- /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 000000000..d0ab3c3b8
--- /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 000000000..3ec034cca
--- /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 000000000..2a4e50f1d
--- /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 000000000..169d26bfd
--- /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 000000000..463b7c314
--- /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 000000000..f629b2926
--- /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 000000000..98d883a53
--- /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 000000000..1ff8f1f6f
--- /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 000000000..281a5562b
--- /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 000000000..0cb83fe20
--- /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 000000000..345acfde8
--- /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 000000000..c2c9f8e3b
--- /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 000000000..2d8d8e09e
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Kentsfield/Xeon-X3220.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.4 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 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 000000000..4a14bc7af
--- /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 000000000..148798c95
--- /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 000000000..5f2b0284c
--- /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 000000000..b3c9c1fd4
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3430.yaml
@@ -0,0 +1,25 @@
+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'
+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 000000000..1532bcb2d
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3440.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': '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'
+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 000000000..a10ffc38a
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3450.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': '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'
+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 000000000..2417ba917
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3460.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': '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'
+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 000000000..460c466b6
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Lynnfield/Xeon-X3470.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': '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'
+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 000000000..42da842a5
--- /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 000000000..2523ec8cf
--- /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 000000000..3fea3e149
--- /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 000000000..8487207bb
--- /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 000000000..db5a2d998
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5504.yaml
@@ -0,0 +1,21 @@
+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
+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 000000000..50beb6b2c
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5506.yaml
@@ -0,0 +1,21 @@
+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
+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 000000000..5e9ad1b1a
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5507.yaml
@@ -0,0 +1,21 @@
+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
+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 000000000..026bdd6e1
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5520.yaml
@@ -0,0 +1,23 @@
+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
+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 000000000..29c7431d6
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5530.yaml
@@ -0,0 +1,23 @@
+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
+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 000000000..953ea9e42
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-E5540.yaml
@@ -0,0 +1,23 @@
+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
+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 000000000..86f8c8366
--- /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 000000000..fa72dccc9
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-L5520.yaml
@@ -0,0 +1,23 @@
+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
+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 000000000..926ae4157
--- /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 000000000..808159b00
--- /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 000000000..ec6a6ef0f
--- /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 000000000..c5510c962
--- /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 000000000..0aa95b89c
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5560.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.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
+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 000000000..8a119d73c
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Nehalem-EP/Xeon-X5570.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.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
+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 000000000..965843a89
--- /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 000000000..bf7d2f7fd
--- /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 000000000..08ceb632c
--- /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 000000000..283e05bba
--- /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 000000000..d8a5d7013
--- /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 000000000..8dc67629c
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2420.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': '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
+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 000000000..3f9f3d504
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EN/Xeon-E5-2430.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.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
+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 000000000..b9209bd66
--- /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 000000000..af2516829
--- /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 000000000..d09e2c7a8
--- /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 000000000..5ab419376
--- /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 000000000..85c7a6307
--- /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 000000000..e620d6bd4
--- /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 000000000..8d2d67ecb
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1620.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..fa94deb14
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1650.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': '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
+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 000000000..e5d3b4938
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-1660.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': '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
+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 000000000..c75af29d9
--- /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 000000000..025894181
--- /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 000000000..ae34319c1
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2620.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 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-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 000000000..d8824d738
--- /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 000000000..885067c58
--- /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 000000000..9fe633670
--- /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 000000000..58e195063
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2640.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.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
+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 000000000..f236d0d9d
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2643.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..59febc928
--- /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 000000000..f830c8864
--- /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 000000000..26ec303a9
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2660.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.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
+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 000000000..b79d57a71
--- /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 000000000..6bb3c830a
--- /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 000000000..59012f103
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2670.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.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-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 000000000..5cbcbd215
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2680.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.5 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-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 000000000..012abc883
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2687W.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..be9e1d519
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge-EP/Xeon-E5-2690.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..f16aef8bc
--- /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 000000000..a166a9e51
--- /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 000000000..0ea0609c5
--- /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 000000000..89a8495fe
--- /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 000000000..f597e539e
--- /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 000000000..91c2c8338
--- /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 000000000..04d671992
--- /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 000000000..374f0dff8
--- /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 000000000..84e999e16
--- /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 000000000..fa91e122b
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1220.yaml
@@ -0,0 +1,24 @@
+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'
+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 000000000..c96adab60
--- /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 000000000..5a878f8a2
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1225.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..261fe32ca
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1230.yaml
@@ -0,0 +1,24 @@
+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'
+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 000000000..bb9d383c0
--- /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 000000000..b5704ed99
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1240.yaml
@@ -0,0 +1,24 @@
+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'
+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 000000000..ba653bff0
--- /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 000000000..2e819677c
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1260L.yaml
@@ -0,0 +1,26 @@
+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'
+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 000000000..00be3c739
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Sandy-Bridge/Xeon-E3-1270.yaml
@@ -0,0 +1,24 @@
+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'
+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 000000000..b0a5165fa
--- /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 000000000..cc0f929e1
--- /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 000000000..e6c01ede8
--- /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 000000000..1c1f9b8d4
--- /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 000000000..0f4753ae2
--- /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 000000000..1cfeb3828
--- /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 000000000..bd1e39372
--- /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 000000000..410af6a51
--- /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 000000000..891aa0dfd
--- /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 000000000..1915423ab
--- /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 000000000..72827ac64
--- /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 000000000..2790a4e70
--- /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 000000000..4b7ae5192
--- /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 000000000..d23229e06
--- /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 000000000..b6f394931
--- /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 000000000..03178e5f3
--- /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 000000000..98b62978b
--- /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 000000000..b8ffe07a1
--- /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 000000000..c750f4e84
--- /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 000000000..d39a097dc
--- /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 000000000..1ff6990a7
--- /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 000000000..5f68e23c3
--- /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 000000000..7f215eb06
--- /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 000000000..7ec0d3742
--- /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 000000000..315101ff2
--- /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 000000000..d6ec6c473
--- /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 000000000..7d6bf3024
--- /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 000000000..75b82404c
--- /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 000000000..79164a91a
--- /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 000000000..b12ebc375
--- /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 000000000..44cb66ead
--- /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 000000000..ace48c398
--- /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 000000000..f15aa6fc1
--- /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 000000000..05bcdbdbf
--- /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 000000000..0c7764b6c
--- /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 000000000..df3ac2f50
--- /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 000000000..c27f2b014
--- /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 000000000..896f9449b
--- /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 000000000..2b2f61283
--- /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 000000000..abdf4983d
--- /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 000000000..fcf512ca7
--- /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 000000000..70f10c1bb
--- /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 000000000..255ce32de
--- /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 000000000..fcfb608ec
--- /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 000000000..7a47d815e
--- /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 000000000..b9d5ac57b
--- /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 000000000..44c533c17
--- /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 000000000..b1b56dc5b
--- /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 000000000..80005a347
--- /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 000000000..43e8c597b
--- /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 000000000..f1d6752b2
--- /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 000000000..bb604cb55
--- /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 000000000..ecd5f3d0d
--- /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 000000000..cb2f4199d
--- /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 000000000..4cf5c83dd
--- /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 000000000..0f5b036c7
--- /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 000000000..bbdf36738
--- /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 000000000..b21ff4ef7
--- /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 000000000..6bc52d501
--- /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 000000000..beb765bf8
--- /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 000000000..106a2e56b
--- /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 000000000..5e2edaeea
--- /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 000000000..6158644b8
--- /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 000000000..b3a1cbb82
--- /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 000000000..49e507a81
--- /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 000000000..ae5745d81
--- /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 000000000..414a4afb9
--- /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 000000000..2e6bbc1c2
--- /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 000000000..f1fa6b89d
--- /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 000000000..5e6d488d3
--- /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 000000000..3d465e768
--- /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 000000000..4053554c9
--- /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 000000000..0e1dd9651
--- /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 000000000..a7ebece72
--- /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 000000000..9c167d611
--- /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 000000000..964beeb52
--- /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 000000000..c55478b43
--- /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 000000000..666c33496
--- /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 000000000..6955cfd20
--- /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 000000000..b315ae4aa
--- /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 000000000..e5138cd7c
--- /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 000000000..090cb09fd
--- /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 000000000..0175c5f51
--- /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 000000000..8ec1dcae4
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2123.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..388272fac
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2125.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..56a316e74
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2133.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..d61577d38
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2135.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..fd1238c12
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2145.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..7ec7ce600
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Skylake/Xeon-W-2155.yaml
@@ -0,0 +1,24 @@
+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
+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 000000000..343329281
--- /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 000000000..6e271be5c
--- /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 000000000..9bb5d6102
--- /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 000000000..78198fdc4
--- /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 000000000..ef2f10df7
--- /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 000000000..f1d3e2e0c
--- /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 000000000..1d89fd7ae
--- /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 000000000..19c9567d4
--- /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 000000000..a75912749
--- /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 000000000..3394ab5e1
--- /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 000000000..39c1d8b89
--- /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 000000000..462f0df1c
--- /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 000000000..03bcbf84e
--- /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 000000000..388d0057c
--- /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 000000000..8ee49b826
--- /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 000000000..93fdd07f3
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-E5620.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.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'
+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 000000000..8e5e23d52
--- /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 000000000..fa3a6cd86
--- /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 000000000..de7c114fe
--- /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 000000000..241370149
--- /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 000000000..a5bd6311f
--- /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 000000000..12fc9f7fb
--- /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 000000000..d1fa58268
--- /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 000000000..8b726fa91
--- /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 000000000..8b84829f4
--- /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 000000000..df7312366
--- /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 000000000..2ec4c7a5d
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-W3680.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': '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'
+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 000000000..52cf0d104
--- /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 000000000..a24148e5b
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5650.yaml
@@ -0,0 +1,24 @@
+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'
+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 000000000..f99fe0a73
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5660.yaml
@@ -0,0 +1,24 @@
+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'
+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 000000000..ae75fcc71
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5667.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.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'
+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 000000000..065c83e45
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5670.yaml
@@ -0,0 +1,24 @@
+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'
+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 000000000..5f6299107
--- /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 000000000..22d17b4a7
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5675.yaml
@@ -0,0 +1,24 @@
+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'
+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 000000000..444d96cbb
--- /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 000000000..50d6934c5
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5680.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': '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'
+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 000000000..d49411e2c
--- /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 000000000..a18ad01ec
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Westmere-EP/Xeon-X5690.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': '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'
+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 000000000..93369c2dc
--- /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 000000000..2c9b19dd4
--- /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 000000000..048916397
--- /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 000000000..f59b833c2
--- /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 000000000..b6e5aca34
--- /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 000000000..bf91aa67e
--- /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 000000000..74e89d35c
--- /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 000000000..f338a2006
--- /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 000000000..fc81ca607
--- /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 000000000..36dc143c1
--- /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 000000000..295b5eb03
--- /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 000000000..0ae1727f7
--- /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 000000000..0f166117a
--- /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 000000000..31d76e030
--- /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 000000000..63c81603f
--- /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 000000000..997b4f855
--- /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 000000000..9bb2335fa
--- /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 000000000..d7bf79789
--- /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 000000000..25107977e
--- /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 000000000..2d910acf3
--- /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 000000000..507805766
--- /dev/null
+++ b/specs/intel/Server-CPUs-Intel/Server-Wolfdale/Xeon-E3110.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 GHz'
+ 'L2 Cache (Total)': '6 MiB'
+ 'Die Size': '107 mm'
+ 'Release Date': '2008-01-14'
+ Socket: LGA775
+ 'Other Extensions':
+ - x86-64
+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 000000000..5d3294d93
--- /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 000000000..197756557
--- /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 000000000..8afb8e543
--- /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 000000000..118d5b6ca
--- /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 000000000..ec188d137
--- /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 000000000..e04e19f25
--- /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 000000000..e0c677518
--- /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 000000000..a7d929faf
--- /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 000000000..d4195ce73
--- /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 000000000..df9612837
--- /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 000000000..410babb95
--- /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 000000000..2c1812931
--- /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 000000000..ac10b7c57
--- /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 000000000..cd33df77d
--- /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 000000000..35aa9dd0c
--- /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 000000000..2303e1274
--- /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 000000000..f3c6946c1
--- /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 000000000..c364e7b9c
--- /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 000000000..921e71c11
--- /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 000000000..2baedc88e
--- /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 000000000..62588a0b9
--- /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 000000000..3eb91e061
--- /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 000000000..9e3d8f937
--- /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 000000000..3b37d25b1
--- /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 000000000..d3c539c02
--- /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 000000000..649d6b533
--- /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 000000000..c49b2d165
--- /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 000000000..d87cb8d47
--- /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 000000000..a70bd7d04
--- /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 000000000..7348731ae
--- /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 000000000..29234bde8
--- /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 000000000..30f31eee5
--- /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 000000000..219031d91
--- /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 000000000..e434e4fb6
--- /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 000000000..ea8f488c9
--- /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 000000000..e2cd98334
--- /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 000000000..27221b130
--- /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 000000000..c4ca1820e
--- /dev/null
+++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-2295.yaml
@@ -0,0 +1,22 @@
+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
+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 000000000..85fa956f5
--- /dev/null
+++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3223.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.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
+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 000000000..a852ff60a
--- /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 000000000..e772ddd1c
--- /dev/null
+++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3235.yaml
@@ -0,0 +1,21 @@
+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
+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 000000000..02f52bf9d
--- /dev/null
+++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3245.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-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 000000000..0b41a72ee
--- /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 000000000..dcacb5a3c
--- /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 000000000..344cbb82d
--- /dev/null
+++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3265M.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-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 000000000..408dbebe1
--- /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 000000000..10f854dd4
--- /dev/null
+++ b/specs/intel/undefined-CPUs-Intel/undefined-Cascade-Lake/Xeon-W-3275M.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-3275M'
+name: Xeon-W-3275M
diff --git a/specs/readme.md b/specs/readme.md
new file mode 100644
index 000000000..5b87c0018
--- /dev/null
+++ b/specs/readme.md
@@ -0,0 +1,9 @@
+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"]
+```
+
+## potentials to add to row-data.js
+`Maximum Streams` (Radeon-Sky-700)
+`Hardware Accelerated Media` (Arc-B570)
\ No newline at end of file
diff --git a/src/css/part-selector.css b/src/css/part-selector.css
index 63af48881..0df085c83 100644
--- a/src/css/part-selector.css
+++ b/src/css/part-selector.css
@@ -49,6 +49,21 @@ body {
.part.intel {
border-left: 5px solid hsl(200, 90%, 50%);
}
+.part.nvidia {
+ border-left: 5px solid #76B900;
+}
+.part.ati{
+ border-left: 5px solid #F60000;
+}
+.part.matrox{
+ border-left: 5px solid #171B61;
+}
+.part.threedfx{
+ border-left: 5px solid #DD7A00;
+}
+.part.xgi{
+ border-left: 5px solid #00458D;
+}
.part-padding {
padding: 10px;
overflow: none;
diff --git a/src/js/components/part.js b/src/js/components/part.js
index fcd328f20..22eb82d99 100644
--- a/src/js/components/part.js
+++ b/src/js/components/part.js
@@ -26,7 +26,7 @@ module.exports = {
}
},
class: curData.data && curData.data.Manufacturer
- && curData.data.Manufacturer.toLowerCase() || 'amd',
+ && curData.data.Manufacturer.toLowerCase().replace('3','three') || 'amd',
}, [
m('.part-padding', [
m('.part-header', curData.humanName),
diff --git a/src/js/pure.js b/src/js/pure.js
index a1c0a6958..42005ec37 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 3d3fc86c1..b799b0336 100644
--- a/src/js/row-data.js
+++ b/src/js/row-data.js
@@ -179,12 +179,16 @@ module.exports.sections = [
{
name: 'cTDP Support',
processor: types.boolTrue,
+ },
+ {
+ name: 'Market'
}
],
},
{
name: 'Benchmarks',
rows: [
+ // CPU
{
name: 'UserBenchmark CPU Score',
processor: types.numberUp,
@@ -209,6 +213,23 @@ module.exports.sections = [
name: 'Geekbench Multi-Core Score',
processor: types.numberUp,
},
+ // GPU
+ {
+ name: '3DMark Graphics Score',
+ processor: types.numberUp,
+ },
+ {
+ name: 'Geekbench Vulkan Score',
+ processor: types.numberUp,
+ },
+ {
+ name: 'Geekbench OpenCl Score',
+ processor: types.numberUp,
+ },
+ {
+ name: 'PassMark Graphics Score',
+ processor: types.numberUp,
+ },
],
},
{
@@ -285,6 +306,18 @@ module.exports.sections = [
name: 'Texture Mapping Unit Count',
processor: types.numberUp,
},
+ {
+ name: 'Ray Tracing Cores',
+ processor: types.numberUp,
+ },
+ {
+ name: 'Tensor Cores',
+ processor: types.numberUp
+ },
+ {
+ name: 'Pixel Shaders',
+ processor: types.numberUp
+ }
],
},
{
@@ -355,6 +388,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
+ }
],
},
{
@@ -393,6 +450,19 @@ module.exports.sections = [
},
],
},
+ {
+ name: 'Hardware Accelerated Media',
+ rows: [
+ {
+ name: 'Hardware Accelerated Decoding',
+ processor: types.list,
+ },
+ {
+ name: 'Hardware Accelerated Encoding',
+ processor: types.list,
+ },
+ ],
+ },
{
name: 'Features',
rows: [
diff --git a/tests/third-party-matchers.js b/tests/third-party-matchers.js
index cdc430eb2..3e42423b3 100644
--- a/tests/third-party-matchers.js
+++ b/tests/third-party-matchers.js
@@ -97,23 +97,13 @@ 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');
+// test('3PM: Dodgy geekbench RX', t => {
+// confirmMatches({
+// name: 'Radeon(TM) RX 580'
+// }, ['RX-580'], [], t, 'RX 580 not matching with either dodgy geekbench names.');
- t.end();
-});
+// t.end();
+// })
test('3PM: HD GPUs', t => {
confirmMatches({
@@ -128,3 +118,9 @@ test('3PM: HD GPUs', t => {
t.end();
});
+
+// test('3PM: RTX GPUs', t => {
+// confirmMatches({
+// name: ''
+// })
+// })
diff --git a/tmp/.gitignore b/tmp/.gitignore
index d6b7ef32c..72a101c47 100644
--- a/tmp/.gitignore
+++ b/tmp/.gitignore
@@ -1,2 +1,4 @@
-*
-!.gitignore
+*.csv
+*.html
+*.js
+*.json
\ No newline at end of file
diff --git a/tmp/find-missing-intel-cpus.py b/tmp/find-missing-intel-cpus.py
new file mode 100644
index 000000000..828fe159c
--- /dev/null
+++ b/tmp/find-missing-intel-cpus.py
@@ -0,0 +1,114 @@
+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.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
+ 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')
+
+ 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(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("-"," "),
+ '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,default_flow_style=False, sort_keys=False)
+
+
+create_yaml_files(missingcpus)
diff --git a/tmp/scrape/.gitkeep b/tmp/scrape/.gitkeep
new file mode 100644
index 000000000..e69de29bb
diff --git a/to-be-imported/NVENC-decoding/Consumer.csv b/to-be-imported/NVENC-decoding/Consumer.csv
new file mode 100644
index 000000000..8830cadff
--- /dev/null
+++ b/to-be-imported/NVENC-decoding/Consumer.csv
@@ -0,0 +1,89 @@
+BOARD,FAMILY,NVDEC Generation,Desktop/ Mobile,# OF CHIPS,Total # of NVDEC,MPEG-1,MPEG-2,VC-1,VP8,VP9 4:2:0 8 Bit,VP9 4:2:0 10 Bit,VP9 4:2:0 12 Bit,H.264 (AVCHD) 4:2:0 8 Bit,H.264 (AVCHD) 4:2:0 10 Bit,H.264 (AVCHD) 4:2:2 8 Bit,H.264 (AVCHD) 4:2:2 10 Bit,H.265 (HEVC) 4:2:0 8 Bit,H.265 (HEVC) 4:2:0 10 Bit,H.265 (HEVC) 4:2:0 12 Bit,H.265 (HEVC) 4:2:2 8 Bit,H.265 (HEVC) 4:2:2 10 Bit,H.265 (HEVC) 4:4:4 8 Bit,H.265 (HEVC) 4:4:4 10 Bit,H.265 (HEVC) 4:4:4 12 Bit,AV1 8 Bit,AV1 10 Bit
+GeForce GTX 745,Maxwell (1st Gen),1st Gen,D,1,1,YES,YES,YES,NO,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 750,Maxwell (1st Gen),1st Gen,D,1,1,YES,YES,YES,NO,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 750 Ti,Maxwell (1st Gen),1st Gen,D,1,1,YES,YES,YES,NO,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce 845M,Maxwell (1st Gen),1st Gen,M,1,1,YES,YES,YES,NO,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce 940M,Maxwell (1st Gen),1st Gen,M,1,1,YES,YES,YES,NO,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce 940MX,Maxwell (1st Gen),1st Gen,M,1,1,YES,YES,YES,NO,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce 945M,Maxwell (1st Gen),1st Gen,M,1,1,YES,YES,YES,NO,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 850A,Maxwell (1st Gen),1st Gen,M,1,1,YES,YES,YES,NO,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 960A,Maxwell (1st Gen),1st Gen,M,1,1,YES,YES,YES,NO,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 850M,Maxwell (1st Gen),1st Gen,M,1,1,YES,YES,YES,NO,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 960M,Maxwell (1st Gen),1st Gen,M,1,1,YES,YES,YES,NO,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 910M,Maxwell (2nd Gen),1st Gen,M,1,1,YES,YES,YES,NO,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 920M,Maxwell (2nd Gen),1st Gen,M,1,1,YES,YES,YES,NO,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 920A,Maxwell (2nd Gen),1st Gen,M,1,1,YES,YES,YES,NO,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 750,Maxwell (2nd Gen),2nd Gen,D,1,1,YES,YES,YES,YES,YES,NO,NO,YES,NO,NO,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 950,Maxwell (2nd Gen),2nd Gen,D,1,1,YES,YES,YES,YES,YES,NO,NO,YES,NO,NO,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 960,Maxwell (2nd Gen),2nd Gen,D,1,1,YES,YES,YES,YES,YES,NO,NO,YES,NO,NO,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 965M,Maxwell (2nd Gen),2nd Gen,M,1,1,YES,YES,YES,YES,YES,NO,NO,YES,NO,NO,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 980MX,Maxwell (2nd Gen),1st Gen,M,1,1,YES,YES,YES,YES,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 980M,Maxwell (2nd Gen),1st Gen,M,1,1,YES,YES,YES,YES,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 960 Ti,Maxwell (2nd Gen),1st Gen,D/M,1,1,YES,YES,YES,YES,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 970,Maxwell (2nd Gen),1st Gen,D/M,1,1,YES,YES,YES,YES,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 980,Maxwell (2nd Gen),1st Gen,D/M,1,1,YES,YES,YES,YES,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 980 Ti,Maxwell (2nd Gen),1st Gen,D,1,1,YES,YES,YES,YES,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX Titan X,Maxwell (2nd Gen),1st Gen,D,1,1,YES,YES,YES,YES,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GT 1030,Pascal,3rd Gen,D,1,1,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 1050,Pascal,3rd Gen,D/M,1,1,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 1050 Ti,Pascal,3rd Gen,D/M,1,1,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 1060,Pascal,3rd Gen,D/M,1,1,YES,YES,YES,NO,YES,NO,NO,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 1070M,Pascal,3rd Gen,M,1,1,YES,YES,YES,YES,YES,NO,NO,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 1080M,Pascal,3rd Gen,M,1,1,YES,YES,YES,YES,YES,NO,NO,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 1070,Pascal,3rd Gen,D/M,1,1,YES,YES,YES,YES,YES,NO,NO,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 1070 Ti,Pascal,3rd Gen,D/M,1,1,YES,YES,YES,YES,YES,NO,NO,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 1080,Pascal,3rd Gen,D/M,1,1,YES,YES,YES,YES,YES,NO,NO,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 1080 Ti,Pascal,3rd Gen,D,1,1,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX Titan X,Pascal,3rd Gen,D,1,1,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX Titan Xp,Pascal,3rd Gen,D,1,1,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Titan V,Volta,3rd Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 1630,Turing,4th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+GeForce MX550,Turing,4th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+GeForce GTX 1650 (all variants),Turing,4th Gen,D/M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+GeForce GTX 1660 (all variants),Turing,4th Gen,D/M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+GeForce RTX 2060 (TU104),Turing,4th Gen,D/M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+GeForce RTX 2070,Turing,4th Gen,D/M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+GeForce RTX 2080,Turing,4th Gen,D/M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+GeForce RTX 2080 Ti,Turing,4th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+Titan RTX,Turing,4th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+GeForce RTX 2050,Ampere,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 3050,Ampere,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 3050 Laptop,Ampere,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 3060,Ampere,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 3060 Laptop,Ampere,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 3070,Ampere,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 3070 Laptop,Ampere,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 3080,Ampere,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 3080 Laptop,Ampere,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 3090,Ampere,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX MX570,Ampere,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 3050 Ti Laptop,Ampere,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 3060 Ti,Ampere,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 3060 Ti Laptop,Ampere,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 3070 Ti,Ampere,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 3070 Ti Laptop,Ampere,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 3080 Ti,Ampere,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 3080 Ti Laptop,Ampere,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 3090 Ti,Ampere,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 4050 Laptop,Ada Lovelace,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 4060 Laptop,Ada Lovelace,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 4060,Ada Lovelace,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 4060TI,Ada Lovelace,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 4070 Laptop,Ada Lovelace,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 4070,Ada Lovelace,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 4070 Super,Ada Lovelace,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 4070 Ti,Ada Lovelace,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 4070 Ti Super,Ada Lovelace,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 4080 Laptop,Ada Lovelace,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 4080 16GB,Ada Lovelace,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 4080 Super,Ada Lovelace,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 4090 Laptop,Ada Lovelace,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 4090,Ada Lovelace,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+GeForce RTX 5070,Blackwell,6th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+GeForce RTX 5070 Ti,Blackwell,6th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+GeForce RTX 5080,Blackwell,6th Gen,D,1,2,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+GeForce RTX 5090,Blackwell,6th Gen,D,1,2,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+GeForce RTX 5070 Laptop,Blackwell,6th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+GeForce RTX 5070 Ti Laptop,Blackwell,6th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+GeForce RTX 5080 Laptop,Blackwell,6th Gen,M,1,2,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+GeForce RTX 5090 Laptop,Blackwell,6th Gen,M,1,2,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
diff --git a/to-be-imported/NVENC-decoding/Consumer.xlsx b/to-be-imported/NVENC-decoding/Consumer.xlsx
new file mode 100644
index 000000000..aed17bebf
Binary files /dev/null and b/to-be-imported/NVENC-decoding/Consumer.xlsx differ
diff --git a/to-be-imported/NVENC-decoding/Professional.csv b/to-be-imported/NVENC-decoding/Professional.csv
new file mode 100644
index 000000000..339526430
--- /dev/null
+++ b/to-be-imported/NVENC-decoding/Professional.csv
@@ -0,0 +1,92 @@
+BOARD,FAMILY,NVDEC Generation,Desktop/ Mobile,# OF CHIPS,Total # of NVDEC,MPEG-1,MPEG-2,VC-1,VP8,VP9 4:2:0 8 Bit,VP9 4:2:0 10 Bit,VP9 4:2:0 12 Bit,H.264 (AVCHD) 4:2:0 8 Bit,H.264 (AVCHD) 4:2:0 10 Bit,H.264 (AVCHD) 4:2:2 8 Bit,H.264 (AVCHD) 4:2:2 10 Bit,H.265 (HEVC) 4:2:0 8 Bit,H.265 (HEVC) 4:2:0 10 Bit,H.265 (HEVC) 4:2:0 12 Bit,H.265 (HEVC) 4:2:2 8 Bit,H.265 (HEVC) 4:2:2 10 Bit,H.265 (HEVC) 4:4:4 8 Bit,H.265 (HEVC) 4:4:4 10 Bit,H.265 (HEVC) 4:4:4 12 Bit,AV1 8 Bit,AV1 10 Bit
+Quadro K620,Maxwell (1st Gen),1st Gen,D,1,1,YES,YES,YES,NO,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro K1200,Maxwell (1st Gen),1st Gen,D,1,1,YES,YES,YES,NO,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro K2200,Maxwell (1st Gen),1st Gen,D,1,1,YES,YES,YES,NO,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro M600,Maxwell (1st Gen),1st Gen,M,1,1,YES,YES,YES,NO,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro M620,Maxwell (1st Gen),1st Gen,M,1,1,YES,YES,YES,NO,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro M1000,Maxwell (1st Gen),1st Gen,M,1,1,YES,YES,YES,NO,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro M1200,Maxwell (1st Gen),1st Gen,M,1,1,YES,YES,YES,NO,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro M2000,Maxwell (1st Gen),1st Gen,M,1,1,YES,YES,YES,NO,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro M2000,Maxwell (GM206),2nd Gen,D,1,1,YES,YES,YES,YES,YES,NO,NO,YES,NO,NO,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro M2200M,Maxwell (GM206),2nd Gen,M,1,1,YES,YES,YES,YES,YES,NO,NO,YES,NO,NO,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro M3000M,Maxwell (2nd Gen),1st Gen,M,1,1,YES,YES,YES,YES,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro M4000M,Maxwell (2nd Gen),1st Gen,M,1,1,YES,YES,YES,YES,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro M5500M,Maxwell (2nd Gen),1st Gen,M,1,1,YES,YES,YES,YES,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro M4000,Maxwell (2nd Gen),1st Gen,D,1,1,YES,YES,YES,YES,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro M5000,Maxwell (2nd Gen),1st Gen,D,1,1,YES,YES,YES,YES,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro M6000,Maxwell (2nd Gen),1st Gen,D,1,1,YES,YES,YES,YES,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro P400,Pascal,3rd Gen,D,1,1,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Quadro P600,Pascal,3rd Gen,D/M,1,1,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Quadro P620,Pascal,3rd Gen,D/M,1,1,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Quadro P1000,Pascal,3rd Gen,D/M,1,1,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Quadro P2000,Pascal,3rd Gen,M,1,1,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Quadro P2200,Pascal,3rd Gen,D,1,1,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Quadro P3200,Pascal,3rd Gen,M,1,1,YES,YES,YES,YES,YES,NO,NO,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Quadro P4200,Pascal,3rd Gen,M,1,1,YES,YES,YES,YES,YES,NO,NO,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Quadro P5200,Pascal,3rd Gen,M,1,1,YES,YES,YES,YES,YES,NO,NO,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Quadro P4000,Pascal,3rd Gen,D,1,1,YES,YES,YES,YES,YES,NO,NO,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Quadro P5000,Pascal,3rd Gen,D,1,1,YES,YES,YES,YES,YES,NO,NO,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Quadro P6000,Pascal,3rd Gen,D,1,1,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Quadro GP100,Pascal,3rd Gen,D,1,1,YES,YES,YES,YES,YES,NO,NO,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Quadro GV100,Volta,3rd Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+NVIDIA T400,Turing,4th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+NVIDIA T400 4GB,Turing,4th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+NVIDIA T600,Turing,4th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+NVIDIA T1000,Turing,4th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+NVIDIA T1000 8GB,Turing,4th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+NVIDIA T550 Laptop GPU,Turing,4th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+NVIDIA T600 Laptop GPU,Turing,4th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+NVIDIA T1200 Laptop GPU,Turing,4th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+Quadro T1000,Turing,4th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+Quadro T2000,Turing,4th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+Quadro T2000 Max-Q,Turing,4th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+Quadro RTX 3000,Turing,4th Gen,M,1,3,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+Quadro RTX 3000 Max-Q,Turing,4th Gen,M,1,3,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+Quadro RTX 4000,Turing,4th Gen,D/M,1,2,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+Quadro RTX 4000 Max-Q,Turing,4th Gen,D/M,1,2,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+Quadro RTX 5000,Turing,4th Gen,D/M,1,2,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+Quadro RTX 6000,Turing,4th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+Quadro RTX 8000,Turing,4th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+NVIDIA RTX A500 Laptop GPU,Ampere,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX A1000 Laptop GPU,Ampere,5th Gen,M,1,2,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX A2000,Ampere,5th Gen,M,1,2,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX A2000 Mobile,Ampere,5th Gen,M,1,2,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX A3000,Ampere,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX A3000 Mobile,Ampere,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX A400,Ampere,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX A1000,Ampere,5th Gen,D,1,2,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX A4000,Ampere,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX A4500,Ampere,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX A5000,Ampere,5th Gen,D,1,2,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX A5500,Ampere,5th Gen,D,1,2,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX A6000,Ampere,5th Gen,D,1,2,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX A4000 Laptop GPU,Ampere,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX A4500 Laptop GPU,Ampere,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX A5000 Laptop GPU,Ampere,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX A5500 Laptop GPU,Ampere,5th Gen,M,1,2,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX A2000 12GB,Ampere,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX A1000 6GB Laptop GPU,Ampere,5th Gen,M,1,2,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX 500 Ada Generation Laptop GPU,Ada Lovelace,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX 1000 Ada Generation Laptop GPU,Ada Lovelace,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX 2000 Ada Generation Laptop GPU,Ada Lovelace,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX 3000 Ada Generation Laptop GPU,Ada Lovelace,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX 3500 Ada Generation Laptop GPU,Ada Lovelace,5th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX 4000 Ada Generation Laptop GPU,Ada Lovelace,5th Gen,M,1,2,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX 5000 Ada Generation Laptop GPU,Ada Lovelace,5th Gen,M,1,2,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX 2000 Ada Generation,Ada Lovelace,5th Gen,D,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX 4000 SFF Ada Generation,Ada Lovelace,5th Gen,D,1,2,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX 4000 Ada Generation,Ada Lovelace,5th Gen,D,1,2,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX 4500 Ada Generation,Ada Lovelace,5th Gen,D,1,2,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX 5000 Ada Generation,Ada Lovelace,5th Gen,D,1,2,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX 6000 Ada Generation,Ada Lovelace,5th Gen,D,1,3,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 500 Blackwell Generation Laptop GPU,Blackwell,6th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 1000 Blackwell Generation Laptop GPU,Blackwell,6th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 2000 Blackwell Generation Laptop GPU,Blackwell,6th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 3000 Blackwell Generation Laptop GPU,Blackwell,6th Gen,M,1,1,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 4000 Blackwell Generation Laptop GPU,Blackwell,6th Gen,M,1,2,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 5000 Blackwell Generation Laptop GPU,Blackwell,6th Gen,M,1,3,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 4000 Blackwell,Blackwell,6th Gen,D,1,2,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 4500 Blackwell,Blackwell,6th Gen,D,1,2,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 5000 Blackwell,Blackwell,6th Gen,D,1,3,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 6000 Blackwell Max-Q Workstation Edition,Blackwell,6th Gen,D,1,4,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 6000 Blackwell Workstation Edition,Blackwell,6th Gen,D,1,4,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
diff --git a/to-be-imported/NVENC-decoding/Server.csv b/to-be-imported/NVENC-decoding/Server.csv
new file mode 100644
index 000000000..c46f6347a
--- /dev/null
+++ b/to-be-imported/NVENC-decoding/Server.csv
@@ -0,0 +1,25 @@
+BOARD,FAMILY,NVDEC Generation,# OF CHIPS,# OF NVDEC /CHIP,Total # of NVDEC,MPEG-1,MPEG-2,VC-1,VP8,VP9 4:2:0 8 Bit,VP9 4:2:0 10 Bit,VP9 4:2:0 12 Bit,H.264 (AVCHD) 4:2:0 8 Bit,H.264 (AVCHD) 4:2:0 10 Bit,H.264 (AVCHD) 4:2:2 8 Bit,H.264 (AVCHD) 4:2:2 10 Bit,H.265 (HEVC) 4:2:0 8 Bit,H.265 (HEVC) 4:2:0 10 Bit,H.265 (HEVC) 4:2:0 12 Bit,H.265 (HEVC) 4:2:2 8 Bit,H.265 (HEVC) 4:2:2 10 Bit,H.265 (HEVC) 4:4:4 8 Bit,H.265 (HEVC) 4:4:4 10 Bit,H.265 (HEVC) 4:4:4 12 Bit,AV1 8 Bit,AV1 10 Bit
+NVIDIA A10,Ampere,5th Gen,1,2,2,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA A100,Ampere,4th Gen,1,5,5,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+NVIDIA A16,Ampere,5th Gen,4,2,8,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA A2,Ampere,5th Gen,1,2,2,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA A30,Ampere,4th Gen,1,4,4,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+NVIDIA A40,Ampere,5th Gen,1,2,2,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA H100 NVL,Hopper,4th Gen,1,7,7,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+NVIDIA H100 PCIe,Hopper,4th Gen,1,7,7,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+NVIDIA H100 SXM,Hopper,4th Gen,1,7,7,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+NVIDIA L4,Ada Lovelace,5th Gen,1,4,4,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA L40,Ada Lovelace,5th Gen,1,3,3,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA L40S,Ada Lovelace,5th Gen,1,3,3,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 6000 Blackwell Server Edition,Blackwell,6th Gen,1,4,4,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+Tesla M10,Maxwell (1st Gen),1st Gen,4,1,4,YES,YES,YES,YES,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+Tesla M4,Maxwell (GM206),2nd Gen,1,1,1,YES,YES,YES,YES,YES,NO,NO,YES,NO,NO,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+Tesla M40,Maxwell (2nd Gen),1st Gen,1,1,1,YES,YES,YES,YES,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+Tesla M6,Maxwell (2nd Gen),1st Gen,1,1,1,YES,YES,YES,YES,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+Tesla M60,Maxwell (2nd Gen),1st Gen,2,1,2,YES,YES,YES,YES,NO,NO,NO,YES,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO,NO
+Tesla P100,Pascal,3rd Gen,1,1,1,YES,YES,YES,YES,YES,NO,NO,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Tesla P4,Pascal,3rd Gen,1,1,1,YES,YES,YES,YES,YES,NO,NO,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Tesla P6,Pascal,3rd Gen,1,1,1,YES,YES,YES,YES,YES,NO,NO,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Tesla P40,Pascal,3rd Gen,1,1,1,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Tesla T4,Turing,4th Gen,1,2,2,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
+Tesla V100,Volta,3rd Gen,1,1,1,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
diff --git a/to-be-imported/NVENC-decoding/dgx.csv b/to-be-imported/NVENC-decoding/dgx.csv
new file mode 100644
index 000000000..872ed98f4
--- /dev/null
+++ b/to-be-imported/NVENC-decoding/dgx.csv
@@ -0,0 +1,5 @@
+BOARD,FAMILY,NVDEC Generation,# OF CHIPS,# OF NVDEC /CHIP,Total # of NVDEC,MPEG-1,MPEG-2,VC-1,VP8,VP9 4:2:0 8 Bit,VP9 4:2:0 10 Bit,VP9 4:2:0 12 Bit,H.264 (AVCHD) 4:2:0 8 Bit,H.264 (AVCHD) 4:2:0 10 Bit,H.264 (AVCHD) 4:2:2 8 Bit,H.264 (AVCHD) 4:2:2 10 Bit,H.265 (HEVC) 4:2:0 8 Bit,H.265 (HEVC) 4:2:0 10 Bit,H.265 (HEVC) 4:2:0 12 Bit,H.265 (HEVC) 4:2:2 8 Bit,H.265 (HEVC) 4:2:2 10 Bit,H.265 (HEVC) 4:4:4 8 Bit,H.265 (HEVC) 4:4:4 10 Bit,H.265 (HEVC) 4:4:4 12 Bit,AV1 8 Bit,AV1 10 Bit
+DGX Station,Volta,3rd Gen,4,1,4,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+DGX-1,Volta,3rd Gen,8,1,8,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+DGX-2,Volta,3rd Gen,16,1,16,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+DGX A100,Ampere,4th Gen,8,5,40,YES,YES,YES,YES,YES,YES,YES,YES,NO,NO,NO,YES,YES,YES,NO,NO,YES,YES,YES,NO,NO
diff --git a/to-be-imported/NVENC-encoding/Consumer.csv b/to-be-imported/NVENC-encoding/Consumer.csv
new file mode 100644
index 000000000..b3d966fb5
--- /dev/null
+++ b/to-be-imported/NVENC-encoding/Consumer.csv
@@ -0,0 +1,99 @@
+BOARD,FAMILY,NVENC Generation,Desktop/ Mobile,# OF CHIPS,Total # of NVENC,Max # of concurrent sessions,H.264 (AVCHD) YUV 4:2:0,H.264 (AVCHD) YUV 4:2:2,H.264 (AVCHD) YUV 4:4:4,H.264 (AVCHD) Lossless,H.265 (HEVC) 4K YUV 4:2:0,H.265 (HEVC) YUV 4:2:2,H.265 (HEVC) 4K YUV 4:4:4,H.265 (HEVC) 4K Lossless,H.265 (HEVC) 8K,HEVC 10-bit support,HEVC B Frame support,AV1 YUV 4:2:0
+GeForce GTX 745,Maxwell (1st Gen),4th Gen,D,1,1,8,YES,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 750,Maxwell (1st Gen),4th Gen,D,1,1,8,YES,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 750 Ti,Maxwell (1st Gen),4th Gen,D,1,1,8,YES,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce 845M,Maxwell (1st Gen),4th Gen,M,1,1,8,YES,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce 940M,Maxwell (1st Gen),4th Gen,M,1,1,8,YES,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce 940MX,Maxwell (1st Gen),4th Gen,M,1,1,8,YES,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce 945M,Maxwell (1st Gen),4th Gen,M,1,1,8,YES,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 850A,Maxwell (1st Gen),4th Gen,M,1,1,8,YES,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 960A,Maxwell (1st Gen),4th Gen,M,1,1,8,YES,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 850M,Maxwell (1st Gen),4th Gen,M,1,1,8,YES,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 960M,Maxwell (1st Gen),4th Gen,M,1,1,8,YES,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 750,Maxwell (2nd Gen),5th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 950,Maxwell (2nd Gen),5th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 960,Maxwell (2nd Gen),5th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 965M,Maxwell (2nd Gen),5th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 980M,Maxwell (2nd Gen),5th Gen,M,1,2,8,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 980MX,Maxwell (2nd Gen),5th Gen,M,1,2,8,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 960 Ti,Maxwell (2nd Gen),5th Gen,D/M,1,2,8,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 970,Maxwell (2nd Gen),5th Gen,D/M,1,2,8,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 980,Maxwell (2nd Gen),5th Gen,D/M,1,2,8,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 980 Ti,Maxwell (2nd Gen),5th Gen,D,1,2,8,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX Titan X,Maxwell (2nd Gen),5th Gen,D,1,2,8,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+GeForce GTX 1050,Pascal,6th Gen,D/M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+GeForce GTX 1050 Ti,Pascal,6th Gen,D/M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+GeForce GTX 1060,Pascal,6th Gen,D/M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+GeForce GTX 1060,Pascal,6th Gen,D/M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+GeForce GTX 1070M,Pascal,6th Gen,M,1,2,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+GeForce GTX 1080M,Pascal,6th Gen,M,1,2,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+GeForce GTX 1070,Pascal,6th Gen,D/M,1,2,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+GeForce GTX 1070 Ti,Pascal,6th Gen,D/M,1,2,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+GeForce GTX 1080,Pascal,6th Gen,D/M,1,2,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+GeForce GTX 1080 Ti,Pascal,6th Gen,D,1,2,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+GeForce GTX Titan X,Pascal,6th Gen,D,1,2,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+GeForce GTX Titan Xp,Pascal,6th Gen,D,1,2,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+Titan V,Volta,6th Gen,D,1,3,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+GeForce GTX 1630,Turing,6th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+GeForce GTX 1650 Max-Q,Turing,6th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+GeForce GTX 1650 GDDR5,Turing,6th Gen,D/M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+GeForce GTX 1650 GDDR6,Turing,6th Gen,D/M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+GeForce MX550,Turing,6th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+GeForce GTX 1650 GDDR6,Turing,7th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce GTX 1650 SUPER,Turing,7th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce GTX 1660 Ti Max-Q,Turing,7th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce GTX 1660,Turing,7th Gen,D/M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce GTX 1660 Ti,Turing,7th Gen,D/M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce GTX 1660 SUPER,Turing,7th Gen,D/M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 2060,Turing,7th Gen,D/M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 2070,Turing,7th Gen,D/M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 2060 SUPER,Turing,7th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 2060 (TU104),Turing,7th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 2070 Max-Q,Turing,7th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 2070 SUPER,Turing,7th Gen,D/M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 2080,Turing,7th Gen,D/M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 2080 Max-Q,Turing,7th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 2080 SUPER,Turing,7th Gen,D/M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 2080 Ti,Turing,7th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+Titan RTX,Turing,7th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 2050,Ampere,7th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 3050,Ampere,7th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 3050 Laptop,Ampere,7th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 3080 Ti Laptop,Ampere,7th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 3080 Laptop,Ampere,7th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 3070 Ti Laptop,Ampere,7th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 3070 Laptop,Ampere,7th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 3060 Ti Laptop,Ampere,7th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 3060 Laptop,Ampere,7th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 3060,Ampere,7th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 3070,Ampere,7th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 3080,Ampere,7th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 3090,Ampere,7th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce MX570,Ampere,7th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 3050 Ti Laptop,Ampere,7th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 3060 Ti,Ampere,7th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 3070 Ti,Ampere,7th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 3080 Ti,Ampere,7th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 3090 Ti,Ampere,7th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+GeForce RTX 4050 Laptop,Ada Lovelace,8th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+GeForce RTX 4060 Laptop,Ada Lovelace,8th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+GeForce RTX 4060,Ada Lovelace,8th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+GeForce RTX 4060 Ti,Ada Lovelace,8th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+GeForce RTX 4070 Laptop,Ada Lovelace,8th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+GeForce RTX 4070,Ada Lovelace,8th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+GeForce RTX 4070 Super,Ada Lovelace,8th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+GeForce RTX 4070 Ti,Ada Lovelace,8th Gen,D,1,2,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+GeForce RTX 4070 Ti Super,Ada Lovelace,8th Gen,D,1,2,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+GeForce RTX 4080 Laptop,Ada Lovelace,8th Gen,M,1,2,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+GeForce RTX 4080 16GB,Ada Lovelace,8th Gen,D,1,2,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+GeForce RTX 4080 Super,Ada Lovelace,8th Gen,D,1,2,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+GeForce RTX 4090 Laptop,Ada Lovelace,8th Gen,M,1,2,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+GeForce RTX 4090,Ada Lovelace,8th Gen,D,1,2,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+GeForce RTX 5070,Blackwell,9th Gen,D,1,1,8,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+GeForce RTX 5070 Ti,Blackwell,9th Gen,D,1,2,8,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+GeForce RTX 5080,Blackwell,9th Gen,D,1,2,8,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+GeForce RTX 5090,Blackwell,9th Gen,D,1,3,8,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+GeForce RTX 5070 Laptop,Blackwell,9th Gen,M,1,1,8,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+GeForce RTX 5070 Ti Laptop,Blackwell,9th Gen,M,1,1,8,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+GeForce RTX 5080 Laptop,Blackwell,9th Gen,M,1,2,8,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+GeForce RTX 5090 Laptop,Blackwell,9th Gen,M,1,3,8,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
diff --git a/to-be-imported/NVENC-encoding/Professional.csv b/to-be-imported/NVENC-encoding/Professional.csv
new file mode 100644
index 000000000..5a94f3547
--- /dev/null
+++ b/to-be-imported/NVENC-encoding/Professional.csv
@@ -0,0 +1,90 @@
+BOARD,FAMILY,NVENC Generation,Desktop/ Mobile,# OF CHIPS,Total # of NVENC,Max # of concurrent sessions,H.264 (AVCHD) YUV 4:2:0,H.264 (AVCHD) YUV 4:2:2,H.264 (AVCHD) YUV 4:4:4,H.264 (AVCHD) Lossless,H.265 (HEVC) 4K YUV 4:2:0,H.265 (HEVC) YUV 4:2:2,H.265 (HEVC) 4K YUV 4:4:4,H.265 (HEVC) 4K Lossless,H.265 (HEVC) 8K,HEVC 10-bit support,HEVC B Frame support,AV1 YUV 4:2:0
+Quadro K620,Maxwell (1st Gen),4th Gen,D,1,1,8,YES,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro K1200,Maxwell (1st Gen),4th Gen,D,1,1,8,YES,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro K2200,Maxwell (1st Gen),4th Gen,D,1,1,Unrestricted,YES,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro M600M,Maxwell (1st Gen),4th Gen,M,1,1,Unrestricted,YES,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro M620M,Maxwell (1st Gen),4th Gen,M,1,1,Unrestricted,YES,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro M1000M,Maxwell (1st Gen),4th Gen,M,1,1,Unrestricted,YES,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro M1200M,Maxwell (1st Gen),4th Gen,M,1,1,Unrestricted,YES,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro M2000M,Maxwell (1st Gen),4th Gen,M,1,1,Unrestricted,YES,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+Quadro M2000,Maxwell (GM206),5th Gen,D,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Quadro M2200M,Maxwell (GM206),5th Gen,M,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Quadro M3000,Maxwell (2nd Gen),5th Gen,M,1,2,Unrestricted,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Quadro M4000,Maxwell (2nd Gen),5th Gen,M,1,2,Unrestricted,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Quadro M5500,Maxwell (2nd Gen),5th Gen,M,1,2,Unrestricted,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Quadro M4000,Maxwell (2nd Gen),5th Gen,D,1,2,Unrestricted,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Quadro M5000,Maxwell (2nd Gen),5th Gen,D,1,2,Unrestricted,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Quadro M6000,Maxwell (2nd Gen),5th Gen,D,1,2,Unrestricted,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Quadro P400,Pascal,6th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+Quadro P600,Pascal,6th Gen,D/M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+Quadro P620,Pascal,6th Gen,D/M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+Quadro P1000,Pascal,6th Gen,D/M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+Quadro P2000,Pascal,6th Gen,D/M,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+Quadro P2200,Pascal,6th Gen,D/M,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+Quadro P3200,Pascal,6th Gen,M,1,2,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+Quadro P4200,Pascal,6th Gen,M,1,2,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+Quadro P5200,Pascal,6th Gen,M,1,2,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+Quadro P4000,Pascal,6th Gen,D,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+Quadro P5000,Pascal,6th Gen,D,1,2,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+Quadro P6000,Pascal,6th Gen,D,1,2,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+Quadro GP100,Pascal,6th Gen,D,1,3,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,NO,YES,NO,NO
+Quadro GV100,Volta,6th Gen,D,1,3,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+NVIDIA T400,Turing,6th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+NVIDIA T400 4GB,Turing,6th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+NVIDIA T550 Laptop GPU,Turing,6th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+NVIDIA T600,Turing,6th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+NVIDIA T1000,Turing,6th Gen,D/M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+NVIDIA T1000 8GB,Turing,6th Gen,D/M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+NVIDIA T600 Laptop GPU,Turing,6th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+NVIDIA T1200 Laptop GPU,Turing,6th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+Quadro T2000 Max-Q,Turing,6th Gen,M,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+Quadro T2000,Turing,6th Gen,M,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+Quadro RTX 3000 Max-Q,Turing,7th Gen,M,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+Quadro RTX 3000,Turing,7th Gen,M,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+Quadro RTX 4000 Max-Q,Turing,7th Gen,M,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+Quadro RTX 4000,Turing,7th Gen,D/M,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+Quadro RTX 5000,Turing,7th Gen,D/M,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+Quadro RTX 6000,Turing,7th Gen,D/M,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+Quadro RTX 8000,Turing,7th Gen,D/M,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA RTX A500 Laptop GPU,Ampere,7th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA RTX A1000 Laptop GPU,Ampere,7th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA RTX A2000 and A2000 8GB Laptop GPUs,Ampere,7th Gen,M,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA RTX A3000 and A3000 12GB Laptop GPUs,Ampere,7th Gen,M,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA RTX A400,Ampere,7th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA RTX A1000,Ampere,7th Gen,D,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA RTX A4000,Ampere,7th Gen,D,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA RTX A4500,Ampere,7th Gen,D,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA RTX A5000,Ampere,7th Gen,D,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA RTX A5500,Ampere,7th Gen,D,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA RTX A6000,Ampere,7th Gen,D,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA RTX A4000 Laptop GPU,Ampere,7th Gen,M,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA RTX A4500 Laptop GPU,Ampere,7th Gen,M,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA RTX A5000 Laptop GPU,Ampere,7th Gen,M,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA RTX A5500 Laptop GPU,Ampere,7th Gen,M,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA RTX A2000,Ampere,7th Gen,D,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA RTX A2000 12GB,Ampere,7th Gen,D,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA RTX A1000 6GB Laptop GPU,Ampere,7th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA RTX 500 Ada Generation Laptop GPU,Ada Lovelace,8th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+NVIDIA RTX 1000 Ada Generation Laptop GPU,Ada Lovelace,8th Gen,M,1,1,8,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+NVIDIA RTX 2000 Ada Generation Laptop GPU,Ada Lovelace,8th Gen,M,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+NVIDIA RTX 3000 Ada Generation Laptop GPU,Ada Lovelace,8th Gen,M,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+NVIDIA RTX 3500 Ada Generation Laptop GPU,Ada Lovelace,8th Gen,M,1,2,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+NVIDIA RTX 4000 Ada Generation Laptop GPU,Ada Lovelace,8th Gen,M,1,2,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+NVIDIA RTX 5000 Ada Generation Laptop GPU,Ada Lovelace,8th Gen,M,1,2,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+NVIDIA RTX 2000 Ada Generation,Ada Lovelace,8th Gen,D,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+NVIDIA RTX 4000 SFF Ada Generation,Ada Lovelace,8th Gen,D,1,2,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+NVIDIA RTX 4000 Ada Generation,Ada Lovelace,8th Gen,D,1,2,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+NVIDIA RTX 4500 Ada Generation,Ada Lovelace,8th Gen,D,1,2,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+NVIDIA RTX 5000 Ada Generation,Ada Lovelace,8th Gen,D,1,2,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+NVIDIA RTX 6000 Ada Generation,Ada Lovelace,8th Gen,D,1,3,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 500 Blackwell Generation Laptop GPU,Blackwell,9th Gen,M,1,1,Unrestricted,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 1000 Blackwell Generation Laptop GPU,Blackwell,9th Gen,M,1,1,Unrestricted,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 2000 Blackwell Generation Laptop GPU,Blackwell,9th Gen,M,1,1,Unrestricted,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 3000 Blackwell Generation Laptop GPU,Blackwell,9th Gen,M,1,1,Unrestricted,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 4000 Blackwell Generation Laptop GPU,Blackwell,9th Gen,M,1,2,Unrestricted,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 5000 Blackwell Generation Laptop GPU,Blackwell,9th Gen,M,1,3,Unrestricted,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 4000 Blackwell,Blackwell,9th Gen,D,1,2,Unrestricted,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 4500 Blackwell,Blackwell,9th Gen,D,1,2,Unrestricted,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 5000 Blackwell,Blackwell,9th Gen,D,1,3,Unrestricted,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 6000 Blackwell Max-Q Workstation Edition,Blackwell,9th Gen,D,1,4,Unrestricted,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
+NVIDIA RTX PRO 6000 Blackwell Workstation Edition,Blackwell,9th Gen,D,1,4,Unrestricted,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
diff --git a/to-be-imported/NVENC-encoding/Server.csv b/to-be-imported/NVENC-encoding/Server.csv
new file mode 100644
index 000000000..e0013825a
--- /dev/null
+++ b/to-be-imported/NVENC-encoding/Server.csv
@@ -0,0 +1,25 @@
+BOARD,FAMILY,NVENC Generation,# OF CHIPS,# OF NVENC /CHIP,Total # of NVENC,Max # of concurrent sessions,H.264 (AVCHD) YUV 4:2:0,H.264 (AVCHD) YUV 4:2:2,H.264 (AVCHD) YUV 4:4:4,H.264 (AVCHD) Lossless,H.265 (HEVC) 4K YUV 4:2:0,H.265 (HEVC) YUV 4:2:2,H.265 (HEVC) 4K YUV 4:4:4,H.265 (HEVC) 4K Lossless,H.265 (HEVC) 8K,HEVC 10-bit support,HEVC B Frame support,AV1 YUV 4:2:0
+Tesla M10,Maxwell (1st Gen),1st Gen,4,1,4,Unrestricted,YES,NO,YES,YES,NO,NO,NO,NO,NO,NO,NO,NO
+Tesla M4,Maxwell (GM206),5th Gen,1,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Tesla M40,Maxwell (2nd Gen),5th Gen,1,2,2,Unrestricted,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Tesla M6,Maxwell (2nd Gen),5th Gen,1,2,2,Unrestricted,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Tesla M60,Maxwell (2nd Gen),5th Gen,2,2,4,Unrestricted,YES,NO,YES,YES,YES,NO,NO,NO,NO,NO,NO,NO
+Tesla P4,Pascal,6th Gen,1,2,2,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+Tesla P6,Pascal,6th Gen,1,2,2,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+Tesla P40,Pascal,6th Gen,1,2,2,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+Tesla P100,Pascal,6th Gen,1,3,3,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,NO,YES,NO,NO
+Tesla V100,Volta,6th Gen,1,3,3,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+Tesla T4,Turing,7th Gen,1,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA A100,Ampere,7th Gen,0,0,0,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NO
+NVIDIA A40,Ampere,7th Gen,1,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA A30,Ampere,7th Gen,0,0,0,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NO
+NVIDIA A16,Ampere,7th Gen,4,1,4,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA A10,Ampere,7th Gen,1,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA A2,Ampere,7th Gen,1,1,1,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,NO
+NVIDIA L40,Ada Lovelace,8th Gen,1,3,3,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+NVIDIA L40S,Ada Lovelace,8th Gen,1,3,3,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+NVIDIA L4,Ada Lovelace,8th Gen,1,2,2,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,YES,YES
+NVIDIA H100 SXM,Hopper,N/A,1,0,0,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
+NVIDIA H100 PCIe,Hopper,N/A,1,0,0,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
+NVIDIA H100 NVL,Hopper,N/A,1,0,0,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
+NVIDIA RTX PRO 6000 Blackwell Server Edition,Blackwell,9th Gen,1,4,4,Unrestricted,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES
diff --git a/to-be-imported/NVENC-encoding/dgx.csv b/to-be-imported/NVENC-encoding/dgx.csv
new file mode 100644
index 000000000..7daa964e0
--- /dev/null
+++ b/to-be-imported/NVENC-encoding/dgx.csv
@@ -0,0 +1,5 @@
+BOARD,FAMILY,NVENC Generation,# OF CHIPS,# OF NVENC /CHIP,Total # of NVENC,Max # of concurrent sessions,H.264 (AVCHD) YUV 4:2:0,H.264 (AVCHD) YUV 4:2:2,H.264 (AVCHD) YUV 4:4:4,H.264 (AVCHD) Lossless,H.265 (HEVC) 4K YUV 4:2:0,H.265 (HEVC) 4K YUV 4:2:2,H.265 (HEVC) 4K YUV 4:4:4,H.265 (HEVC) 4K Lossless,H.265 (HEVC) 8K,HEVC 10-bit support,HEVC B Frame support,AV1 YUV 4:2:0
+DGX Station,Volta,6th Gen,4,3,12,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+DGX-1,Volta,6th Gen,8,3,24,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+DGX-2,Volta,6th Gen,16,3,48,Unrestricted,YES,NO,YES,YES,YES,NO,YES,YES,YES,YES,NO,NO
+DGX A100,Ampere,7th Gen,8,0,0,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
diff --git a/to-be-imported/main.php b/to-be-imported/main.php
new file mode 100644
index 000000000..31b770fb7
--- /dev/null
+++ b/to-be-imported/main.php
@@ -0,0 +1,105 @@
+ $name, 'found' => count($found), 'foundValues' => json_encode($found)]));
+ echo (PHP_EOL);
+ if (count($found) === 0) {
+ return false;
+ }
+ foreach ($found as $fileName) {
+ $generatedLines = generateLines($line);
+ $filePaths = getFilePathsForFileName($fileName, $dir);
+ foreach($filePaths as $filePath) {
+ $contents = file_get_contents($filePath);
+ $splitContents = explode("data:",$contents);
+ $newContents = $splitContents[0].'data:'.$generatedLines.$splitContents[1];
+ file_put_contents($filePath, $newContents);
+ }
+ }
+ return true;
+
+}
+
+function main(string $fileDirectory = "consumer")
+{
+ $searchFolder = __DIR__.'/../specs/GPUs-CONSUMER/Nvidia';
+ if ($fileDirectory == "consumer") {
+ $fileDirectory = __DIR__.'/NVENC-encoding/Consumer.csv';
+ $searchFolder = __DIR__.'/../specs/GPUs-CONSUMER/Nvidia';
+ } elseif ($fileDirectory =="server") {
+ $fileDirectory = __DIR__.'/NVENC-encoding/Server.csv';
+ $searchFolder = __DIR__.'/../specs/GPUs-SERVER/Nvidia';
+ } else if ($fileDirectory == "dgx") {
+ $fileDirectory = __DIR__.'/NVENC-encoding/dgx.csv';
+ $searchFolder = __DIR__.'/../specs/GPUs-SERVER/Nvidia';
+ } elseif ($fileDirectory == "professional") {
+ $fileDirectory = __DIR__.'/NVENC-encoding/Professional.csv';
+ $searchFolder = __DIR__.'/../specs/GPUs-CONSUMER/Nvidia';
+
+ }
+
+ //read csv
+ $file = $fileDirectory;
+ $csv = array_map('str_getcsv', file($file));
+ array_walk($csv, function(&$a) use ($csv) {
+ $a = array_combine($csv[0], $a);
+ });
+ array_shift($csv); # remove column header
+
+ foreach ($csv as $line) {
+ // echo 'board: '.$line["BOARD"];
+ // foreach($line as $key => $array) {
+ // echo '
key: '.var_dump($key);
+ // echo '
value'.$array;
+ // }
+
+ // seperate the /
+ // for example: GeForce GTX 960 Ti / 970 / 980
+ // find the GeForce GTX 960 Ti in the specs folder in yamls with
+ // type: Graphics Architecture
+ // look for the other variations in that same file with the match
+ // keep a log af ones it cannot find.
+ if (array_key_exists("BOARD",$line)) {
+ $line['BOARD'] = $line["BOARD"];
+ }
+ if (preg_match('/>|\//',$line["BOARD"]) === 1) {
+ $line['multipart'] = true;
+ } else {
+ $line['multipart'] = false;
+ }
+
+ if ($line['multipart'] === false) {
+ addDataToPart($line, $searchFolder);
+ } else {
+ $splitLines = splitLine($line);
+ foreach ($splitLines as $splitLine) {
+ addDataToPart($splitLine);
+ }
+ }
+
+ // same process as above for the >
+ // use regex to find the last few numbers of the name, and range it with the numbers of the last range.
+ }
+}
+
+
+main('consumer');
+main('server');
+main('dgx');
+main('professional');
diff --git a/to-be-imported/readme.md b/to-be-imported/readme.md
new file mode 100644
index 000000000..b7ca7b1af
--- /dev/null
+++ b/to-be-imported/readme.md
@@ -0,0 +1,11 @@
+source: https://developer.nvidia.com/video-encode-and-decode-gpu-support-matrix-new
+
+```yaml
+
+ AV1: true
+ Other Hardware Accelerated Media:
+ - HEVC
+ - AVC
+ - VP9
+ - XAVC-H
+```
\ No newline at end of file
diff --git a/to-be-imported/utility.php b/to-be-imported/utility.php
new file mode 100644
index 000000000..43e7529cc
--- /dev/null
+++ b/to-be-imported/utility.php
@@ -0,0 +1,149 @@
+';
+ foreach($ffs as $ff){
+ echo '