From edbe8b050020d13148bf987f7b5e6bc5b7499dcd Mon Sep 17 00:00:00 2001 From: Seungpyo1007 Date: Fri, 4 Sep 2026 16:29:24 +0900 Subject: [PATCH 1/3] feat(app): add local ES table importer --- .gitignore | 1 + app/ingest/from_table.py | 222 +++++++++++++++++++++++++++++++++++++++ tests/test_from_table.py | 69 ++++++++++++ 3 files changed, 292 insertions(+) create mode 100644 app/ingest/from_table.py create mode 100644 tests/test_from_table.py diff --git a/.gitignore b/.gitignore index 2344a11..3396d45 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,4 @@ site/catalog.json # Local GitHub setup helpers (not part of the catalog) .github-setup/ +tests/.tmp-from-table/ diff --git a/app/ingest/from_table.py b/app/ingest/from_table.py new file mode 100644 index 0000000..39d41b1 --- /dev/null +++ b/app/ingest/from_table.py @@ -0,0 +1,222 @@ +"""Write ES JSON from a local table (JSON/JSONL). No network. + +Rows that classify as qs/retail/unknown are skipped. Existing slugs are skipped. +""" + +from __future__ import annotations + +import argparse +import json +import re +import sys +from pathlib import Path +from typing import Any + +from app.ingest.classify import CLASS_ES, classify + +ROOT = Path(__file__).resolve().parents[2] +DATA = ROOT / "data" / "cpu" +SLUG_RE = re.compile(r"^[a-z0-9]+(?:-[a-z0-9]+)*$") + +RECORD_KEYS = ( + "slug", + "name", + "manufacturer", + "sample_class", + "qspec", + "opn", + "stepping", + "cpuid", + "sample_revision", + "retail_equivalent", + "first_seen_date", + "release_date", + "segment", + "architecture", + "socket", + "process_node", + "cores", + "threads", + "p_cores", + "e_cores", + "base_clock_ghz", + "boost_clock_ghz", + "l3_cache_mb", + "tdp_w", + "max_tdp_w", + "integrated_graphics", + "memory_support", + "msrp_usd", + "verified", + "markings", + "notes", + "source_urls", +) + + +def _kebab(value: str) -> str: + text = value.strip().lower().replace("_", "-") + text = re.sub(r"[^a-z0-9-]+", "-", text) + text = re.sub(r"-{2,}", "-", text).strip("-") + return text + + +def slug_for(row: dict[str, Any]) -> str: + if isinstance(row.get("slug"), str) and row["slug"].strip(): + return _kebab(row["slug"]) + qspec = row.get("qspec") + if isinstance(qspec, str) and qspec.strip(): + return "intel-" + _kebab(qspec) + opn = row.get("opn") + if isinstance(opn, str) and opn.strip(): + return "amd-" + _kebab(opn) + raise ValueError("row needs slug, qspec, or opn") + + +def existing_slugs() -> set[str]: + found: set[str] = set() + if not DATA.exists(): + return found + for path in DATA.rglob("*.json"): + found.add(path.stem) + return found + + +def load_rows(path: Path) -> list[dict[str, Any]]: + text = path.read_text(encoding="utf-8-sig").strip() + if not text: + return [] + if path.suffix == ".jsonl" or text[:1] != "[": + rows: list[dict[str, Any]] = [] + for line_no, line in enumerate(text.splitlines(), 1): + line = line.strip() + if not line: + continue + item = json.loads(line) + if not isinstance(item, dict): + raise ValueError(f"{path}:{line_no} is not an object") + rows.append(item) + return rows + payload = json.loads(text) + if not isinstance(payload, list): + raise ValueError(f"{path} must be a JSON array or JSONL") + return [item for item in payload if isinstance(item, dict)] + + +def _record(row: dict[str, Any], slug: str) -> dict[str, Any]: + manufacturer = str(row.get("manufacturer") or "").strip().lower() + name = str(row.get("name") or "").strip() + if not name: + ident = row.get("qspec") or row.get("opn") or slug + brand = "Intel" if manufacturer == "intel" else "AMD" + name = f"{brand} {ident} Engineering Sample" + rec: dict[str, Any] = {key: row.get(key) for key in RECORD_KEYS} + rec["slug"] = slug + rec["name"] = name + rec["manufacturer"] = manufacturer + rec["sample_class"] = CLASS_ES + rec["segment"] = str(row.get("segment") or "desktop").strip().lower() + rec["verified"] = bool(row.get("verified", False)) + rec["source_urls"] = list(row.get("source_urls") or []) + rec["markings"] = list(row.get("markings") or []) + if manufacturer == "intel" and "Intel Confidential" not in rec["markings"]: + rec["markings"].append("Intel Confidential") + if manufacturer == "amd" and "AMD Eng Sample" not in rec["markings"]: + rec["markings"].append("AMD Eng Sample") + if rec.get("qspec") == "": + rec["qspec"] = None + if rec.get("opn") == "": + rec["opn"] = None + return rec + + +def output_path(rec: dict[str, Any], year: int) -> Path: + return DATA / rec["manufacturer"] / str(year) / rec["segment"] / f"{rec['slug']}.json" + + +def ingest_rows( + rows: list[dict[str, Any]], + *, + dry_run: bool = False, +) -> dict[str, list[str]]: + tallies: dict[str, list[str]] = { + "written": [], + "duplicate": [], + "skipped-qs": [], + "skipped-retail": [], + "unknown": [], + "invalid": [], + } + seen = existing_slugs() + for row in rows: + try: + slug = slug_for(row) + except ValueError as exc: + tallies["invalid"].append(str(exc)) + continue + if not SLUG_RE.match(slug): + tallies["invalid"].append(f"{slug}: bad slug") + continue + if slug in seen: + tallies["duplicate"].append(slug) + continue + manufacturer = str(row.get("manufacturer") or "").strip().lower() + if manufacturer == "intel" and not row.get("qspec"): + row = {**row, "qspec": slug.removeprefix("intel-").upper()} + candidate = { + **row, + "slug": slug, + "name": row.get("name") or f"{slug} engineering sample", + "sample_class": "es", + } + result = classify(candidate) + if result.sample_class != CLASS_ES: + key = { + "qs": "skipped-qs", + "retail": "skipped-retail", + }.get(result.sample_class, "unknown") + tallies[key].append(f"{slug}:{result.sample_class}") + continue + year = int(row.get("year") or str(row.get("first_seen_date") or "1970")[:4]) + rec = _record(row, slug) + if result.sample_revision and not rec.get("sample_revision"): + rec["sample_revision"] = result.sample_revision + path = output_path(rec, year) + if not dry_run: + path.parent.mkdir(parents=True, exist_ok=True) + path.write_text(json.dumps(rec, indent=2) + "\n", encoding="utf-8") + seen.add(slug) + tallies["written"].append(str(path.relative_to(ROOT)).replace("\\", "/")) + return tallies + + +def print_summary(tallies: dict[str, list[str]]) -> None: + for key in ( + "written", + "duplicate", + "skipped-qs", + "skipped-retail", + "unknown", + "invalid", + ): + items = tallies[key] + print(f"{key}: {len(items)}") + for item in items[:30]: + print(f" {item}") + if len(items) > 30: + print(f" … {len(items) - 30} more") + + +def main(argv: list[str] | None = None) -> int: + parser = argparse.ArgumentParser(description="Ingest ES rows from a local JSON/JSONL table.") + parser.add_argument("table", type=Path) + parser.add_argument("--dry-run", action="store_true") + args = parser.parse_args(argv) + rows = load_rows(args.table) + tallies = ingest_rows(rows, dry_run=args.dry_run) + print_summary(tallies) + return 0 if not tallies["invalid"] else 1 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/tests/test_from_table.py b/tests/test_from_table.py new file mode 100644 index 0000000..5e7686f --- /dev/null +++ b/tests/test_from_table.py @@ -0,0 +1,69 @@ +"""from_table writes ES only and skips QS/retail/unknown.""" + +from __future__ import annotations + +import json +from pathlib import Path + +from app.ingest.from_table import ingest_rows, slug_for + + +def test_slug_from_qspec() -> None: + assert slug_for({"qspec": "QX7H"}) == "intel-qx7h" + + +def test_slug_from_opn() -> None: + assert slug_for({"opn": "100-000000665-21_N"}) == "amd-100-000000665-21-n" + + +def test_ingest_skips_qs_and_writes_es(monkeypatch) -> None: + import app.ingest.from_table as mod + + tmp_path = Path("tests/.tmp-from-table") + if tmp_path.exists(): + import shutil + + shutil.rmtree(tmp_path, ignore_errors=True) + tmp_path.mkdir(parents=True, exist_ok=True) + monkeypatch.setattr(mod, "DATA", tmp_path) + monkeypatch.setattr(mod, "ROOT", tmp_path) + rows = [ + { + "manufacturer": "intel", + "qspec": "QZZA", + "stepping": "B0", + "base_clock_ghz": 1.2, + "name": "Intel QZZA Engineering Sample", + "year": 2021, + "segment": "desktop", + "architecture": "Alder Lake", + "cores": 16, + "threads": 24, + "source_urls": ["https://example.com/es"], + }, + { + "manufacturer": "intel", + "qspec": "QDF4", + "stepping": "C0", + "base_clock_ghz": 3.2, + "retail_base_clock_ghz": 3.2, + "name": "i9-14900K QS", + "source_labels": ["qs"], + "year": 2023, + "segment": "desktop", + "architecture": "Raptor Lake", + "cores": 24, + "threads": 32, + "source_urls": ["https://example.com/qs"], + }, + ] + tallies = ingest_rows(rows) + assert any("intel-qzza" in path for path in tallies["written"]) + assert tallies["skipped-qs"] + written = tmp_path / "intel" / "2021" / "desktop" / "intel-qzza.json" + rec = json.loads(written.read_text(encoding="utf-8")) + assert rec["sample_class"] == "es" + assert rec["qspec"] == "QZZA" + import shutil + + shutil.rmtree(tmp_path, ignore_errors=True) From 1b869a5b0771feed5c2833098e31b2a685e1610c Mon Sep 17 00:00:00 2001 From: Seungpyo1007 Date: Fri, 4 Sep 2026 16:29:24 +0900 Subject: [PATCH 2/3] data(cpu): harvest LGA1700 and LGA1151 engineering samples --- data/cpu/intel/2015/desktop/intel-qh5n.json | 39 +++++++++++++++++++++ data/cpu/intel/2015/desktop/intel-qh73.json | 39 +++++++++++++++++++++ data/cpu/intel/2015/desktop/intel-qh8f.json | 39 +++++++++++++++++++++ data/cpu/intel/2015/desktop/intel-qh8g.json | 39 +++++++++++++++++++++ data/cpu/intel/2015/desktop/intel-qhje.json | 39 +++++++++++++++++++++ data/cpu/intel/2015/desktop/intel-qhqf.json | 39 +++++++++++++++++++++ data/cpu/intel/2015/desktop/intel-qhqg.json | 39 +++++++++++++++++++++ data/cpu/intel/2015/desktop/intel-qhqj.json | 39 +++++++++++++++++++++ data/cpu/intel/2015/desktop/intel-qhvx.json | 39 +++++++++++++++++++++ data/cpu/intel/2015/desktop/intel-qhvz.json | 39 +++++++++++++++++++++ data/cpu/intel/2015/desktop/intel-qhw0.json | 39 +++++++++++++++++++++ data/cpu/intel/2015/laptop/intel-qhpw.json | 39 +++++++++++++++++++++ data/cpu/intel/2015/laptop/intel-qhr7.json | 39 +++++++++++++++++++++ data/cpu/intel/2015/laptop/intel-qph7.json | 39 +++++++++++++++++++++ data/cpu/intel/2016/desktop/intel-qkyl.json | 39 +++++++++++++++++++++ data/cpu/intel/2016/desktop/intel-qkym.json | 39 +++++++++++++++++++++ data/cpu/intel/2016/desktop/intel-qkyn.json | 39 +++++++++++++++++++++ data/cpu/intel/2016/desktop/intel-ql32.json | 39 +++++++++++++++++++++ data/cpu/intel/2016/desktop/intel-ql33.json | 39 +++++++++++++++++++++ data/cpu/intel/2016/laptop/intel-ql2x.json | 39 +++++++++++++++++++++ data/cpu/intel/2016/laptop/intel-ql3x.json | 39 +++++++++++++++++++++ data/cpu/intel/2017/desktop/intel-qnbg.json | 39 +++++++++++++++++++++ data/cpu/intel/2017/desktop/intel-qnbh.json | 39 +++++++++++++++++++++ data/cpu/intel/2017/desktop/intel-qnbj.json | 39 +++++++++++++++++++++ data/cpu/intel/2017/desktop/intel-qncu.json | 39 +++++++++++++++++++++ data/cpu/intel/2017/desktop/intel-qncv.json | 39 +++++++++++++++++++++ data/cpu/intel/2017/desktop/intel-qncw.json | 39 +++++++++++++++++++++ data/cpu/intel/2017/desktop/intel-qnlu.json | 39 +++++++++++++++++++++ data/cpu/intel/2017/desktop/intel-qnlv.json | 39 +++++++++++++++++++++ data/cpu/intel/2017/desktop/intel-qnlw.json | 39 +++++++++++++++++++++ data/cpu/intel/2017/desktop/intel-qnmr.json | 39 +++++++++++++++++++++ data/cpu/intel/2017/desktop/intel-qntm.json | 39 +++++++++++++++++++++ data/cpu/intel/2017/laptop/intel-qnct.json | 39 +++++++++++++++++++++ data/cpu/intel/2017/laptop/intel-qnvh.json | 39 +++++++++++++++++++++ data/cpu/intel/2017/laptop/intel-qp87.json | 39 +++++++++++++++++++++ data/cpu/intel/2017/laptop/intel-qpqg.json | 39 +++++++++++++++++++++ data/cpu/intel/2018/desktop/intel-qqby.json | 39 +++++++++++++++++++++ data/cpu/intel/2018/desktop/intel-qqbz.json | 39 +++++++++++++++++++++ data/cpu/intel/2018/desktop/intel-qqc0.json | 39 +++++++++++++++++++++ data/cpu/intel/2018/desktop/intel-qqm5.json | 39 +++++++++++++++++++++ data/cpu/intel/2018/desktop/intel-qqm6.json | 39 +++++++++++++++++++++ data/cpu/intel/2018/desktop/intel-qqz4.json | 39 +++++++++++++++++++++ data/cpu/intel/2018/desktop/intel-qqz5.json | 39 +++++++++++++++++++++ data/cpu/intel/2018/desktop/intel-qqz6.json | 39 +++++++++++++++++++++ data/cpu/intel/2018/desktop/intel-qra1.json | 39 +++++++++++++++++++++ data/cpu/intel/2018/desktop/intel-qra2.json | 39 +++++++++++++++++++++ data/cpu/intel/2018/laptop/intel-qqls.json | 39 +++++++++++++++++++++ data/cpu/intel/2018/laptop/intel-qqlt.json | 39 +++++++++++++++++++++ data/cpu/intel/2018/laptop/intel-qtj0.json | 39 +++++++++++++++++++++ data/cpu/intel/2018/laptop/intel-qtj1.json | 39 +++++++++++++++++++++ data/cpu/intel/2018/laptop/intel-qtj2.json | 39 +++++++++++++++++++++ data/cpu/intel/2021/desktop/intel-qxdy.json | 39 +++++++++++++++++++++ data/cpu/intel/2021/desktop/intel-qxw5.json | 39 +++++++++++++++++++++ data/cpu/intel/2021/desktop/intel-qy50.json | 39 +++++++++++++++++++++ data/cpu/intel/2021/desktop/intel-qygc.json | 39 +++++++++++++++++++++ data/cpu/intel/2021/desktop/intel-qygd.json | 39 +++++++++++++++++++++ data/cpu/intel/2021/desktop/intel-qyge.json | 39 +++++++++++++++++++++ data/cpu/intel/2022/desktop/intel-q0l4.json | 39 +++++++++++++++++++++ data/cpu/intel/2022/desktop/intel-q0l5.json | 39 +++++++++++++++++++++ data/cpu/intel/2022/desktop/intel-q0l7.json | 39 +++++++++++++++++++++ data/cpu/intel/2022/desktop/intel-q0l9.json | 39 +++++++++++++++++++++ data/cpu/intel/2022/desktop/intel-q0nt.json | 39 +++++++++++++++++++++ data/cpu/intel/2022/desktop/intel-q0ps.json | 39 +++++++++++++++++++++ data/cpu/intel/2022/desktop/intel-q0pu.json | 39 +++++++++++++++++++++ data/cpu/intel/2022/desktop/intel-q0pv.json | 39 +++++++++++++++++++++ data/cpu/intel/2022/desktop/intel-q0wy.json | 39 +++++++++++++++++++++ data/cpu/intel/2022/desktop/intel-q1hm.json | 39 +++++++++++++++++++++ data/cpu/intel/2022/desktop/intel-q1hp.json | 39 +++++++++++++++++++++ data/cpu/intel/2022/desktop/intel-qyg4.json | 39 +++++++++++++++++++++ data/cpu/intel/2022/desktop/intel-qyga.json | 39 +++++++++++++++++++++ data/cpu/intel/2022/laptop/intel-q1k2.json | 39 +++++++++++++++++++++ data/cpu/intel/2022/laptop/intel-q1k3.json | 39 +++++++++++++++++++++ data/cpu/intel/2022/laptop/intel-q1k4.json | 39 +++++++++++++++++++++ data/cpu/intel/2022/laptop/intel-q1lm.json | 39 +++++++++++++++++++++ data/cpu/intel/2022/laptop/intel-q1lp.json | 39 +++++++++++++++++++++ data/cpu/intel/2022/laptop/intel-q1lq.json | 39 +++++++++++++++++++++ data/cpu/intel/2022/laptop/intel-q1lr.json | 39 +++++++++++++++++++++ 77 files changed, 3003 insertions(+) create mode 100644 data/cpu/intel/2015/desktop/intel-qh5n.json create mode 100644 data/cpu/intel/2015/desktop/intel-qh73.json create mode 100644 data/cpu/intel/2015/desktop/intel-qh8f.json create mode 100644 data/cpu/intel/2015/desktop/intel-qh8g.json create mode 100644 data/cpu/intel/2015/desktop/intel-qhje.json create mode 100644 data/cpu/intel/2015/desktop/intel-qhqf.json create mode 100644 data/cpu/intel/2015/desktop/intel-qhqg.json create mode 100644 data/cpu/intel/2015/desktop/intel-qhqj.json create mode 100644 data/cpu/intel/2015/desktop/intel-qhvx.json create mode 100644 data/cpu/intel/2015/desktop/intel-qhvz.json create mode 100644 data/cpu/intel/2015/desktop/intel-qhw0.json create mode 100644 data/cpu/intel/2015/laptop/intel-qhpw.json create mode 100644 data/cpu/intel/2015/laptop/intel-qhr7.json create mode 100644 data/cpu/intel/2015/laptop/intel-qph7.json create mode 100644 data/cpu/intel/2016/desktop/intel-qkyl.json create mode 100644 data/cpu/intel/2016/desktop/intel-qkym.json create mode 100644 data/cpu/intel/2016/desktop/intel-qkyn.json create mode 100644 data/cpu/intel/2016/desktop/intel-ql32.json create mode 100644 data/cpu/intel/2016/desktop/intel-ql33.json create mode 100644 data/cpu/intel/2016/laptop/intel-ql2x.json create mode 100644 data/cpu/intel/2016/laptop/intel-ql3x.json create mode 100644 data/cpu/intel/2017/desktop/intel-qnbg.json create mode 100644 data/cpu/intel/2017/desktop/intel-qnbh.json create mode 100644 data/cpu/intel/2017/desktop/intel-qnbj.json create mode 100644 data/cpu/intel/2017/desktop/intel-qncu.json create mode 100644 data/cpu/intel/2017/desktop/intel-qncv.json create mode 100644 data/cpu/intel/2017/desktop/intel-qncw.json create mode 100644 data/cpu/intel/2017/desktop/intel-qnlu.json create mode 100644 data/cpu/intel/2017/desktop/intel-qnlv.json create mode 100644 data/cpu/intel/2017/desktop/intel-qnlw.json create mode 100644 data/cpu/intel/2017/desktop/intel-qnmr.json create mode 100644 data/cpu/intel/2017/desktop/intel-qntm.json create mode 100644 data/cpu/intel/2017/laptop/intel-qnct.json create mode 100644 data/cpu/intel/2017/laptop/intel-qnvh.json create mode 100644 data/cpu/intel/2017/laptop/intel-qp87.json create mode 100644 data/cpu/intel/2017/laptop/intel-qpqg.json create mode 100644 data/cpu/intel/2018/desktop/intel-qqby.json create mode 100644 data/cpu/intel/2018/desktop/intel-qqbz.json create mode 100644 data/cpu/intel/2018/desktop/intel-qqc0.json create mode 100644 data/cpu/intel/2018/desktop/intel-qqm5.json create mode 100644 data/cpu/intel/2018/desktop/intel-qqm6.json create mode 100644 data/cpu/intel/2018/desktop/intel-qqz4.json create mode 100644 data/cpu/intel/2018/desktop/intel-qqz5.json create mode 100644 data/cpu/intel/2018/desktop/intel-qqz6.json create mode 100644 data/cpu/intel/2018/desktop/intel-qra1.json create mode 100644 data/cpu/intel/2018/desktop/intel-qra2.json create mode 100644 data/cpu/intel/2018/laptop/intel-qqls.json create mode 100644 data/cpu/intel/2018/laptop/intel-qqlt.json create mode 100644 data/cpu/intel/2018/laptop/intel-qtj0.json create mode 100644 data/cpu/intel/2018/laptop/intel-qtj1.json create mode 100644 data/cpu/intel/2018/laptop/intel-qtj2.json create mode 100644 data/cpu/intel/2021/desktop/intel-qxdy.json create mode 100644 data/cpu/intel/2021/desktop/intel-qxw5.json create mode 100644 data/cpu/intel/2021/desktop/intel-qy50.json create mode 100644 data/cpu/intel/2021/desktop/intel-qygc.json create mode 100644 data/cpu/intel/2021/desktop/intel-qygd.json create mode 100644 data/cpu/intel/2021/desktop/intel-qyge.json create mode 100644 data/cpu/intel/2022/desktop/intel-q0l4.json create mode 100644 data/cpu/intel/2022/desktop/intel-q0l5.json create mode 100644 data/cpu/intel/2022/desktop/intel-q0l7.json create mode 100644 data/cpu/intel/2022/desktop/intel-q0l9.json create mode 100644 data/cpu/intel/2022/desktop/intel-q0nt.json create mode 100644 data/cpu/intel/2022/desktop/intel-q0ps.json create mode 100644 data/cpu/intel/2022/desktop/intel-q0pu.json create mode 100644 data/cpu/intel/2022/desktop/intel-q0pv.json create mode 100644 data/cpu/intel/2022/desktop/intel-q0wy.json create mode 100644 data/cpu/intel/2022/desktop/intel-q1hm.json create mode 100644 data/cpu/intel/2022/desktop/intel-q1hp.json create mode 100644 data/cpu/intel/2022/desktop/intel-qyg4.json create mode 100644 data/cpu/intel/2022/desktop/intel-qyga.json create mode 100644 data/cpu/intel/2022/laptop/intel-q1k2.json create mode 100644 data/cpu/intel/2022/laptop/intel-q1k3.json create mode 100644 data/cpu/intel/2022/laptop/intel-q1k4.json create mode 100644 data/cpu/intel/2022/laptop/intel-q1lm.json create mode 100644 data/cpu/intel/2022/laptop/intel-q1lp.json create mode 100644 data/cpu/intel/2022/laptop/intel-q1lq.json create mode 100644 data/cpu/intel/2022/laptop/intel-q1lr.json diff --git a/data/cpu/intel/2015/desktop/intel-qh5n.json b/data/cpu/intel/2015/desktop/intel-qh5n.json new file mode 100644 index 0000000..044711e --- /dev/null +++ b/data/cpu/intel/2015/desktop/intel-qh5n.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qh5n", + "name": "Intel QH5N Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QH5N", + "opn": null, + "stepping": "A0", + "cpuid": "506E0", + "sample_revision": "es1", + "retail_equivalent": "xeon-e3-1230-v5", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Skylake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 4, + "threads": 8, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.6, + "boost_clock_ghz": 3.4, + "l3_cache_mb": null, + "tdp_w": 95, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Skylake A0 engineering sample (QH5N).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Skylake_(microarchitecture)" + ] +} diff --git a/data/cpu/intel/2015/desktop/intel-qh73.json b/data/cpu/intel/2015/desktop/intel-qh73.json new file mode 100644 index 0000000..08e9163 --- /dev/null +++ b/data/cpu/intel/2015/desktop/intel-qh73.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qh73", + "name": "Intel QH73 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QH73", + "opn": null, + "stepping": "A0", + "cpuid": "506E0", + "sample_revision": "es1", + "retail_equivalent": "core-i7-6400t", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Skylake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 4, + "threads": 8, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.3, + "boost_clock_ghz": 3.1, + "l3_cache_mb": null, + "tdp_w": 95, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Skylake A0 engineering sample (QH73).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Skylake_(microarchitecture)" + ] +} diff --git a/data/cpu/intel/2015/desktop/intel-qh8f.json b/data/cpu/intel/2015/desktop/intel-qh8f.json new file mode 100644 index 0000000..630a4a5 --- /dev/null +++ b/data/cpu/intel/2015/desktop/intel-qh8f.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qh8f", + "name": "Intel QH8F Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QH8F", + "opn": null, + "stepping": "A0", + "cpuid": "506E0", + "sample_revision": "es1", + "retail_equivalent": "core-i7-6400t", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Skylake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 4, + "threads": 8, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.2, + "boost_clock_ghz": 2.6, + "l3_cache_mb": null, + "tdp_w": 65, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Skylake A0 engineering sample (QH8F).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Skylake_(microarchitecture)" + ] +} diff --git a/data/cpu/intel/2015/desktop/intel-qh8g.json b/data/cpu/intel/2015/desktop/intel-qh8g.json new file mode 100644 index 0000000..977d912 --- /dev/null +++ b/data/cpu/intel/2015/desktop/intel-qh8g.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qh8g", + "name": "Intel QH8G Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QH8G", + "opn": null, + "stepping": "A0", + "cpuid": "506E0", + "sample_revision": "es1", + "retail_equivalent": "core-i7-6400t", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Skylake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 4, + "threads": 8, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.2, + "boost_clock_ghz": 2.6, + "l3_cache_mb": null, + "tdp_w": 35, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Skylake A0 engineering sample (QH8G).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Skylake_(microarchitecture)" + ] +} diff --git a/data/cpu/intel/2015/desktop/intel-qhje.json b/data/cpu/intel/2015/desktop/intel-qhje.json new file mode 100644 index 0000000..4032bac --- /dev/null +++ b/data/cpu/intel/2015/desktop/intel-qhje.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qhje", + "name": "Intel QHJE Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QHJE", + "opn": null, + "stepping": "Q0", + "cpuid": "506E1", + "sample_revision": "es1", + "retail_equivalent": "xeon-e3-1230-v5", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Skylake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 4, + "threads": 8, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.6, + "boost_clock_ghz": 3.2, + "l3_cache_mb": null, + "tdp_w": 80, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Skylake Q0 engineering sample (QHJE).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Skylake_(microarchitecture)" + ] +} diff --git a/data/cpu/intel/2015/desktop/intel-qhqf.json b/data/cpu/intel/2015/desktop/intel-qhqf.json new file mode 100644 index 0000000..a96f2aa --- /dev/null +++ b/data/cpu/intel/2015/desktop/intel-qhqf.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qhqf", + "name": "Intel QHQF Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QHQF", + "opn": null, + "stepping": "Q0", + "cpuid": "506E1", + "sample_revision": "es1", + "retail_equivalent": "core-i7-6700k", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Skylake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 4, + "threads": 8, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.6, + "boost_clock_ghz": 3.4, + "l3_cache_mb": null, + "tdp_w": 95, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Skylake Q0 engineering sample (QHQF).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Skylake_(microarchitecture)" + ] +} diff --git a/data/cpu/intel/2015/desktop/intel-qhqg.json b/data/cpu/intel/2015/desktop/intel-qhqg.json new file mode 100644 index 0000000..d51080a --- /dev/null +++ b/data/cpu/intel/2015/desktop/intel-qhqg.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qhqg", + "name": "Intel QHQG Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QHQG", + "opn": null, + "stepping": "Q0", + "cpuid": "506E1", + "sample_revision": "es1", + "retail_equivalent": "core-i7-6400t", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Skylake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 4, + "threads": 8, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.2, + "boost_clock_ghz": 2.6, + "l3_cache_mb": null, + "tdp_w": 65, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Skylake Q0 engineering sample (QHQG).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Skylake_(microarchitecture)" + ] +} diff --git a/data/cpu/intel/2015/desktop/intel-qhqj.json b/data/cpu/intel/2015/desktop/intel-qhqj.json new file mode 100644 index 0000000..1c0c8f9 --- /dev/null +++ b/data/cpu/intel/2015/desktop/intel-qhqj.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qhqj", + "name": "Intel QHQJ Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QHQJ", + "opn": null, + "stepping": "Q0", + "cpuid": "506E1", + "sample_revision": "es1", + "retail_equivalent": "core-i7-6400t", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Skylake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 4, + "threads": 8, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 1.6, + "boost_clock_ghz": 2.2, + "l3_cache_mb": null, + "tdp_w": 35, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Skylake Q0 engineering sample (QHQJ).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Skylake_(microarchitecture)" + ] +} diff --git a/data/cpu/intel/2015/desktop/intel-qhvx.json b/data/cpu/intel/2015/desktop/intel-qhvx.json new file mode 100644 index 0000000..f3d4505 --- /dev/null +++ b/data/cpu/intel/2015/desktop/intel-qhvx.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qhvx", + "name": "Intel QHVX Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QHVX", + "opn": null, + "stepping": "Q0", + "cpuid": "506E1", + "sample_revision": "es1", + "retail_equivalent": "core-i7-6400t", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Skylake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 4, + "threads": 8, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.4, + "boost_clock_ghz": 2.7, + "l3_cache_mb": null, + "tdp_w": 35, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Skylake Q0 engineering sample (QHVX).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Skylake_(microarchitecture)" + ] +} diff --git a/data/cpu/intel/2015/desktop/intel-qhvz.json b/data/cpu/intel/2015/desktop/intel-qhvz.json new file mode 100644 index 0000000..3b5231c --- /dev/null +++ b/data/cpu/intel/2015/desktop/intel-qhvz.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qhvz", + "name": "Intel QHVZ Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QHVZ", + "opn": null, + "stepping": "Q0", + "cpuid": "506E1", + "sample_revision": "es1", + "retail_equivalent": "core-i5-6400t", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Skylake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 4, + "threads": 4, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.2, + "boost_clock_ghz": 2.7, + "l3_cache_mb": null, + "tdp_w": 35, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Skylake Q0 engineering sample (QHVZ).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Skylake_(microarchitecture)" + ] +} diff --git a/data/cpu/intel/2015/desktop/intel-qhw0.json b/data/cpu/intel/2015/desktop/intel-qhw0.json new file mode 100644 index 0000000..25fcaa1 --- /dev/null +++ b/data/cpu/intel/2015/desktop/intel-qhw0.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qhw0", + "name": "Intel QHW0 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QHW0", + "opn": null, + "stepping": "Q0", + "cpuid": "506E1", + "sample_revision": "es1", + "retail_equivalent": "core-i3-6300t", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Skylake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 2, + "threads": 4, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.1, + "boost_clock_ghz": 2.1, + "l3_cache_mb": null, + "tdp_w": 35, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Skylake Q0 engineering sample (QHW0).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Skylake_(microarchitecture)" + ] +} diff --git a/data/cpu/intel/2015/laptop/intel-qhpw.json b/data/cpu/intel/2015/laptop/intel-qhpw.json new file mode 100644 index 0000000..ef4feb4 --- /dev/null +++ b/data/cpu/intel/2015/laptop/intel-qhpw.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qhpw", + "name": "Intel QHPW Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QHPW", + "opn": null, + "stepping": "Q0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": null, + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Skylake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 4, + "threads": 8, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.2, + "boost_clock_ghz": 3.0, + "l3_cache_mb": 8, + "tdp_w": 45, + "max_tdp_w": null, + "integrated_graphics": "HD 530", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Skylake Q0 engineering sample (QHPW).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Skylake_(microarchitecture)" + ] +} diff --git a/data/cpu/intel/2015/laptop/intel-qhr7.json b/data/cpu/intel/2015/laptop/intel-qhr7.json new file mode 100644 index 0000000..267dc80 --- /dev/null +++ b/data/cpu/intel/2015/laptop/intel-qhr7.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qhr7", + "name": "Intel QHR7 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QHR7", + "opn": null, + "stepping": "Q0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": null, + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Skylake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 4, + "threads": 8, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 1.6, + "boost_clock_ghz": 2.6, + "l3_cache_mb": 8, + "tdp_w": 35, + "max_tdp_w": null, + "integrated_graphics": "HD 530", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Skylake Q0 engineering sample (QHR7).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Skylake_(microarchitecture)" + ] +} diff --git a/data/cpu/intel/2015/laptop/intel-qph7.json b/data/cpu/intel/2015/laptop/intel-qph7.json new file mode 100644 index 0000000..70f56a0 --- /dev/null +++ b/data/cpu/intel/2015/laptop/intel-qph7.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qph7", + "name": "Intel QPH7 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QPH7", + "opn": null, + "stepping": "Q0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": null, + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Skylake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 4, + "threads": 8, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 1.6, + "boost_clock_ghz": 2.6, + "l3_cache_mb": 8, + "tdp_w": 35, + "max_tdp_w": null, + "integrated_graphics": "HD 530", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Skylake Q0 engineering sample (QPH7).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Skylake_(microarchitecture)" + ] +} diff --git a/data/cpu/intel/2016/desktop/intel-qkyl.json b/data/cpu/intel/2016/desktop/intel-qkyl.json new file mode 100644 index 0000000..2a2bba1 --- /dev/null +++ b/data/cpu/intel/2016/desktop/intel-qkyl.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qkyl", + "name": "Intel QKYL Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QKYL", + "opn": null, + "stepping": "A0", + "cpuid": "506E8", + "sample_revision": "es1", + "retail_equivalent": "core-i7-7700t", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Kaby Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 4, + "threads": 8, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.4, + "boost_clock_ghz": 3.0, + "l3_cache_mb": null, + "tdp_w": 35, + "max_tdp_w": null, + "integrated_graphics": "HD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Kaby Lake A0 engineering sample (QKYL).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Kaby_Lake" + ] +} diff --git a/data/cpu/intel/2016/desktop/intel-qkym.json b/data/cpu/intel/2016/desktop/intel-qkym.json new file mode 100644 index 0000000..6640d0d --- /dev/null +++ b/data/cpu/intel/2016/desktop/intel-qkym.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qkym", + "name": "Intel QKYM Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QKYM", + "opn": null, + "stepping": "A0", + "cpuid": "506E8", + "sample_revision": "es1", + "retail_equivalent": "core-i5-7400", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Kaby Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 4, + "threads": 4, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.7, + "boost_clock_ghz": 3.3, + "l3_cache_mb": null, + "tdp_w": 65, + "max_tdp_w": null, + "integrated_graphics": "HD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Kaby Lake A0 engineering sample (QKYM).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Kaby_Lake" + ] +} diff --git a/data/cpu/intel/2016/desktop/intel-qkyn.json b/data/cpu/intel/2016/desktop/intel-qkyn.json new file mode 100644 index 0000000..c377095 --- /dev/null +++ b/data/cpu/intel/2016/desktop/intel-qkyn.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qkyn", + "name": "Intel QKYN Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QKYN", + "opn": null, + "stepping": "A0", + "cpuid": "506E8", + "sample_revision": "es1", + "retail_equivalent": "core-i7-7700", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Kaby Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 4, + "threads": 8, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 3.0, + "boost_clock_ghz": 3.5, + "l3_cache_mb": null, + "tdp_w": 65, + "max_tdp_w": null, + "integrated_graphics": "HD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Kaby Lake A0 engineering sample (QKYN).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Kaby_Lake" + ] +} diff --git a/data/cpu/intel/2016/desktop/intel-ql32.json b/data/cpu/intel/2016/desktop/intel-ql32.json new file mode 100644 index 0000000..9a8788f --- /dev/null +++ b/data/cpu/intel/2016/desktop/intel-ql32.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-ql32", + "name": "Intel QL32 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QL32", + "opn": null, + "stepping": "A0", + "cpuid": "506E8", + "sample_revision": "es1", + "retail_equivalent": "xeon-e3-1230-v6", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Kaby Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 4, + "threads": 8, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 3.2, + "boost_clock_ghz": 3.7, + "l3_cache_mb": null, + "tdp_w": 74, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Kaby Lake A0 engineering sample (QL32).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Kaby_Lake" + ] +} diff --git a/data/cpu/intel/2016/desktop/intel-ql33.json b/data/cpu/intel/2016/desktop/intel-ql33.json new file mode 100644 index 0000000..f20683e --- /dev/null +++ b/data/cpu/intel/2016/desktop/intel-ql33.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-ql33", + "name": "Intel QL33 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QL33", + "opn": null, + "stepping": "A0", + "cpuid": "506E8", + "sample_revision": "es1", + "retail_equivalent": "xeon-e3-1245-v6", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Kaby Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 4, + "threads": 8, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 3.5, + "boost_clock_ghz": 3.9, + "l3_cache_mb": null, + "tdp_w": 78, + "max_tdp_w": null, + "integrated_graphics": "HD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Kaby Lake A0 engineering sample (QL33).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Kaby_Lake" + ] +} diff --git a/data/cpu/intel/2016/laptop/intel-ql2x.json b/data/cpu/intel/2016/laptop/intel-ql2x.json new file mode 100644 index 0000000..c2ae8e5 --- /dev/null +++ b/data/cpu/intel/2016/laptop/intel-ql2x.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-ql2x", + "name": "Intel QL2X Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QL2X", + "opn": null, + "stepping": "A0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i7-7820hk", + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Kaby Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 4, + "threads": 8, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.7, + "boost_clock_ghz": 3.8, + "l3_cache_mb": 8, + "tdp_w": 45, + "max_tdp_w": null, + "integrated_graphics": "HD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Kaby Lake A0 engineering sample (QL2X).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Kaby_Lake" + ] +} diff --git a/data/cpu/intel/2016/laptop/intel-ql3x.json b/data/cpu/intel/2016/laptop/intel-ql3x.json new file mode 100644 index 0000000..6c54be4 --- /dev/null +++ b/data/cpu/intel/2016/laptop/intel-ql3x.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-ql3x", + "name": "Intel QL3X Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QL3X", + "opn": null, + "stepping": "A0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i7-7820hk", + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Kaby Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 4, + "threads": 8, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.4, + "boost_clock_ghz": 3.5, + "l3_cache_mb": 8, + "tdp_w": 45, + "max_tdp_w": null, + "integrated_graphics": "HD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Kaby Lake A0 engineering sample (QL3X).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Kaby_Lake" + ] +} diff --git a/data/cpu/intel/2017/desktop/intel-qnbg.json b/data/cpu/intel/2017/desktop/intel-qnbg.json new file mode 100644 index 0000000..3dfc455 --- /dev/null +++ b/data/cpu/intel/2017/desktop/intel-qnbg.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qnbg", + "name": "Intel QNBG Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QNBG", + "opn": null, + "stepping": "U0", + "cpuid": "906EA", + "sample_revision": "es1", + "retail_equivalent": "core-i7-8700k", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 6, + "threads": 12, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 3.2, + "boost_clock_ghz": 4.1, + "l3_cache_mb": null, + "tdp_w": 95, + "max_tdp_w": null, + "integrated_graphics": "UHD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake U0 engineering sample (QNBG).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2017/desktop/intel-qnbh.json b/data/cpu/intel/2017/desktop/intel-qnbh.json new file mode 100644 index 0000000..9fd80bb --- /dev/null +++ b/data/cpu/intel/2017/desktop/intel-qnbh.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qnbh", + "name": "Intel QNBH Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QNBH", + "opn": null, + "stepping": "U0", + "cpuid": "906EA", + "sample_revision": "es1", + "retail_equivalent": "core-i7-8700", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 6, + "threads": 12, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.9, + "boost_clock_ghz": 4.0, + "l3_cache_mb": null, + "tdp_w": 65, + "max_tdp_w": null, + "integrated_graphics": "UHD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake U0 engineering sample (QNBH).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2017/desktop/intel-qnbj.json b/data/cpu/intel/2017/desktop/intel-qnbj.json new file mode 100644 index 0000000..86a1b7b --- /dev/null +++ b/data/cpu/intel/2017/desktop/intel-qnbj.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qnbj", + "name": "Intel QNBJ Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QNBJ", + "opn": null, + "stepping": "U0", + "cpuid": "906EA", + "sample_revision": "es1", + "retail_equivalent": "core-i7-8700t", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 6, + "threads": 12, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 1.6, + "boost_clock_ghz": 3.6, + "l3_cache_mb": null, + "tdp_w": 35, + "max_tdp_w": null, + "integrated_graphics": "UHD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake U0 engineering sample (QNBJ).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2017/desktop/intel-qncu.json b/data/cpu/intel/2017/desktop/intel-qncu.json new file mode 100644 index 0000000..78c31e7 --- /dev/null +++ b/data/cpu/intel/2017/desktop/intel-qncu.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qncu", + "name": "Intel QNCU Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QNCU", + "opn": null, + "stepping": "U0", + "cpuid": "906EA", + "sample_revision": "es1", + "retail_equivalent": "xeon-e-2136", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 6, + "threads": 12, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 3.5, + "boost_clock_ghz": 4.3, + "l3_cache_mb": null, + "tdp_w": 80, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake U0 engineering sample (QNCU).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2017/desktop/intel-qncv.json b/data/cpu/intel/2017/desktop/intel-qncv.json new file mode 100644 index 0000000..bdd2f4a --- /dev/null +++ b/data/cpu/intel/2017/desktop/intel-qncv.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qncv", + "name": "Intel QNCV Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QNCV", + "opn": null, + "stepping": "U0", + "cpuid": "906EA", + "sample_revision": "es1", + "retail_equivalent": "xeon-e-2176g", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 6, + "threads": 12, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 3.7, + "boost_clock_ghz": 4.3, + "l3_cache_mb": null, + "tdp_w": 95, + "max_tdp_w": null, + "integrated_graphics": "UHD P630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake U0 engineering sample (QNCV).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2017/desktop/intel-qncw.json b/data/cpu/intel/2017/desktop/intel-qncw.json new file mode 100644 index 0000000..06ce876 --- /dev/null +++ b/data/cpu/intel/2017/desktop/intel-qncw.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qncw", + "name": "Intel QNCW Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QNCW", + "opn": null, + "stepping": "U0", + "cpuid": "906EA", + "sample_revision": "es1", + "retail_equivalent": "xeon-e-2146g", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 6, + "threads": 12, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 3.4, + "boost_clock_ghz": 4.3, + "l3_cache_mb": null, + "tdp_w": 80, + "max_tdp_w": null, + "integrated_graphics": "UHD P630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake U0 engineering sample (QNCW).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2017/desktop/intel-qnlu.json b/data/cpu/intel/2017/desktop/intel-qnlu.json new file mode 100644 index 0000000..5a07a53 --- /dev/null +++ b/data/cpu/intel/2017/desktop/intel-qnlu.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qnlu", + "name": "Intel QNLU Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QNLU", + "opn": null, + "stepping": "U0", + "cpuid": "906EA", + "sample_revision": "es1", + "retail_equivalent": "core-i7-8700k", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 6, + "threads": 12, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 3.7, + "boost_clock_ghz": 4.2, + "l3_cache_mb": null, + "tdp_w": 95, + "max_tdp_w": null, + "integrated_graphics": "UHD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake U0 engineering sample (QNLU).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2017/desktop/intel-qnlv.json b/data/cpu/intel/2017/desktop/intel-qnlv.json new file mode 100644 index 0000000..745f6cd --- /dev/null +++ b/data/cpu/intel/2017/desktop/intel-qnlv.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qnlv", + "name": "Intel QNLV Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QNLV", + "opn": null, + "stepping": "U0", + "cpuid": "906EA", + "sample_revision": "es1", + "retail_equivalent": "core-i7-8700k", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 6, + "threads": 12, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 3.2, + "boost_clock_ghz": 3.6, + "l3_cache_mb": null, + "tdp_w": 95, + "max_tdp_w": null, + "integrated_graphics": "UHD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake U0 engineering sample (QNLV).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2017/desktop/intel-qnlw.json b/data/cpu/intel/2017/desktop/intel-qnlw.json new file mode 100644 index 0000000..1077793 --- /dev/null +++ b/data/cpu/intel/2017/desktop/intel-qnlw.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qnlw", + "name": "Intel QNLW Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QNLW", + "opn": null, + "stepping": "U0", + "cpuid": "906EA", + "sample_revision": "es1", + "retail_equivalent": "core-i7-8700", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 6, + "threads": 12, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 3.1, + "boost_clock_ghz": 4.2, + "l3_cache_mb": null, + "tdp_w": 65, + "max_tdp_w": null, + "integrated_graphics": "UHD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake U0 engineering sample (QNLW).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2017/desktop/intel-qnmr.json b/data/cpu/intel/2017/desktop/intel-qnmr.json new file mode 100644 index 0000000..012c093 --- /dev/null +++ b/data/cpu/intel/2017/desktop/intel-qnmr.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qnmr", + "name": "Intel QNMR Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QNMR", + "opn": null, + "stepping": "U0", + "cpuid": "906EA", + "sample_revision": "es1", + "retail_equivalent": "core-i7-8700k", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 6, + "threads": 12, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.7, + "boost_clock_ghz": 3.8, + "l3_cache_mb": null, + "tdp_w": 65, + "max_tdp_w": null, + "integrated_graphics": "UHD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake U0 engineering sample (QNMR).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2017/desktop/intel-qntm.json b/data/cpu/intel/2017/desktop/intel-qntm.json new file mode 100644 index 0000000..0a77e86 --- /dev/null +++ b/data/cpu/intel/2017/desktop/intel-qntm.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qntm", + "name": "Intel QNTM Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QNTM", + "opn": null, + "stepping": "U0", + "cpuid": "906EA", + "sample_revision": "es1", + "retail_equivalent": "xeon-e-2106g", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 6, + "threads": 6, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 3.0, + "boost_clock_ghz": 3.0, + "l3_cache_mb": null, + "tdp_w": 80, + "max_tdp_w": null, + "integrated_graphics": "UHD P630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake U0 engineering sample (QNTM).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2017/laptop/intel-qnct.json b/data/cpu/intel/2017/laptop/intel-qnct.json new file mode 100644 index 0000000..6c627fe --- /dev/null +++ b/data/cpu/intel/2017/laptop/intel-qnct.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qnct", + "name": "Intel QNCT Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QNCT", + "opn": null, + "stepping": "U0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i7-8850h", + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 6, + "threads": 12, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.4, + "boost_clock_ghz": 3.6, + "l3_cache_mb": 9, + "tdp_w": 45, + "max_tdp_w": null, + "integrated_graphics": "UHD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake U0 engineering sample (QNCT).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2017/laptop/intel-qnvh.json b/data/cpu/intel/2017/laptop/intel-qnvh.json new file mode 100644 index 0000000..bad68e8 --- /dev/null +++ b/data/cpu/intel/2017/laptop/intel-qnvh.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qnvh", + "name": "Intel QNVH Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QNVH", + "opn": null, + "stepping": "U0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i7-8850h", + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 6, + "threads": 12, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.0, + "boost_clock_ghz": 3.6, + "l3_cache_mb": 9, + "tdp_w": 45, + "max_tdp_w": null, + "integrated_graphics": "UHD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake U0 engineering sample (QNVH).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2017/laptop/intel-qp87.json b/data/cpu/intel/2017/laptop/intel-qp87.json new file mode 100644 index 0000000..acab9a6 --- /dev/null +++ b/data/cpu/intel/2017/laptop/intel-qp87.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qp87", + "name": "Intel QP87 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QP87", + "opn": null, + "stepping": "U0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i7-8750h", + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 6, + "threads": 12, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.2, + "boost_clock_ghz": 4.1, + "l3_cache_mb": 9, + "tdp_w": 45, + "max_tdp_w": null, + "integrated_graphics": "UHD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake U0 engineering sample (QP87).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2017/laptop/intel-qpqg.json b/data/cpu/intel/2017/laptop/intel-qpqg.json new file mode 100644 index 0000000..1fb58aa --- /dev/null +++ b/data/cpu/intel/2017/laptop/intel-qpqg.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qpqg", + "name": "Intel QPQG Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QPQG", + "opn": null, + "stepping": "U0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i9-8950hk", + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 6, + "threads": 12, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.9, + "boost_clock_ghz": 4.8, + "l3_cache_mb": 12, + "tdp_w": 45, + "max_tdp_w": null, + "integrated_graphics": "UHD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake U0 engineering sample (QPQG).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2018/desktop/intel-qqby.json b/data/cpu/intel/2018/desktop/intel-qqby.json new file mode 100644 index 0000000..9db6b90 --- /dev/null +++ b/data/cpu/intel/2018/desktop/intel-qqby.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qqby", + "name": "Intel QQBY Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QQBY", + "opn": null, + "stepping": "P0", + "cpuid": "906EC", + "sample_revision": "es1", + "retail_equivalent": "core-i9-9900k", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 8, + "threads": 16, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 3.1, + "boost_clock_ghz": 4.5, + "l3_cache_mb": null, + "tdp_w": 95, + "max_tdp_w": null, + "integrated_graphics": "UHD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake P0 ES. Early P0 PCIe bug on some chips.", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2018/desktop/intel-qqbz.json b/data/cpu/intel/2018/desktop/intel-qqbz.json new file mode 100644 index 0000000..7f0231e --- /dev/null +++ b/data/cpu/intel/2018/desktop/intel-qqbz.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qqbz", + "name": "Intel QQBZ Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QQBZ", + "opn": null, + "stepping": "P0", + "cpuid": "906EC", + "sample_revision": "es1", + "retail_equivalent": "core-i9-9900", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 8, + "threads": 16, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.6, + "boost_clock_ghz": 4.4, + "l3_cache_mb": null, + "tdp_w": 65, + "max_tdp_w": null, + "integrated_graphics": "UHD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake P0 engineering sample (QQBZ).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2018/desktop/intel-qqc0.json b/data/cpu/intel/2018/desktop/intel-qqc0.json new file mode 100644 index 0000000..922af6f --- /dev/null +++ b/data/cpu/intel/2018/desktop/intel-qqc0.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qqc0", + "name": "Intel QQC0 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QQC0", + "opn": null, + "stepping": "P0", + "cpuid": "906EC", + "sample_revision": "es1", + "retail_equivalent": "core-i9-9900t", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 8, + "threads": 16, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 1.7, + "boost_clock_ghz": 3.8, + "l3_cache_mb": null, + "tdp_w": 35, + "max_tdp_w": null, + "integrated_graphics": "UHD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake P0 ES. Early P0 had a known PCIe controller bug on some chips.", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2018/desktop/intel-qqm5.json b/data/cpu/intel/2018/desktop/intel-qqm5.json new file mode 100644 index 0000000..009b183 --- /dev/null +++ b/data/cpu/intel/2018/desktop/intel-qqm5.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qqm5", + "name": "Intel QQM5 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QQM5", + "opn": null, + "stepping": "P0", + "cpuid": "906EC", + "sample_revision": "es1", + "retail_equivalent": "xeon-e-2288g", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 8, + "threads": 16, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 3.1, + "boost_clock_ghz": 4.5, + "l3_cache_mb": null, + "tdp_w": 95, + "max_tdp_w": null, + "integrated_graphics": "UHD P630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake P0 engineering sample (QQM5).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2018/desktop/intel-qqm6.json b/data/cpu/intel/2018/desktop/intel-qqm6.json new file mode 100644 index 0000000..3af4f2a --- /dev/null +++ b/data/cpu/intel/2018/desktop/intel-qqm6.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qqm6", + "name": "Intel QQM6 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QQM6", + "opn": null, + "stepping": "P0", + "cpuid": "906EC", + "sample_revision": "es1", + "retail_equivalent": "xeon-e-2278g", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 8, + "threads": 16, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.6, + "boost_clock_ghz": 4.4, + "l3_cache_mb": null, + "tdp_w": 80, + "max_tdp_w": null, + "integrated_graphics": "UHD P630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake P0 engineering sample (QQM6).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2018/desktop/intel-qqz4.json b/data/cpu/intel/2018/desktop/intel-qqz4.json new file mode 100644 index 0000000..bd46832 --- /dev/null +++ b/data/cpu/intel/2018/desktop/intel-qqz4.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qqz4", + "name": "Intel QQZ4 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QQZ4", + "opn": null, + "stepping": "P0", + "cpuid": "906EC", + "sample_revision": "es1", + "retail_equivalent": "core-i9-9900k", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 8, + "threads": 16, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 3.1, + "boost_clock_ghz": 4.5, + "l3_cache_mb": null, + "tdp_w": 95, + "max_tdp_w": null, + "integrated_graphics": "UHD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake P0 engineering sample (QQZ4).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2018/desktop/intel-qqz5.json b/data/cpu/intel/2018/desktop/intel-qqz5.json new file mode 100644 index 0000000..d3b5035 --- /dev/null +++ b/data/cpu/intel/2018/desktop/intel-qqz5.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qqz5", + "name": "Intel QQZ5 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QQZ5", + "opn": null, + "stepping": "P0", + "cpuid": "906EC", + "sample_revision": "es1", + "retail_equivalent": "core-i9-9900", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 8, + "threads": 16, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.6, + "boost_clock_ghz": 4.4, + "l3_cache_mb": null, + "tdp_w": 65, + "max_tdp_w": null, + "integrated_graphics": "UHD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake P0 engineering sample (QQZ5).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2018/desktop/intel-qqz6.json b/data/cpu/intel/2018/desktop/intel-qqz6.json new file mode 100644 index 0000000..4da688f --- /dev/null +++ b/data/cpu/intel/2018/desktop/intel-qqz6.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qqz6", + "name": "Intel QQZ6 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QQZ6", + "opn": null, + "stepping": "P0", + "cpuid": "906EC", + "sample_revision": "es1", + "retail_equivalent": "core-i9-9900t", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 8, + "threads": 16, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 1.7, + "boost_clock_ghz": 3.8, + "l3_cache_mb": null, + "tdp_w": 35, + "max_tdp_w": null, + "integrated_graphics": "UHD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake P0 engineering sample (QQZ6).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2018/desktop/intel-qra1.json b/data/cpu/intel/2018/desktop/intel-qra1.json new file mode 100644 index 0000000..059819b --- /dev/null +++ b/data/cpu/intel/2018/desktop/intel-qra1.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qra1", + "name": "Intel QRA1 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QRA1", + "opn": null, + "stepping": "P0", + "cpuid": "906EC", + "sample_revision": "es1", + "retail_equivalent": "xeon-e-2288g", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 8, + "threads": 16, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 3.1, + "boost_clock_ghz": 4.5, + "l3_cache_mb": null, + "tdp_w": 95, + "max_tdp_w": null, + "integrated_graphics": "UHD P630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake P0 engineering sample (QRA1).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2018/desktop/intel-qra2.json b/data/cpu/intel/2018/desktop/intel-qra2.json new file mode 100644 index 0000000..adfb166 --- /dev/null +++ b/data/cpu/intel/2018/desktop/intel-qra2.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qra2", + "name": "Intel QRA2 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QRA2", + "opn": null, + "stepping": "P0", + "cpuid": "906EC", + "sample_revision": "es1", + "retail_equivalent": "xeon-e-2278g", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 8, + "threads": 16, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.6, + "boost_clock_ghz": 4.4, + "l3_cache_mb": null, + "tdp_w": 80, + "max_tdp_w": null, + "integrated_graphics": "UHD P630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake P0 engineering sample (QRA2).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2018/laptop/intel-qqls.json b/data/cpu/intel/2018/laptop/intel-qqls.json new file mode 100644 index 0000000..744ac25 --- /dev/null +++ b/data/cpu/intel/2018/laptop/intel-qqls.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qqls", + "name": "Intel QQLS Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QQLS", + "opn": null, + "stepping": "P0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i9-9880hk", + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 8, + "threads": 16, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.1, + "boost_clock_ghz": 4.4, + "l3_cache_mb": 16, + "tdp_w": 45, + "max_tdp_w": null, + "integrated_graphics": "UHD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake P0 engineering sample (QQLS).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2018/laptop/intel-qqlt.json b/data/cpu/intel/2018/laptop/intel-qqlt.json new file mode 100644 index 0000000..d33288f --- /dev/null +++ b/data/cpu/intel/2018/laptop/intel-qqlt.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qqlt", + "name": "Intel QQLT Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QQLT", + "opn": null, + "stepping": "P0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i9-9850hk", + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 6, + "threads": 12, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.4, + "boost_clock_ghz": 4.1, + "l3_cache_mb": 12, + "tdp_w": 45, + "max_tdp_w": null, + "integrated_graphics": "UHD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake P0 engineering sample (QQLT).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2018/laptop/intel-qtj0.json b/data/cpu/intel/2018/laptop/intel-qtj0.json new file mode 100644 index 0000000..0f1d71d --- /dev/null +++ b/data/cpu/intel/2018/laptop/intel-qtj0.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qtj0", + "name": "Intel QTJ0 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QTJ0", + "opn": null, + "stepping": "R0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i9-9880hk", + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 8, + "threads": 16, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.8, + "boost_clock_ghz": 4.7, + "l3_cache_mb": 16, + "tdp_w": 65, + "max_tdp_w": null, + "integrated_graphics": "UHD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake R0 engineering sample (QTJ0).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2018/laptop/intel-qtj1.json b/data/cpu/intel/2018/laptop/intel-qtj1.json new file mode 100644 index 0000000..2c14e66 --- /dev/null +++ b/data/cpu/intel/2018/laptop/intel-qtj1.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qtj1", + "name": "Intel QTJ1 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QTJ1", + "opn": null, + "stepping": "R0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i9-9880hk", + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 8, + "threads": 16, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.1, + "boost_clock_ghz": 4.6, + "l3_cache_mb": 16, + "tdp_w": 45, + "max_tdp_w": null, + "integrated_graphics": "UHD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake R0 engineering sample (QTJ1).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2018/laptop/intel-qtj2.json b/data/cpu/intel/2018/laptop/intel-qtj2.json new file mode 100644 index 0000000..fa6782d --- /dev/null +++ b/data/cpu/intel/2018/laptop/intel-qtj2.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qtj2", + "name": "Intel QTJ2 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QTJ2", + "opn": null, + "stepping": "R0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i7-9850h", + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Coffee Lake", + "socket": "LGA1151", + "process_node": "14 nm", + "cores": 6, + "threads": 12, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.4, + "boost_clock_ghz": 4.3, + "l3_cache_mb": 12, + "tdp_w": 45, + "max_tdp_w": null, + "integrated_graphics": "UHD 630", + "memory_support": null, + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Coffee Lake R0 engineering sample (QTJ2).", + "source_urls": [ + "https://oldrigrevive.com/lga-1151/complete-cpu-list/", + "https://en.wikipedia.org/wiki/Coffee_Lake" + ] +} diff --git a/data/cpu/intel/2021/desktop/intel-qxdy.json b/data/cpu/intel/2021/desktop/intel-qxdy.json new file mode 100644 index 0000000..0c72d92 --- /dev/null +++ b/data/cpu/intel/2021/desktop/intel-qxdy.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qxdy", + "name": "Intel QXDY Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QXDY", + "opn": null, + "stepping": "B0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i5-12600", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Alder Lake", + "socket": "LGA1700", + "process_node": "Intel 7", + "cores": 6, + "threads": 12, + "p_cores": 6, + "e_cores": 0, + "base_clock_ghz": 1.4, + "boost_clock_ghz": 4.0, + "l3_cache_mb": null, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Large B0/A0 die with E-cores disabled. Runs hotter than retail i5.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/full-es-list/", + "https://en.wikipedia.org/wiki/Alder_Lake" + ] +} diff --git a/data/cpu/intel/2021/desktop/intel-qxw5.json b/data/cpu/intel/2021/desktop/intel-qxw5.json new file mode 100644 index 0000000..cdcf98b --- /dev/null +++ b/data/cpu/intel/2021/desktop/intel-qxw5.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qxw5", + "name": "Intel QXW5 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QXW5", + "opn": null, + "stepping": "G0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i5-12400f", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Alder Lake", + "socket": "LGA1700", + "process_node": "Intel 7", + "cores": 6, + "threads": 12, + "p_cores": 6, + "e_cores": 0, + "base_clock_ghz": 2.2, + "boost_clock_ghz": 4.4, + "l3_cache_mb": null, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "G0 ES with iGPU physically disabled. No CPU PCIe 5.0.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/full-es-list/", + "https://en.wikipedia.org/wiki/Alder_Lake" + ] +} diff --git a/data/cpu/intel/2021/desktop/intel-qy50.json b/data/cpu/intel/2021/desktop/intel-qy50.json new file mode 100644 index 0000000..f510b98 --- /dev/null +++ b/data/cpu/intel/2021/desktop/intel-qy50.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qy50", + "name": "Intel QY50 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QY50", + "opn": null, + "stepping": "G0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i5-12500", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Alder Lake", + "socket": "LGA1700", + "process_node": "Intel 7", + "cores": 6, + "threads": 12, + "p_cores": 6, + "e_cores": 0, + "base_clock_ghz": 2.4, + "boost_clock_ghz": 4.3, + "l3_cache_mb": null, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Native 6-core G0 ES. No CPU PCIe 5.0 slot.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/full-es-list/", + "https://en.wikipedia.org/wiki/Alder_Lake" + ] +} diff --git a/data/cpu/intel/2021/desktop/intel-qygc.json b/data/cpu/intel/2021/desktop/intel-qygc.json new file mode 100644 index 0000000..c44fec8 --- /dev/null +++ b/data/cpu/intel/2021/desktop/intel-qygc.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qygc", + "name": "Intel QYGC Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QYGC", + "opn": null, + "stepping": "G0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i5-12500", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Alder Lake", + "socket": "LGA1700", + "process_node": "Intel 7", + "cores": 6, + "threads": 12, + "p_cores": 6, + "e_cores": 0, + "base_clock_ghz": 2.4, + "boost_clock_ghz": 4.0, + "l3_cache_mb": null, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": "UHD 770", + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Locked G0 ES. Functional UHD 770. No CPU PCIe 5.0.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/full-es-list/", + "https://en.wikipedia.org/wiki/Alder_Lake" + ] +} diff --git a/data/cpu/intel/2021/desktop/intel-qygd.json b/data/cpu/intel/2021/desktop/intel-qygd.json new file mode 100644 index 0000000..1f77567 --- /dev/null +++ b/data/cpu/intel/2021/desktop/intel-qygd.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qygd", + "name": "Intel QYGD Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QYGD", + "opn": null, + "stepping": "G0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i5-12500t", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Alder Lake", + "socket": "LGA1700", + "process_node": "Intel 7", + "cores": 6, + "threads": 12, + "p_cores": 6, + "e_cores": 0, + "base_clock_ghz": 1.6, + "boost_clock_ghz": 4.2, + "l3_cache_mb": null, + "tdp_w": 35, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "T-series G0 ES with a hard 35 W TDP cap.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/full-es-list/", + "https://en.wikipedia.org/wiki/Alder_Lake" + ] +} diff --git a/data/cpu/intel/2021/desktop/intel-qyge.json b/data/cpu/intel/2021/desktop/intel-qyge.json new file mode 100644 index 0000000..5fa4e89 --- /dev/null +++ b/data/cpu/intel/2021/desktop/intel-qyge.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qyge", + "name": "Intel QYGE Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QYGE", + "opn": null, + "stepping": "G0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i5-12600", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Alder Lake", + "socket": "LGA1700", + "process_node": "Intel 7", + "cores": 6, + "threads": 12, + "p_cores": 6, + "e_cores": 0, + "base_clock_ghz": 2.4, + "boost_clock_ghz": 4.4, + "l3_cache_mb": null, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": "UHD 770", + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Native 6-core G0 ES. No CPU PCIe 5.0 slot.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/full-es-list/", + "https://en.wikipedia.org/wiki/Alder_Lake" + ] +} diff --git a/data/cpu/intel/2022/desktop/intel-q0l4.json b/data/cpu/intel/2022/desktop/intel-q0l4.json new file mode 100644 index 0000000..4ea6557 --- /dev/null +++ b/data/cpu/intel/2022/desktop/intel-q0l4.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-q0l4", + "name": "Intel Q0L4 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "Q0L4", + "opn": null, + "stepping": "B0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i9-13900k", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Raptor Lake", + "socket": "LGA1700", + "process_node": "Intel 7", + "cores": 24, + "threads": 32, + "p_cores": 8, + "e_cores": 16, + "base_clock_ghz": 1.4, + "boost_clock_ghz": 4.6, + "l3_cache_mb": 36, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Raptor Lake ES2. Locked multiplier. PCIe Gen4 stable.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/full-es-list/", + "https://en.wikipedia.org/wiki/Raptor_Lake" + ] +} diff --git a/data/cpu/intel/2022/desktop/intel-q0l5.json b/data/cpu/intel/2022/desktop/intel-q0l5.json new file mode 100644 index 0000000..bb4c1db --- /dev/null +++ b/data/cpu/intel/2022/desktop/intel-q0l5.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-q0l5", + "name": "Intel Q0L5 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "Q0L5", + "opn": null, + "stepping": "B0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i7-13700", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Raptor Lake", + "socket": "LGA1700", + "process_node": "Intel 7", + "cores": 16, + "threads": 24, + "p_cores": 8, + "e_cores": 8, + "base_clock_ghz": 1.5, + "boost_clock_ghz": 4.5, + "l3_cache_mb": null, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Early ES2. Locked multiplier.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/full-es-list/", + "https://en.wikipedia.org/wiki/Raptor_Lake" + ] +} diff --git a/data/cpu/intel/2022/desktop/intel-q0l7.json b/data/cpu/intel/2022/desktop/intel-q0l7.json new file mode 100644 index 0000000..0d996fb --- /dev/null +++ b/data/cpu/intel/2022/desktop/intel-q0l7.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-q0l7", + "name": "Intel Q0L7 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "Q0L7", + "opn": null, + "stepping": "B0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i7-13700k", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Raptor Lake", + "socket": "LGA1700", + "process_node": "Intel 7", + "cores": 16, + "threads": 24, + "p_cores": 8, + "e_cores": 8, + "base_clock_ghz": 1.6, + "boost_clock_ghz": 5.0, + "l3_cache_mb": null, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Raptor Lake ES2 8P+8E. Unlocked multiplier.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/full-es-list/", + "https://en.wikipedia.org/wiki/Raptor_Lake" + ] +} diff --git a/data/cpu/intel/2022/desktop/intel-q0l9.json b/data/cpu/intel/2022/desktop/intel-q0l9.json new file mode 100644 index 0000000..58e988f --- /dev/null +++ b/data/cpu/intel/2022/desktop/intel-q0l9.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-q0l9", + "name": "Intel Q0L9 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "Q0L9", + "opn": null, + "stepping": "B0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i7-13700f", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Raptor Lake", + "socket": "LGA1700", + "process_node": "Intel 7", + "cores": 16, + "threads": 24, + "p_cores": 8, + "e_cores": 8, + "base_clock_ghz": 1.5, + "boost_clock_ghz": 4.9, + "l3_cache_mb": null, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "F-series ES. Some batches lock the multiplier.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/full-es-list/", + "https://en.wikipedia.org/wiki/Raptor_Lake" + ] +} diff --git a/data/cpu/intel/2022/desktop/intel-q0nt.json b/data/cpu/intel/2022/desktop/intel-q0nt.json new file mode 100644 index 0000000..a534d4e --- /dev/null +++ b/data/cpu/intel/2022/desktop/intel-q0nt.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-q0nt", + "name": "Intel Q0NT Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "Q0NT", + "opn": null, + "stepping": "B0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i9-13900k", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Raptor Lake", + "socket": "LGA1700", + "process_node": "Intel 7", + "cores": 24, + "threads": 32, + "p_cores": 8, + "e_cores": 16, + "base_clock_ghz": 1.4, + "boost_clock_ghz": 5.0, + "l3_cache_mb": 36, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Raptor Lake ES2, same class as Q0PU.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/full-es-list/", + "https://en.wikipedia.org/wiki/Raptor_Lake" + ] +} diff --git a/data/cpu/intel/2022/desktop/intel-q0ps.json b/data/cpu/intel/2022/desktop/intel-q0ps.json new file mode 100644 index 0000000..bc2acd8 --- /dev/null +++ b/data/cpu/intel/2022/desktop/intel-q0ps.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-q0ps", + "name": "Intel Q0PS Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "Q0PS", + "opn": null, + "stepping": "B0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i5-13400", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Raptor Lake", + "socket": "LGA1700", + "process_node": "Intel 7", + "cores": 10, + "threads": 16, + "p_cores": 6, + "e_cores": 4, + "base_clock_ghz": 1.8, + "boost_clock_ghz": 4.6, + "l3_cache_mb": null, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": "UHD 730", + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Budget 10-core ES. UHD 730 functional.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/full-es-list/", + "https://en.wikipedia.org/wiki/Raptor_Lake" + ] +} diff --git a/data/cpu/intel/2022/desktop/intel-q0pu.json b/data/cpu/intel/2022/desktop/intel-q0pu.json new file mode 100644 index 0000000..3bf5faf --- /dev/null +++ b/data/cpu/intel/2022/desktop/intel-q0pu.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-q0pu", + "name": "Intel Q0PU Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "Q0PU", + "opn": null, + "stepping": "B0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i9-13900k", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Raptor Lake", + "socket": "LGA1700", + "process_node": "Intel 7", + "cores": 24, + "threads": 32, + "p_cores": 8, + "e_cores": 16, + "base_clock_ghz": 1.4, + "boost_clock_ghz": 5.0, + "l3_cache_mb": 36, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Raptor Lake ES2. Unlocked multiplier.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/full-es-list/", + "https://en.wikipedia.org/wiki/Raptor_Lake" + ] +} diff --git a/data/cpu/intel/2022/desktop/intel-q0pv.json b/data/cpu/intel/2022/desktop/intel-q0pv.json new file mode 100644 index 0000000..1081a93 --- /dev/null +++ b/data/cpu/intel/2022/desktop/intel-q0pv.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-q0pv", + "name": "Intel Q0PV Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "Q0PV", + "opn": null, + "stepping": "B0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i9-13900t", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Raptor Lake", + "socket": "LGA1700", + "process_node": "Intel 7", + "cores": 24, + "threads": 32, + "p_cores": 8, + "e_cores": 16, + "base_clock_ghz": 1.0, + "boost_clock_ghz": 4.7, + "l3_cache_mb": 36, + "tdp_w": 35, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "T-series ES locked to 35 W TDP.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/full-es-list/", + "https://en.wikipedia.org/wiki/Raptor_Lake" + ] +} diff --git a/data/cpu/intel/2022/desktop/intel-q0wy.json b/data/cpu/intel/2022/desktop/intel-q0wy.json new file mode 100644 index 0000000..6079a82 --- /dev/null +++ b/data/cpu/intel/2022/desktop/intel-q0wy.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-q0wy", + "name": "Intel Q0WY Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "Q0WY", + "opn": null, + "stepping": "B0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i5-13600k", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Raptor Lake", + "socket": "LGA1700", + "process_node": "Intel 7", + "cores": 14, + "threads": 20, + "p_cores": 6, + "e_cores": 8, + "base_clock_ghz": 2.2, + "boost_clock_ghz": 4.8, + "l3_cache_mb": null, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Raptor Lake ES 6P+8E. Unlocked multiplier.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/full-es-list/", + "https://en.wikipedia.org/wiki/Raptor_Lake" + ] +} diff --git a/data/cpu/intel/2022/desktop/intel-q1hm.json b/data/cpu/intel/2022/desktop/intel-q1hm.json new file mode 100644 index 0000000..f4d6182 --- /dev/null +++ b/data/cpu/intel/2022/desktop/intel-q1hm.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-q1hm", + "name": "Intel Q1HM Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "Q1HM", + "opn": null, + "stepping": "B0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i9-13900k", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Raptor Lake", + "socket": "LGA1700", + "process_node": "Intel 7", + "cores": 24, + "threads": 32, + "p_cores": 8, + "e_cores": 16, + "base_clock_ghz": 2.2, + "boost_clock_ghz": 5.5, + "l3_cache_mb": 36, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Late ES2. Closer to retail but still an engineering sample.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/full-es-list/", + "https://en.wikipedia.org/wiki/Raptor_Lake" + ] +} diff --git a/data/cpu/intel/2022/desktop/intel-q1hp.json b/data/cpu/intel/2022/desktop/intel-q1hp.json new file mode 100644 index 0000000..46359d6 --- /dev/null +++ b/data/cpu/intel/2022/desktop/intel-q1hp.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-q1hp", + "name": "Intel Q1HP Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "Q1HP", + "opn": null, + "stepping": "B0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i9-13900f", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Raptor Lake", + "socket": "LGA1700", + "process_node": "Intel 7", + "cores": 24, + "threads": 32, + "p_cores": 8, + "e_cores": 16, + "base_clock_ghz": 1.4, + "boost_clock_ghz": 4.8, + "l3_cache_mb": 36, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "F-series ES with iGPU disabled.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/full-es-list/", + "https://en.wikipedia.org/wiki/Raptor_Lake" + ] +} diff --git a/data/cpu/intel/2022/desktop/intel-qyg4.json b/data/cpu/intel/2022/desktop/intel-qyg4.json new file mode 100644 index 0000000..2014902 --- /dev/null +++ b/data/cpu/intel/2022/desktop/intel-qyg4.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qyg4", + "name": "Intel QYG4 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QYG4", + "opn": null, + "stepping": "B0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i9-13900k", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Raptor Lake", + "socket": "LGA1700", + "process_node": "Intel 7", + "cores": 24, + "threads": 32, + "p_cores": 8, + "e_cores": 16, + "base_clock_ghz": 1.4, + "boost_clock_ghz": 5.3, + "l3_cache_mb": 36, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Mature Raptor Lake ES. High power; E-core undervolt often required.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/full-es-list/", + "https://en.wikipedia.org/wiki/Raptor_Lake" + ] +} diff --git a/data/cpu/intel/2022/desktop/intel-qyga.json b/data/cpu/intel/2022/desktop/intel-qyga.json new file mode 100644 index 0000000..cf4f010 --- /dev/null +++ b/data/cpu/intel/2022/desktop/intel-qyga.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-qyga", + "name": "Intel QYGA Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "QYGA", + "opn": null, + "stepping": "B0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i7-13700k", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Raptor Lake", + "socket": "LGA1700", + "process_node": "Intel 7", + "cores": 16, + "threads": 24, + "p_cores": 8, + "e_cores": 8, + "base_clock_ghz": 1.6, + "boost_clock_ghz": 5.0, + "l3_cache_mb": null, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Raptor Lake ES 8P+8E.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/full-es-list/", + "https://en.wikipedia.org/wiki/Raptor_Lake" + ] +} diff --git a/data/cpu/intel/2022/laptop/intel-q1k2.json b/data/cpu/intel/2022/laptop/intel-q1k2.json new file mode 100644 index 0000000..645bd5c --- /dev/null +++ b/data/cpu/intel/2022/laptop/intel-q1k2.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-q1k2", + "name": "Intel Q1K2 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "Q1K2", + "opn": null, + "stepping": "B0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i5-13500hx", + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Raptor Lake", + "socket": "BGA1964", + "process_node": "Intel 7", + "cores": 14, + "threads": 20, + "p_cores": 6, + "e_cores": 8, + "base_clock_ghz": null, + "boost_clock_ghz": 4.4, + "l3_cache_mb": 24, + "tdp_w": 55, + "max_tdp_w": null, + "integrated_graphics": "Intel UHD Graphics", + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Raptor Lake-HX ES low-frequency 13500HX sample.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/mutant-hx-processors-guide/", + "https://en.wikipedia.org/wiki/Raptor_Lake" + ] +} diff --git a/data/cpu/intel/2022/laptop/intel-q1k3.json b/data/cpu/intel/2022/laptop/intel-q1k3.json new file mode 100644 index 0000000..87640f7 --- /dev/null +++ b/data/cpu/intel/2022/laptop/intel-q1k3.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-q1k3", + "name": "Intel Q1K3 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "Q1K3", + "opn": null, + "stepping": "B0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i7-13700hx", + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Raptor Lake", + "socket": "BGA1964", + "process_node": "Intel 7", + "cores": 16, + "threads": 24, + "p_cores": 8, + "e_cores": 8, + "base_clock_ghz": null, + "boost_clock_ghz": 4.6, + "l3_cache_mb": 30, + "tdp_w": 55, + "max_tdp_w": null, + "integrated_graphics": "Intel UHD Graphics", + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Raptor Lake-HX ES. 8P+8E.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/mutant-hx-processors-guide/", + "https://en.wikipedia.org/wiki/Raptor_Lake" + ] +} diff --git a/data/cpu/intel/2022/laptop/intel-q1k4.json b/data/cpu/intel/2022/laptop/intel-q1k4.json new file mode 100644 index 0000000..32f59f0 --- /dev/null +++ b/data/cpu/intel/2022/laptop/intel-q1k4.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-q1k4", + "name": "Intel Q1K4 Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "Q1K4", + "opn": null, + "stepping": "B0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i5-13500hx", + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Raptor Lake", + "socket": "BGA1964", + "process_node": "Intel 7", + "cores": 14, + "threads": 20, + "p_cores": 6, + "e_cores": 8, + "base_clock_ghz": null, + "boost_clock_ghz": 4.6, + "l3_cache_mb": 24, + "tdp_w": 55, + "max_tdp_w": null, + "integrated_graphics": "Intel UHD Graphics", + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Raptor Lake-HX ES 13500HX sample.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/mutant-hx-processors-guide/", + "https://en.wikipedia.org/wiki/Raptor_Lake" + ] +} diff --git a/data/cpu/intel/2022/laptop/intel-q1lm.json b/data/cpu/intel/2022/laptop/intel-q1lm.json new file mode 100644 index 0000000..4fefa49 --- /dev/null +++ b/data/cpu/intel/2022/laptop/intel-q1lm.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-q1lm", + "name": "Intel Q1LM Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "Q1LM", + "opn": null, + "stepping": "B0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i9-13980hx", + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Raptor Lake", + "socket": "BGA1964", + "process_node": "Intel 7", + "cores": 24, + "threads": 32, + "p_cores": 8, + "e_cores": 16, + "base_clock_ghz": null, + "boost_clock_ghz": 5.1, + "l3_cache_mb": 36, + "tdp_w": 55, + "max_tdp_w": null, + "integrated_graphics": "Intel UHD Graphics", + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Raptor Lake-HX ES flagship sample.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/mutant-hx-processors-guide/", + "https://en.wikipedia.org/wiki/Raptor_Lake" + ] +} diff --git a/data/cpu/intel/2022/laptop/intel-q1lp.json b/data/cpu/intel/2022/laptop/intel-q1lp.json new file mode 100644 index 0000000..cdba61c --- /dev/null +++ b/data/cpu/intel/2022/laptop/intel-q1lp.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-q1lp", + "name": "Intel Q1LP Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "Q1LP", + "opn": null, + "stepping": "B0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i9-13950hx", + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Raptor Lake", + "socket": "BGA1964", + "process_node": "Intel 7", + "cores": 24, + "threads": 32, + "p_cores": 8, + "e_cores": 16, + "base_clock_ghz": null, + "boost_clock_ghz": 4.8, + "l3_cache_mb": 36, + "tdp_w": 55, + "max_tdp_w": null, + "integrated_graphics": "Intel UHD Graphics", + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Raptor Lake-HX ES. 8P+16E.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/mutant-hx-processors-guide/", + "https://en.wikipedia.org/wiki/Raptor_Lake" + ] +} diff --git a/data/cpu/intel/2022/laptop/intel-q1lq.json b/data/cpu/intel/2022/laptop/intel-q1lq.json new file mode 100644 index 0000000..a6e3d54 --- /dev/null +++ b/data/cpu/intel/2022/laptop/intel-q1lq.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-q1lq", + "name": "Intel Q1LQ Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "Q1LQ", + "opn": null, + "stepping": "B0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i7-13850hx", + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Raptor Lake", + "socket": "BGA1964", + "process_node": "Intel 7", + "cores": 20, + "threads": 28, + "p_cores": 8, + "e_cores": 12, + "base_clock_ghz": null, + "boost_clock_ghz": 4.6, + "l3_cache_mb": 30, + "tdp_w": 55, + "max_tdp_w": null, + "integrated_graphics": "Intel UHD Graphics", + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Raptor Lake-HX ES. 8P+12E.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/mutant-hx-processors-guide/", + "https://en.wikipedia.org/wiki/Raptor_Lake" + ] +} diff --git a/data/cpu/intel/2022/laptop/intel-q1lr.json b/data/cpu/intel/2022/laptop/intel-q1lr.json new file mode 100644 index 0000000..eb32494 --- /dev/null +++ b/data/cpu/intel/2022/laptop/intel-q1lr.json @@ -0,0 +1,39 @@ +{ + "slug": "intel-q1lr", + "name": "Intel Q1LR Engineering Sample", + "manufacturer": "intel", + "sample_class": "es", + "qspec": "Q1LR", + "opn": null, + "stepping": "B0", + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "core-i7-13650hx", + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Raptor Lake", + "socket": "BGA1964", + "process_node": "Intel 7", + "cores": 14, + "threads": 20, + "p_cores": 6, + "e_cores": 8, + "base_clock_ghz": null, + "boost_clock_ghz": 4.4, + "l3_cache_mb": 24, + "tdp_w": 55, + "max_tdp_w": null, + "integrated_graphics": "Intel UHD Graphics", + "memory_support": "DDR5 / DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "Intel Confidential" + ], + "notes": "Raptor Lake-HX ES. 6P+8E. 55 W mobile sample.", + "source_urls": [ + "https://oldrigrevive.com/lga1700/mutant-hx-processors-guide/", + "https://en.wikipedia.org/wiki/Raptor_Lake" + ] +} From 2aba6900f5142e47b2d9d40831dce0b533ed580f Mon Sep 17 00:00:00 2001 From: Seungpyo1007 Date: Fri, 4 Sep 2026 16:29:24 +0900 Subject: [PATCH 3/3] data(cpu): add AMD Eng Sample OPNs and Raptor Lake-HX ES --- .../amd/2016/desktop/amd-1d2801a2m88e4.json | 39 +++++++++++++++++++ .../amd/2016/desktop/amd-2d2801a2m88e4.json | 39 +++++++++++++++++++ .../amd/2019/desktop/amd-2d3212bgmcwh2.json | 39 +++++++++++++++++++ .../2020/desktop/amd-100-000000059-15.json | 39 +++++++++++++++++++ .../2020/desktop/amd-100-000000059-52.json | 39 +++++++++++++++++++ .../amd/2022/laptop/amd-100-000000561-40.json | 39 +++++++++++++++++++ .../amd/2023/laptop/amd-100-000001312-50.json | 39 +++++++++++++++++++ .../amd/2023/laptop/amd-100-000001322-50.json | 39 +++++++++++++++++++ 8 files changed, 312 insertions(+) create mode 100644 data/cpu/amd/2016/desktop/amd-1d2801a2m88e4.json create mode 100644 data/cpu/amd/2016/desktop/amd-2d2801a2m88e4.json create mode 100644 data/cpu/amd/2019/desktop/amd-2d3212bgmcwh2.json create mode 100644 data/cpu/amd/2020/desktop/amd-100-000000059-15.json create mode 100644 data/cpu/amd/2020/desktop/amd-100-000000059-52.json create mode 100644 data/cpu/amd/2022/laptop/amd-100-000000561-40.json create mode 100644 data/cpu/amd/2023/laptop/amd-100-000001312-50.json create mode 100644 data/cpu/amd/2023/laptop/amd-100-000001322-50.json diff --git a/data/cpu/amd/2016/desktop/amd-1d2801a2m88e4.json b/data/cpu/amd/2016/desktop/amd-1d2801a2m88e4.json new file mode 100644 index 0000000..d43b3b9 --- /dev/null +++ b/data/cpu/amd/2016/desktop/amd-1d2801a2m88e4.json @@ -0,0 +1,39 @@ +{ + "slug": "amd-1d2801a2m88e4", + "name": "AMD Eng Sample 1D2801A2M88E4", + "manufacturer": "amd", + "sample_class": "es", + "qspec": null, + "opn": "1D2801A2M88E4", + "stepping": null, + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "ryzen-7-1800x", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Zen", + "socket": "AM4", + "process_node": "14 nm", + "cores": 8, + "threads": 16, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.8, + "boost_clock_ghz": 3.2, + "l3_cache_mb": null, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "AMD Eng Sample" + ], + "notes": "Summit Ridge ES1. Prefix 1. 2.8/3.2 GHz in Ashes of the Singularity listings.", + "source_urls": [ + "https://www.guru3d.com/story/amd-zen-engineering-sample-shows-promising-perf/", + "https://en.wikipedia.org/wiki/Zen_(microarchitecture)" + ] +} diff --git a/data/cpu/amd/2016/desktop/amd-2d2801a2m88e4.json b/data/cpu/amd/2016/desktop/amd-2d2801a2m88e4.json new file mode 100644 index 0000000..4b4a640 --- /dev/null +++ b/data/cpu/amd/2016/desktop/amd-2d2801a2m88e4.json @@ -0,0 +1,39 @@ +{ + "slug": "amd-2d2801a2m88e4", + "name": "AMD Eng Sample 2D2801A2M88E4", + "manufacturer": "amd", + "sample_class": "es", + "qspec": null, + "opn": "2D2801A2M88E4", + "stepping": null, + "cpuid": null, + "sample_revision": "es2", + "retail_equivalent": "ryzen-7-1800x", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Zen", + "socket": "AM4", + "process_node": "14 nm", + "cores": 8, + "threads": 16, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 2.8, + "boost_clock_ghz": 3.2, + "l3_cache_mb": null, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "AMD Eng Sample" + ], + "notes": "Summit Ridge ES2. Prefix 2. Same 2.8/3.2 GHz sample clocks as the ES1 sibling.", + "source_urls": [ + "https://www.guru3d.com/story/amd-zen-engineering-sample-shows-promising-perf/", + "https://en.wikipedia.org/wiki/Zen_(microarchitecture)" + ] +} diff --git a/data/cpu/amd/2019/desktop/amd-2d3212bgmcwh2.json b/data/cpu/amd/2019/desktop/amd-2d3212bgmcwh2.json new file mode 100644 index 0000000..3d7c69e --- /dev/null +++ b/data/cpu/amd/2019/desktop/amd-2d3212bgmcwh2.json @@ -0,0 +1,39 @@ +{ + "slug": "amd-2d3212bgmcwh2", + "name": "AMD Eng Sample 2D3212BGMCWH2", + "manufacturer": "amd", + "sample_class": "es", + "qspec": null, + "opn": "2D3212BGMCWH2", + "stepping": null, + "cpuid": null, + "sample_revision": "es2", + "retail_equivalent": "ryzen-9-3900x", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Zen 2", + "socket": "AM4", + "process_node": "TSMC 7 nm", + "cores": 12, + "threads": 24, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 3.4, + "boost_clock_ghz": 3.7, + "l3_cache_mb": null, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "AMD Eng Sample" + ], + "notes": "Matisse 12C ES2. UserBenchmark OPN 2D3212BGMCWH2_37/34_N.", + "source_urls": [ + "https://www.techspot.com/news/78452-amd-next-12-core-cpu-appears-benchmark-database.html", + "https://en.wikipedia.org/wiki/Zen_2" + ] +} diff --git a/data/cpu/amd/2020/desktop/amd-100-000000059-15.json b/data/cpu/amd/2020/desktop/amd-100-000000059-15.json new file mode 100644 index 0000000..497eabf --- /dev/null +++ b/data/cpu/amd/2020/desktop/amd-100-000000059-15.json @@ -0,0 +1,39 @@ +{ + "slug": "amd-100-000000059-15", + "name": "AMD Eng Sample 100-000000059-15", + "manufacturer": "amd", + "sample_class": "es", + "qspec": null, + "opn": "100-000000059-15", + "stepping": null, + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "ryzen-9-5950x", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Zen 3", + "socket": "AM4", + "process_node": "TSMC 7 nm", + "cores": 16, + "threads": 32, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 3.7, + "boost_clock_ghz": 4.6, + "l3_cache_mb": null, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "AMD Eng Sample" + ], + "notes": "Vermeer 16C ES. OPN clock field 46/37, N suffix.", + "source_urls": [ + "https://videocardz.com/newz/amd-16-core-zen3-ryzen-9-4950x-engineering-sample-boosts-up-to-4-9-ghz", + "https://en.wikipedia.org/wiki/Zen_3" + ] +} diff --git a/data/cpu/amd/2020/desktop/amd-100-000000059-52.json b/data/cpu/amd/2020/desktop/amd-100-000000059-52.json new file mode 100644 index 0000000..c90d600 --- /dev/null +++ b/data/cpu/amd/2020/desktop/amd-100-000000059-52.json @@ -0,0 +1,39 @@ +{ + "slug": "amd-100-000000059-52", + "name": "AMD Eng Sample 100-000000059-52", + "manufacturer": "amd", + "sample_class": "es", + "qspec": null, + "opn": "100-000000059-52", + "stepping": null, + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "ryzen-9-5950x", + "first_seen_date": null, + "release_date": null, + "segment": "desktop", + "architecture": "Zen 3", + "socket": "AM4", + "process_node": "TSMC 7 nm", + "cores": 16, + "threads": 32, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": 3.5, + "boost_clock_ghz": 4.8, + "l3_cache_mb": null, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "DDR4", + "msrp_usd": null, + "verified": false, + "markings": [ + "AMD Eng Sample" + ], + "notes": "Vermeer 16C ES. OPN clock field 48/35.", + "source_urls": [ + "https://videocardz.com/newz/amd-16-core-zen3-ryzen-9-4950x-engineering-sample-boosts-up-to-4-9-ghz", + "https://en.wikipedia.org/wiki/Zen_3" + ] +} diff --git a/data/cpu/amd/2022/laptop/amd-100-000000561-40.json b/data/cpu/amd/2022/laptop/amd-100-000000561-40.json new file mode 100644 index 0000000..4ef5700 --- /dev/null +++ b/data/cpu/amd/2022/laptop/amd-100-000000561-40.json @@ -0,0 +1,39 @@ +{ + "slug": "amd-100-000000561-40", + "name": "AMD Eng Sample 100-000000561-40", + "manufacturer": "amd", + "sample_class": "es", + "qspec": null, + "opn": "100-000000561-40", + "stepping": null, + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "ryzen-7-6800h", + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Zen 3+", + "socket": "FP7", + "process_node": "TSMC 6 nm", + "cores": 8, + "threads": 16, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": null, + "boost_clock_ghz": null, + "l3_cache_mb": null, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "LPDDR5 / DDR5", + "msrp_usd": null, + "verified": false, + "markings": [ + "AMD Eng Sample" + ], + "notes": "Rembrandt 6800H engineering sample (OPN 100-000000561-40 / 100-00000561-40).", + "source_urls": [ + "https://pcforum.amd.com/s/question/0D5Pd00000v5McEKAU/amd-eng-sample", + "https://en.wikipedia.org/wiki/Zen_3" + ] +} diff --git a/data/cpu/amd/2023/laptop/amd-100-000001312-50.json b/data/cpu/amd/2023/laptop/amd-100-000001312-50.json new file mode 100644 index 0000000..955d354 --- /dev/null +++ b/data/cpu/amd/2023/laptop/amd-100-000001312-50.json @@ -0,0 +1,39 @@ +{ + "slug": "amd-100-000001312-50", + "name": "AMD Eng Sample 100-000001312-50", + "manufacturer": "amd", + "sample_class": "es", + "qspec": null, + "opn": "100-000001312-50", + "stepping": null, + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "ryzen-7-8840u", + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Zen 4", + "socket": "FP7", + "process_node": "TSMC 4 nm", + "cores": 8, + "threads": 16, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": null, + "boost_clock_ghz": null, + "l3_cache_mb": null, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "LPDDR5X / DDR5", + "msrp_usd": null, + "verified": false, + "markings": [ + "AMD Eng Sample" + ], + "notes": "Hawk Point 8840U engineering sample per CPU-World identification cited on AMD forums.", + "source_urls": [ + "https://pcforum.amd.com/s/question/0D5Pd00000v5McEKAU/amd-eng-sample", + "https://en.wikipedia.org/wiki/Zen_4" + ] +} diff --git a/data/cpu/amd/2023/laptop/amd-100-000001322-50.json b/data/cpu/amd/2023/laptop/amd-100-000001322-50.json new file mode 100644 index 0000000..6641190 --- /dev/null +++ b/data/cpu/amd/2023/laptop/amd-100-000001322-50.json @@ -0,0 +1,39 @@ +{ + "slug": "amd-100-000001322-50", + "name": "AMD Eng Sample 100-000001322-50", + "manufacturer": "amd", + "sample_class": "es", + "qspec": null, + "opn": "100-000001322-50", + "stepping": null, + "cpuid": null, + "sample_revision": "es1", + "retail_equivalent": "ryzen-7-8845hs", + "first_seen_date": null, + "release_date": null, + "segment": "laptop", + "architecture": "Zen 4", + "socket": "FP7", + "process_node": "TSMC 4 nm", + "cores": 8, + "threads": 16, + "p_cores": null, + "e_cores": null, + "base_clock_ghz": null, + "boost_clock_ghz": null, + "l3_cache_mb": null, + "tdp_w": null, + "max_tdp_w": null, + "integrated_graphics": null, + "memory_support": "LPDDR5X / DDR5", + "msrp_usd": null, + "verified": false, + "markings": [ + "AMD Eng Sample" + ], + "notes": "Hawk Point / 8845HS engineering sample per CPU-World identification cited on AMD forums.", + "source_urls": [ + "https://pcforum.amd.com/s/question/0D5Pd00000v5McEKAU/amd-eng-sample", + "https://en.wikipedia.org/wiki/Zen_4" + ] +}