diff --git a/_data/cpus.csv b/_data/cpus.csv index e60dfc2..bcfac2d 100644 --- a/_data/cpus.csv +++ b/_data/cpus.csv @@ -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 diff --git a/_data/gpus.csv b/_data/gpus.csv new file mode 100644 index 0000000..d5567fe --- /dev/null +++ b/_data/gpus.csv @@ -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 diff --git a/gpus.md b/gpus.md new file mode 100644 index 0000000..3ecae42 --- /dev/null +++ b/gpus.md @@ -0,0 +1,30 @@ +--- +layout: default +title: GPU Leaderboard +--- + +# GPU Leaderboard (PassMark G3D Mark) + + + + + + + + + + + + + {% assign sorted = site.data.gpus | sort: "g3d_mark" | reverse %} + {% for gpu in sorted %} + + + + + + + + {% endfor %} + +
NameBrandScore (G3D Mark)VRAM (GB)TDP (W)
{{ gpu.name }}{{ gpu.brand }}{{ gpu.g3d_mark }}{{ gpu.vram_gb }}{{ gpu.tdp_w }}
diff --git a/index.md b/index.md index 1ad1942..3c98e51 100644 --- a/index.md +++ b/index.md @@ -6,3 +6,4 @@ title: Home # PC Benchmarks - [CPU Leaderboard](/cpus) +- [GPU Leaderboard](/gpus)