-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1373 lines (1282 loc) · 76 KB
/
Copy pathindex.html
File metadata and controls
1373 lines (1282 loc) · 76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Phiphou config</title>
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="https://config.phiphou.com/" />
<meta name="twitter:creator" content="@__phiphou__" />
<meta property="og:url" content="https://config.phiphou.com/" />
<meta property="og:title" content="Phiphou's config" />
<meta property="og:description" content="My config" />
<meta property="og:image" content="https://config.phiphou.com/images/gears.jpg" />
</head>
<body class="bg-slate-900 md:px-2 p-2 lg:px-6 text-[17] md:text-md">
<div class="container mx-auto p-2 md:px-0 lg:px-6 ">
<div class="grid grid-cols-1 gap-6">
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-4 items-center justify-between">
<div class="flex">
<img class="rounded-full inline-block mr-4 max-w-none w-16 h-16 border-double
border-2 border-white" src="/images/gears.jpg" />
<div class="flex flex-col pt-4">
<span class="inline-block text-2xl font-bold dark:text-white">My Config</span>
</div>
</div>
</div>
<div
class="dark:text-slate-200 pt-2 font-bold grid grid-cols-1 md:grid-cols-2 justify-between gap-4 md:gap-x-10">
<a href=" https://www.fractal-design.com/products/cases/define/define-7/black-solid/"
target="_blank">
<p class="md:inline">Case :<br class="md:hidden"> Fractal Design Define 7 Solid Black</p>
</a>
<a href="https://www.bequiet.com/en/powersupply/4046" target="_blank">
<p class="md:inline">Power supply :<br class="md:hidden"> BeQuiet Dark Pro 13 1000W</p>
</a>
<a href="https://www.msi.com/Motherboard/MAG-X670E-TOMAHAWK-WIFI" target="_blank">
<p class="md:inline">Motherboard :<br class="md:hidden"> MSI MAG X670E TOMAHAWK WIFI, PBO & EXPO
enabled</p>
</a>
<a href="https://www.amd.com/en/products/processors/desktops/ryzen/7000-series/amd-ryzen-9-7900x.html"
target="_blank">
<p class="md:inline">CPU :<br class="md:hidden"> AMD Ryzen 7900X (4.7/5.4GHz, 12c/24t)</p>
</a>
<a href="https://www.bequiet.com/en/cpucooler/4466" target="_blank">
<p class="md:inline">Cooler :<br class="md:hidden"> Be Quiet Dark Rock Pro 5 (quiet mode)</p>
</a>
<a href="https://www.corsair.com/us/en/p/memory/cmk64gx5m2b6400c32/vengeance-64gb-2x32gb-ddr5-dram-6400mhz-c32-memory-kit-black-cmk64gx5m2b6400c32"
target="_blank">
<p class="md:inline">RAM :<br class="md:hidden"> 2x32Go DDR5 Corsair Vengeance 6400MT/s CL32</p>
</a>
<a href="https://www.samsung.com/us/computing/memory-storage/solid-state-drives/990-pro-pcie-4-0-nvme-ssd-2tb-mz-v9p2t0b-am/"
target="_blank">
<p class="md:inline">Main storage :<br class="md:hidden"> SSD Nvme Samsung 990 Pro 2To (x2)</p>
</a>
<a href="https://www.crucial.com/ssd/mx500/CT4000MX500SSD1" target="_blank">
<p class="md:inline">Additional storage :<br class="md:hidden"> SSD SATA Crucial MX 500 4To (x2)
RAID 0</p>
</a>
<a href="https://www.bequiet.com/en/casefans/3703" target="_blank">
<p class="md:inline">Additional cooling :<br class="md:hidden"> Be Quiet Silent Wings 4 PWM
140mm (x3, 500RPM)</p>
</a>
<a href="https://www.microsoft.com/en-us/windows/business/windows-11-pro" target="_blank">
<p class="md:inline">Operating system :<br class="md:hidden"> Microsoft Windows 11 Pro 24H2</p>
</a>
</div>
</article>
<article class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-6 ">
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://www.guru3d.com/download/cinebench-15-download/" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/maxon.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">Cinebench
R15</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>Mono-thread : 313pts</p>
<p>Multi-threads : 4819pts</p>
<p>OpenCL : 70.05pts</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://www.guru3d.com/download/download-maxon-cinebench-r20/" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/maxon.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">Cinebench
R20</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>Mono-thread : 751pts</p>
<p>Multi-threads : 11259pts</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://www.guru3d.com/download/download-maxon-cinebench-r23/" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/maxon.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">Cinebench
R23</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>Mono-thread : 1963pts</p>
<p>Multi-threads : 28579pts</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://www.maxon.net/en/downloads/cinebench-2024-downloads" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/maxon.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">Cinebench
2024</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>Mono-thread : 118pts</p>
<p>Multi-threads : 1637pts</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://github.com/mbntr/PYPrime-2.x" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/python.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">Py-Prime
2.0</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>1B : 5.205s</p>
<p>2B : 11.723s</p>
<p>4B : 25.232s</p>
<p>8B : 52.049s</p>
<p>16B : 105.715s</p>
<p>32B : 215.739s</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://crystalmark.info/en/software/crystaldiskmark/" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/crystaldisk.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">Crystal Disk
8.0.6 NVMe</span>
</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p> Sequential 1M read (MB/s) : 7442.23</p>
<p> Random 4k read (MB/s) : 755.05</p>
<p> Sequential 1M write (MB/s) : 6919.06</p>
<p> Random 4k write (MB/s) : 604.17</p>
<p> Random 4k read (IOPS) : 184 338</p>
<p> Random 4k write (IOPS) : 147 504</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://crystalmark.info/en/software/crystaldiskmark/" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/crystaldisk.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">Crystal Disk
8.0.6 SATA</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p> Sequential 1M read (MB/s) : 1113.62</p>
<p> Random 4k read (MB/s) : 450.51</p>
<p> Sequential 1M write (MB/s) : 1005.29</p>
<p> Random 4k write (MB/s) : 433.98</p>
<p> Random 4k read (IOPS) : 105 724</p>
<p> Random 4k write (IOPS) : 103 260</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="http://www.numberworld.org/y-cruncher/#Download" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/pi.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">Y-cruncher
0.8.5.9543 π</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>100M RAM (π/S2E) : 1.21/1.57</p>
<p>500M RAM (π/S2E) : 7.22/8.75</p>
<p>1B RAM (π/S2E) : 14.63/16.50</p>
<p>5B RAM (π/S2E) : 95.28/119.67</p>
<p>10B RAM (π/S2E) : 205.44/247.61</p>
<p>100B NVme (π/S2E) : 10857/11900</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="http://www.numberworld.org/y-cruncher/#Download" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/phi.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">Y-cruncher
0.8.5.9543 Φ
</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>1B RAM (Φ/S2E) : 0.55/3.49</p>
<p>2B RAM (Φ/S2E) : 1.13/7.10</p>
<p>5B RAM (Φ/S2E) : 2.76/18.18</p>
<p>10B RAM (Φ/S2E) : 5.87/37.63</p>
<p>100B NVme (Φ/S2E) : 526.1/1860 </p>
<p>500B NVme+SATA (Φ/S2E) : 4778/17787 </p>
<!-- <p>500B SATA (Φ/S2E) : 12623/44526 </p> -->
<p>1000B SATA (Φ/S2E) : 26116/72061</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="http://www.numberworld.org/y-cruncher/#Download" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/sqrt2.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">Y-cruncher
0.8.5.9543 √2
</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>1B RAM (√2/S2E) : 0.50/3.45</p>
<p>2B RAM (√2/S2E) : 1.03/6.96</p>
<p>5B RAM (√2/S2E) : 2.50/17.96</p>
<p>10B RAM (√2/S2E) : 5.52/37.17</p>
<p>100B NVme (√2/S2E) : 575.8/1913</p>
<p>500B NVme+SATA (√2/S2E) : 4316/17404</p>
<!-- <p>500B SATA (√2/S2E) : 11568/43179</p> -->
<p>1000B SATA (√2/S2E) : 23897/65671</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="http://www.numberworld.org/y-cruncher/#Download" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/log.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">Y-cruncher
0.8.5.9543 log10
</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>100M RAM (log10/S2E) : 3.89/4.53</p>
<p>500M RAM (log10/S2E) : 22.73/25.12</p>
<p>1B RAM (log10/S2E) : 49.42/53.34</p>
<p>2B RAM (log10/S2E) : 106.81/114.49</p>
<p>5B RAM (log10/S2E) : 303.24/326.39</p>
<p>10B RAM (log10/S2E) : 686/728</p>
<p>100B NVme (log10/S2E) : 24762/26092</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="http://www.numberworld.org/y-cruncher/#Download" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/lemniscate.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">Y-cruncher
0.8.5.9543 ∞
</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>100M RAM (∞/S2E) : 2.22/2.59</p>
<p>500M RAM (∞/S2E) : 13.31/14.81</p>
<p>1B RAM (∞/S2E) : 28.79/31.77</p>
<p>2B RAM (∞/S2E) : 62.66/68.73</p>
<p>5B RAM (∞/S2E) : 175.23/191.09</p>
<p>10B RAM (∞/S2E) :398/441</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="http://www.numberworld.org/y-cruncher/#Download" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/apery.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">Y-cruncher
0.8.5.9543 ζ(3)
</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>100M RAM (ζ(3)/S2E) : 4.09/4.48</p>
<p>500M RAM (ζ(3)/S2E) : 25.29/26.84</p>
<p>1B RAM (ζ(3)/S2E) : 56.26/59.22</p>
<p>2B RAM (ζ(3)/S2E) : 124.13/131.15</p>
<p>5B RAM (ζ(3)/S2E) : 358.13/372.62</p>
<p>10B RAM (ζ(3)/S2E) :810/856</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="http://www.numberworld.org/y-cruncher/#Download" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/catalan.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">Y-cruncher
0.8.5.9543 β(2)
</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>100M RAM (β(2)/S2E) : 6.75/7.11</p>
<p>500M RAM (β(2)/S2E) : 41.08/42.62</p>
<p>1B RAM (β(2)/S2E) : 92.62/95.66</p>
<p>2B RAM (β(2)/S2E) : 204.76/211.14</p>
<p>5B RAM (β(2)/S2E) : 582.21/597.99</p>
<p>10B RAM (β(2)/S2E) :1306/1341</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="http://www.numberworld.org/y-cruncher/#Download" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/catalan.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">Y-cruncher
0.8.5.9543 γ
</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>100M RAM (γ/S2E) : 29.57/29.95</p>
<p>500M RAM (γ/S2E) : 224.19/225.88</p>
<p>1B RAM (γ/S2E) : 473.27/476.52</p>
<p>2B RAM (γ/S2E) : 1045/1051</p>
<p>5B RAM (γ/S2E) : 2748/2767</p>
<p>10B NVme (γ/S2E) :6923/7009</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://www.aida64.com/downloads" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/aida.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">Aida64 Extreme
7.60.7300</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>Read / Write (MB/s) : 78579 / 82813</p>
<p>Copy (MB/s) : 72971 </p>
<p>Latency (ns) : 70.8</p>
<p>L3 read / write (GB/s) : 1210.8 / 1495.3</p>
<p>L3 copy (GB/s) : 1424.2 </p>
<p>L3 latency (ns) : 12.3</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://www.7-zip.com/" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/7zip.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">7-Zip 25.00</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>Compress GIPS : 175046</p>
<p>Uncompress GIPS : 204391</p>
<p>Compress kB/s : 153242 </p>
<p>Uncompress kB/s : 2299223</p>
<p>Global score GIPS : 189.766</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://benchmarks.pugetsystems.com/benchmarks/" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/maxon.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">PugetBench</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>Photoshop 26.4 (2025) : 7543pts</p>
<p>Davinci Resolve 19 : 7307pts</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://www.geekbench.com/legacy/" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/geekbench.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">GeekBench 5</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>Mono-thread : 2203pts</p>
<p>Multi-threads : 19802pts</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://www.geekbench.com/download/" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/geekbench.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">GeekBench 6</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>Mono-thread : 3004pts</p>
<p>Multi-threads : 19209pts</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://www.geekbench.com/ai/" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/geekbench.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">GeekBench
AI ONNX</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>Single Precision Score : 5351pts</p>
<p>Half Precision Score : 1877pts</p>
<p>Quantized Score : 9534pts</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://www.geekbench.com/ai/" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/geekbench.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">GeekBench
AI OpenVINO</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>Single Precision Score : 8670pts</p>
<p>Half Precision Score : 8699pts</p>
<p>Quantized Score : 21760pts</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://www.cpuid.com/softwares/cpu-z.html" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/cpuz.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">CPU-Z 2.13</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>Mono-thread : 773.7pts</p>
<p>Multi-threads : 12063pts</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://www.chaos.com/vray/benchmark" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/vray.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">V-Ray
6.0.0.1</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>CPU (5min) : 30349</p>
<p>GPU Cuda (5min) : 1440</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://www.3dmark.com/" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/3dmark.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">3D Mark
2.31.83.85</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>Time Spy (CPU) : 12306</p>
<p>Time Spy (GPU) : 493</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://benchmarks.ul.com/pcmark10" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/pcmark.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">PCMark 10</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>Global score : 6560pts</p>
<p>Essentials : 11419pts</p>
<p>Productivity : 10591pts</p>
<p>Digital Content Creation : 6335pts</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://bapco.com/crossmark/" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/crossmark.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">CrossMark
1.0.1.105</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>Overall : 2104</p>
<p>Productivity : 1929</p>
<p>Creativity : 2425</p>
<p>Responsiveness : 1780</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://www.passmark.com/products/performancetest/" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/passmark.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">PassMark PT
1.11</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>UCT : 52756.8</p>
<p>Memory : 3937</p>
<p>Storage : 56155.7</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://opendata.blender.org/" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/blender.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">Blender benchmark
3.1.0</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>Overall : 399,06</p>
<p>Monster (samples/min) : 180.27</p>
<p>Junkshop (samples/min) : 129.18</p>
<p>Classroom (samples/min) : 92.06</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://github.com/kimwalisch/primesieve" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/prime.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">Prime Sieve
12.9</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>1E+10 : 0.068s</p>
<p>1E+11 : 0.714s</p>
<p>1E+12 : 8.277s</p>
<p>1E+13 : 103.89s</p>
<p>1E+14 : 1302.91s</p>
<p>1E+15 : 15057.46s</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://www.techpowerup.com/download/super-pi/" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/pi.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">SuperPI
2.10</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<!-- <p>128k : 0.672</p>
<p>256k : 1.422</p> -->
<!-- <p>512k : 3.063</p> -->
<p>1M : 7.062</p>
<p>2M : 15.203</p>
<p>4M : 31.047</p>
<p>8M : 69.625</p>
<p>16M : 155.656</p>
<p>32M : 343.609</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://gwpg.spec.org/benchmarks/benchmark/specworkstation-4_0/" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/SPEC.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">SPEC Workstation 4
</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<!-- <p>128k : 0.672</p>
<p>256k : 1.422</p> -->
<p>7-Zip : 1.13</p>
<p>Autodesk Inventor : 1.02</p>
<p>Blender : 2.01</p>
<p>Convolution : 1.47</p>
<p>Data Science : 1.53</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://gwpg.spec.org/benchmarks/benchmark/specworkstation-4_0/" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/SPEC.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">SPEC Workstation 4
</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>HandBrake : 1.76</p>
<p>Hidden Line Removal : 1.29</p>
<p>LAMMPS : 1.67</p>
<p>LLVM Clang : 1.52</p>
<p>LuxCoreRender : 1.69</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://gwpg.spec.org/benchmarks/benchmark/specworkstation-4_0/" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/SPEC.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">SPEC Workstation 4
</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>MFEM : 1.05</p>
<p>NAMD : 1.61</p>
<p>Octave : 1.27</p>
<p>ONNX Inference : 0.94</p>
<p>OpenFOAM : 6.81</p>
<p>SRMP : 1.57</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://gwpg.spec.org/benchmarks/benchmark/specworkstation-4_0/" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/SPEC.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">SPEC Workstation 4
</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>Options Pricing : 1.86</p>
<p>Poisson : 1.45</p>
<p>Python 3 : 1.25</p>
<p>Rodinia CFD : 1.86</p>
<p>Rodinia Life Sciences : 1.63</p>
<p>WPCstorage : 1.50</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://openbenchmarking.org/suite/pts/chess" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/phoronix-test-suite.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">
Phoronix Chess
</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>LeelaChessZero : 188</p>
<p>crafty-1.4.5 : 15 023 074</p>
<p>tscp-1.2.2 : 2 257 286</p>
<p>stockfish-1.7.0 : 21 896 559</p>
<p>asmfish-1.1.2 : 54 089 079</p>
<p>m-queens-1.1.0 : 32.092</p>
<p>n-queens-1.2.1 : 6.057</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://openbenchmarking.org/test/pts/dav1d" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/phoronix-test-suite.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">
Phoronix Dav1d 1.4.2
</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>Summer Nature 1080p : 982.71fps</p>
<p>Chimera 1080p : 660.81fps</p>
<p>Summer Nature 4K : 315.71fps</p>
<p>Chimera 1080p 10-bit : 596.48fps</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://openbenchmarking.org/test/pts/svt-hevc" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/phoronix-test-suite.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">
Phoronix SVT-HEVC
</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>Bosphorus 4K Tuning 1 : 4.42fps</p>
<p>Bosphorus 4K Tuning 7 : 81.53fps</p>
<p>Bosphorus 4K Tuning 10 : 108.68fps</p>
<p>Bosphorus 1080p Tuning 1 : 17.87fps</p>
<p>Bosphorus 1080p Tuning 7 : 581.96fps</p>
<p>Bosphorus 1080p Tuning 10 : 350.26fps</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://openbenchmarking.org/test/pts/svt-av1-2.16.0" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/phoronix-test-suite.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">
Phoronix SVT-AV1
</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>Bosphorus 4K Preset: 8 : 95.29fps</p>
<p>Bosphorus 4K Preset: 13 : 174.46fps</p>
<p>Bosphorus 1080p Preset: 8 : 346.35fps</p>
<p>Bosphorus 1080p Preset: 13 : 635.16fps</p>
<p>Beauty 4K 10-bit Preset: 8 : 14.86fps</p>
<p>Beauty 4K 10-bit Preset: 13 : 14.06fps</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://openbenchmarking.org/test/pts/ffmpeg-1.7.0/" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/phoronix-test-suite.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">
Phoronix ffmpeg
</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>libx264 Live : 268.12fps</p>
<p>libx265 Live : 46.81fps</p>
<p>libx264 Upload : 16.53fps</p>
<p>libx265 Upload : 6.79fps</p>
<p>libx264 VOD : 62.71fps</p>
<p>libx265 VOD : 14.17fps</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://github.com/ultravideo/kvazaar" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/phoronix-test-suite.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">
Phoronix kvazaar
</span>
</div>
</div>
</a>
</div>
<div class="dark:text-slate-200 space-y-3 pt-2 font-bold">
<p>4K Slow : 12.85fps</p>
<p>4K Medium : 13.11fps</p>
<p>4K UltraFast : 37.76fps</p>
<p>1080p Slow : 56.73fps</p>
<p>1080p Medium : 58.45fps</p>
<p>1080p UltraFast : 143.35fps</p>
</div>
</article>
<article
class="mb-2 break-inside p-6 rounded-xl border-2 border-slate-700 bg-white dark:bg-slate-800 flex flex-col bg-clip-border">
<div class="flex pb-2 items-center justify-between">
<a href="https://openbenchmarking.org/test/pts/blender" target="_blank">
<div class="flex">
<img class="rounded-full max-w-none w-11 h-11" src="/images/phoronix-test-suite.png" />
<div class="flex flex-col pt-2">
<span class="inline-block text-lg font-bold dark:text-white mx-3">
Phoronix Blender
</span>