Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ env/
# Note: data/_staging/ (raw collected candidate pool) is intentionally tracked —
# comprehensive data collection is a purpose of this repo.

# Local Wikipedia GPU backfill cache and dry-run reports (never a TechAPI write)
.wikipedia-gpu-backfill/

# Testing / coverage
.pytest_cache/
.coverage
Expand Down
4 changes: 4 additions & 0 deletions app/coverage/sources/wikipedia_gpu.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@
from .base import CoveragePoint
from .wikipedia import fetch_wikipedia_html, wikitable_first_cells

# Keep in step with ``app.ingest.sources.wikipedia_gpu.PAGES``. ``Quadro`` is
# the redirect target of ``Nvidia_Quadro``. Workstation/ATI legacy rows live
# on the AMD list; there is no separate workstation list article.
PAGES: list[tuple[str, str]] = [
("nvidia", "List_of_Nvidia_graphics_processing_units"),
("nvidia", "Quadro"),
("amd", "List_of_AMD_graphics_processing_units"),
("intel", "List_of_Intel_graphics_processing_units"),
]
Expand Down
6 changes: 6 additions & 0 deletions app/ingest/sources/wikipedia_gpu.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,14 @@
from .base import IngestCandidate
from .wikitable import parse_table

# ``Nvidia_Quadro`` redirects to ``Quadro``, whose AGP/PCI/PCIe and NVS tables
# carry Quadro4-era boards the GeForce list does not. ATI Rage/Radeon legacy
# and FireGL/FirePro/Radeon Pro workstation sections are already on
# ``List_of_AMD_graphics_processing_units``. There is no
# ``List_of_AMD_workstation_graphics_processing_units`` article.
PAGES: list[tuple[str, str, str]] = [
("nvidia", "List_of_Nvidia_graphics_processing_units", "NVIDIA GeForce"),
("nvidia", "Quadro", "NVIDIA Quadro"),
("amd", "List_of_AMD_graphics_processing_units", "AMD Radeon"),
("intel", "List_of_Intel_graphics_processing_units", "Intel Graphics"),
]
Expand Down
Loading
Loading