Skip to content
Draft
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
20 changes: 15 additions & 5 deletions _data/cpus.csv
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
name,brand,cpu_mark,cores,threads
Ryzen 5 5600X,AMD,0,6,12
Core i5-12400F,Intel,0,6,12
Ryzen 7 7800X3D,AMD,0,8,16
Core i7-13700K,Intel,0,16,24
Core i9-13900K,Intel,0,24,32
Ryzen 5 5600X,AMD,27054,6,12
Core i5-12400F,Intel,24102,6,12
Ryzen 7 7800X3D,AMD,42896,8,16
Core i7-13700K,Intel,49702,16,24
Core i9-13900K,Intel,61996,24,32
Ryzen 9 7950X,AMD,89316,16,32
Core i9-14900K,Intel,64883,24,32
Ryzen 5 7600X,AMD,32818,6,12
Core i5-13600K,Intel,37362,14,20
Ryzen 9 5900X,AMD,42113,12,24
Core i7-12700K,Intel,38521,12,20
Ryzen 7 5800X3D,AMD,36284,8,16
Core i9-12900K,Intel,47306,16,24
Ryzen 9 7900X,AMD,63765,12,24
Core i7-14700K,Intel,56296,20,28
16 changes: 16 additions & 0 deletions _data/gpus.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name,brand,g3d_mark,vram_gb,tdp_w
GeForce RTX 4090,NVIDIA,38683,24,450
GeForce RTX 4080,NVIDIA,31623,16,320
Radeon RX 7900 XTX,AMD,29890,24,355
GeForce RTX 4070 Ti,NVIDIA,26773,12,285
Radeon RX 7900 XT,AMD,24994,20,315
GeForce RTX 4070,NVIDIA,22088,12,200
Radeon RX 7800 XT,AMD,19985,16,263
GeForce RTX 3080,NVIDIA,20152,10,320
GeForce RTX 4060 Ti,NVIDIA,17820,8,165
Radeon RX 7700 XT,AMD,17226,12,245
GeForce RTX 4060,NVIDIA,14437,8,115
Radeon RX 6700 XT,AMD,15974,12,230
GeForce RTX 3070,NVIDIA,18236,8,220
GeForce RTX 3060 Ti,NVIDIA,16693,8,200
Radeon RX 6600 XT,AMD,13562,8,160
30 changes: 30 additions & 0 deletions gpus.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
layout: default
title: GPU Leaderboard
---

# GPU Leaderboard (PassMark G3D Mark)

<table>
<thead>
<tr>
<th>Name</th>
<th>Brand</th>
<th>Score (G3D Mark)</th>
<th>VRAM (GB)</th>
<th>TDP (W)</th>
</tr>
</thead>
<tbody>
{% assign sorted = site.data.gpus | sort: "g3d_mark" | reverse %}
{% for gpu in sorted %}
<tr>
<td>{{ gpu.name }}</td>
<td>{{ gpu.brand }}</td>
<td>{{ gpu.g3d_mark }}</td>
<td>{{ gpu.vram_gb }}</td>
<td>{{ gpu.tdp_w }}</td>
</tr>
{% endfor %}
</tbody>
</table>
1 change: 1 addition & 0 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ title: Home
# PC Benchmarks

- [CPU Leaderboard](/cpus)
- [GPU Leaderboard](/gpus)