forked from ggml-org/llama.cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAUTHORS
More file actions
1980 lines (1979 loc) · 84.5 KB
/
Copy pathAUTHORS
File metadata and controls
1980 lines (1979 loc) · 84.5 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
# date: Tue Aug 18 14:32:43 EEST 2026
# this file is auto-generated by scripts/gen-authors.sh
Нияз Гарифзянов <112617865+garrnizon@users.noreply.github.com>
杨朱 · Kiki <baofa.fan@daocloud.io>
王金旭 <105263726+wjinxu@users.noreply.github.com>
エシュナヴァリシア <148695646+eternaphia@users.noreply.github.com>
吴小白 <296015668@qq.com>
源文雨 <41315874+fumiama@users.noreply.github.com>
蕭澧邦 <45505768+shou692199@users.noreply.github.com>
도로로도로또 <60079918+dororodoroddo@users.noreply.github.com>
손희준 <openingnow@naver.com>
谢乃闻 <sienaiwun@users.noreply.github.com>
0 <1939455790@qq.com>
0 <56664264+Yunzez@users.noreply.github.com>
0cc4m <picard12@live.de>
0Marble <85058989+0Marble@users.noreply.github.com>
0xspringtime <110655352+0xspringtime@users.noreply.github.com>
20kdc <asdd2808@gmail.com>
2114L3 <2114L3@users.noreply.github.com>
2f38b454 <dxf@protonmail.com>
3 a l i <58257628+alielfilali01@users.noreply.github.com>
3ooabkhxtn <31479382+3ooabkhxtn@users.noreply.github.com>
44670 <44670@users.noreply.github.com>
4onen <11580688+4onen@users.noreply.github.com>
65a <10104049+65a@users.noreply.github.com>
708-145 <40387547+708-145@users.noreply.github.com>
A B <abawany@users.noreply.github.com>
a-huk <56552991+a-huk@users.noreply.github.com>
a-n-n-a-l-e-e <150648636+a-n-n-a-l-e-e@users.noreply.github.com>
a3894281 <a3894281@gmail.com>
a3sh <38979186+A3shTnT@users.noreply.github.com>
aa956 <aa956@users.noreply.github.com>
Aadeshveer Singh <24b0926@iitb.ac.in>
Aadeshveer Singh <aadeshveer07@gmail.com>
aafsmarak <92150196+aafsmarak@users.noreply.github.com>
Aarnav Pai <52203828+arnu515@users.noreply.github.com>
Aarni Koskela <akx@iki.fi>
Aaron Miller <apage43@ninjawhale.com>
Aaron Teo <57927438+taronaeo@users.noreply.github.com>
Aaron Teo <aaron.teo1@ibm.com>
Aaryaman Vasishta <aaryaman.vasishta@amd.com>
Abheek Gulati <abheekg@hotmail.com>
abhijain1204fujitsu <139222713+abhijain1204fujitsu@users.noreply.github.com>
Abhijit Ramesh <abhijitramesh2k@gmail.com>
abhijitb11 <113058133+abhijitb11@users.noreply.github.com>
Abhilash Majumder <30946547+abhilash1910@users.noreply.github.com>
Abhinay Krishna <abhinaykrishna60@gmail.com>
Abhishek Gopinath K <31348521+overtunned@users.noreply.github.com>
abotsis <github@bots.is>
Abraham Gonzalez <theabecaster0@gmail.com>
Acly <aclysia@gmail.com>
Adam <channeladam@users.noreply.github.com>
adavyas <121313528+adavyas@users.noreply.github.com>
adel boussaken <netdur@gmail.com>
adgup-qti <adgup@qti.qualcomm.com>
Adithya Balaji <adithya.b94@gmail.com>
AdithyanI <adithyan.i4internet@gmail.com>
Aditya Singh <60082699+adityasingh2400@users.noreply.github.com>
Adrian <40185566+adrianisk@users.noreply.github.com>
Adrian <smith.adriane@gmail.com>
Adrian Hesketh <a-h@users.noreply.github.com>
Adrian Kretz <me@akretz.com>
Adrian Lundberg <47256989+alundb@users.noreply.github.com>
Adrien <adrien.69740@gmail.com>
Adrien Gallouët <adrien@gallouet.fr>
Adrien Gallouët <angt@huggingface.co>
AesSedai <7980540+AesSedai@users.noreply.github.com>
afrideva <95653597+afrideva@users.noreply.github.com>
ag2s20150909 <19373730+ag2s20150909@users.noreply.github.com>
agent-enemy-2 <agentenemy2@gmail.com>
AgoraPete <peter.haughie@agora-thinktanks.org>
agray3 <agray3@users.noreply.github.com>
Ahmad Tameem <113388789+Tameem-10xE@users.noreply.github.com>
Ahmet Zeer <ahmed.zeer@std.yildiz.edu.tr>
ai-fonsi <length-amiss-7k@icloud.com>
aic0d3r <168572732+aic0d3r@users.noreply.github.com>
Aidan <99101158+gSUz92nc@users.noreply.github.com>
AidanBeltonS <87009434+AidanBeltonS@users.noreply.github.com>
AidanBeltonS <aidan.belton@codeplay.com>
Aisuko <urakiny@gmail.com>
Akarshan Biswas <akarshan.biswas@gmail.com>
Akarshan Biswas <akarshan@menlo.ai>
Akarshan Biswas <akarshanbiswas@fedoraproject.org>
akawrykow <142945436+akawrykow@users.noreply.github.com>
akleine <alb.kleine@gmx.de>
Al G <toasting@gmail.com>
Al Mochkin <14274697+amochkin@users.noreply.github.com>
Alan Gray <agray3@users.noreply.github.com>
Alawode Oluwandabira <dabiraalawode@yahoo.com>
Albert Jin <albert.jin@gmail.com>
Alberto <57916483+albbus-stack@users.noreply.github.com>
Alberto Cabrera Pérez <1478977+Alcpz@users.noreply.github.com>
Alberto Cabrera Pérez <alberto.cabrera@codeplay.com>
Alberto Cabrera Pérez <alberto.cabrera@intel.com>
Alberto Cabrera Pérez <alberto.cabrera@liquid.ai>
Aldehir Rojas <hello@alde.dev>
alek3y <44779186+alek3y@users.noreply.github.com>
Aleksander Grygier <admin@serveurperso.com>
Aleksander Grygier <aleksander.grygier@gmail.com>
Aleksander Grygier <thichthat@gmail.com>
Aleksei Nikiforov <103434461+AlekseiNikiforovIBM@users.noreply.github.com>
Alessandro de Oliveira Faria (A.K.A.CABELO) <cabelo@opensuse.org>
Alessandro98-git <61804547+Alessandro98-git@users.noreply.github.com>
Alex <18387287+wadealexc@users.noreply.github.com>
Alex <awhill19@icloud.com>
Alex Azarov <alex@azarov.by>
Alex Azarov <alexander.azarov@mapbox.com>
Alex Brooks <alex.brooks@ibm.com>
Alex Fanthome <xfanth@gmail.com>
Alex Klinkhamer <from.github.com.917@grencez.dev>
Alex Klinkhamer <git@grencez.dev>
Alex Nguyen <tiendung@users.noreply.github.com>
Alex O'Connell <35843486+acon96@users.noreply.github.com>
Alex Petenchea <alex.petenchea@gmail.com>
Alex Renda <alexrenda@users.noreply.github.com>
Alex Trotta <44127594+Ahajha@users.noreply.github.com>
Alex Tuddenham <61622354+AlexsCode@users.noreply.github.com>
Alex von Gluck IV <kallisti5@unixzen.com>
Alex Wu <dindinw@users.noreply.github.com>
alex-spacemit <jinghui.huang@spacemit.com>
Alexander Batischev <eual.jp@gmail.com>
Alexander Heisler <126129661+heislera763@users.noreply.github.com>
Alexey Dubrov <nevermind1025@gmail.com>
Alexey Kopytko <alexey@kopytko.com>
Alexey Parfenov <zxed@alkatrazstudio.net>
Alexis Williams <typedrat@users.noreply.github.com>
alexpinel <93524949+alexpinel@users.noreply.github.com>
Alfred <zxu3@clemson.edu>
Ali Chraghi <63465728+alichraghi@users.noreply.github.com>
Ali Nehzat <ali.nehzat@thanks.dev>
Ali Tariq <ali.tariq@10xengineers.ai>
Ali Tariq <alitariq4589@gmail.com>
Alon <alonfaraj@gmail.com>
alonfaraj <alonfaraj@gmail.com>
AlpinDale <52078762+AlpinDale@users.noreply.github.com>
alwqx <kenan3015@gmail.com>
Aman <amangupta052@gmail.com>
Aman Gupta <amangupta052@gmail.com>
amd-dwang <dong.wang@amd.com>
amd-lalithnc <lalithnc@amd.com>
Amir <amir_zia@outlook.com>
amirai21 <89905406+amirai21@users.noreply.github.com>
AmirAli Mirian <37371367+amiralimi@users.noreply.github.com>
Amos Wong <8733840+amoshydra@users.noreply.github.com>
amritahs-ibm <amritahs@linux.vnet.ibm.com>
An Long <aisk@users.noreply.github.com>
AN Long <aisk@users.noreply.github.com>
Anand Patil <126432639+AnandPatil1@users.noreply.github.com>
Ananta Bastola <anantarajbastola@gmail.com>
Anas Ahouzi <112881240+aahouzi@users.noreply.github.com>
Anav Prasad <anavp@nvidia.com>
anavp-nvidia <anavp@nvidia.com>
anchortense <daniel.redshaw@uqconnect.edu.au>
Andika Wasisto <andika@wasisto.com>
András Salamon <ott2@users.noreply.github.com>
Andrea Arcangeli <aarcange@redhat.com>
Andrea Richiardi <a.richiardi.work@gmail.com>
Andreas (Andi) Kunar <andreask@msn.com>
Andreas Kieslinger <47689530+aendk@users.noreply.github.com>
Andreas Krebbel <krebbel@linux.ibm.com>
Andreas Obersteiner <limez@protonmail.com>
Andrei <abetlen@gmail.com>
Andrew Aladjev <aladjev.andrew@gmail.com>
Andrew Canis <andrew.canis@gmail.com>
Andrew Downing <andrew2085@gmail.com>
Andrew Duffy <a10y@users.noreply.github.com>
Andrew Godfrey <AndrewGodfrey@users.noreply.github.com>
Andrew Marshall <andrew@johnandrewmarshall.com>
Andrew Minh Nguyen <40281306+amqdn@users.noreply.github.com>
Andrew Smith <atsmith19@comcast.net>
andrijdavid <david@geek.mg>
Andy Salerno <andysalerno@gmail.com>
Andy Tai <andy-tai@users.noreply.github.com>
Andy Williams <8692+sobakasu@users.noreply.github.com>
andyluo7 <43718156+andyluo7@users.noreply.github.com>
Angel Galindo <131726962+AngelGalindo7@users.noreply.github.com>
Ankur Verma <31362771+ankurvdev@users.noreply.github.com>
anon998 <131767832+anon998@users.noreply.github.com>
Anri Lombard <anri.m.lombard@gmail.com>
Anthony Umfer <aumfer@gmail.com>
Anthony Van de Gejuchte <anthonyvdgent@gmail.com>
antichristHater <142441588+antichristHater@users.noreply.github.com>
Antoine Viallon <antoine@lesviallon.fr>
Anton Mitkov <anton_b_mitkov@abv.bg>
Anton Mitkov <anton.mitkov@codeplay.com>
Antonis Makropoulos <benuix@gmail.com>
Anudit Nagar <nagaranudit@gmail.com>
Anuj Attri <anujattri01@gmail.com>
anzz1 <anzz1@live.com>
Aparna M P <aparmp@qti.qualcomm.com>
Aparna M P <quic_aparmp@quicinc.com>
apaz <aarpazdera@gmail.com>
apcameron <37645737+apcameron@users.noreply.github.com>
arch-btw <57669023+arch-btw@users.noreply.github.com>
arcrank <arcrank@gmail.com>
ardfork <134447697+ardfork@users.noreply.github.com>
Arik Poznanski <arikpoz@users.noreply.github.com>
arlo-phoenix <140345165+arlo-phoenix@users.noreply.github.com>
Armen Kaleshian <kriation@users.noreply.github.com>
Arsen Arutunan <58118221+limloop@users.noreply.github.com>
Artem <guinmoon@gmail.com>
Artem Zinnatullin <ceo@abstractny.gay>
Artyom Lebedev <vagran.ast@gmail.com>
aryantandon01 <80969509+aryantandon01@users.noreply.github.com>
Asbjørn Olling <asbjornolling@gmail.com>
asf0 <scorpionspfc@gmail.com>
Ásgeir Bjarni Ingvarsson <asgeir@fundinn.org>
Asghar Ghorbani <a-ghorbani@users.noreply.github.com>
Ashish <1856117+ashishdatta@users.noreply.github.com>
Ashok Gelal <401055+ashokgelal@users.noreply.github.com>
Ashraful Islam <ashraful.meche@gmail.com>
AT <manyoso@users.noreply.github.com>
at8u <129688334+at8u@users.noreply.github.com>
Atharva Dubey <atharva.dubey@codeplay.com>
Atomic-Germ <97569476+Atomic-Germ@users.noreply.github.com>
Atsushi Tatsuma <yoshoku@outlook.com>
aubreyli <aubreylee@gmail.com>
Austin <77757836+teleprint-me@users.noreply.github.com>
AustinMroz <austinmroz@utexas.edu>
AUTOMATIC1111 <16777216c@gmail.com>
automaticcat <daogiatuank54@gmail.com>
awatuna <23447591+awatuna@users.noreply.github.com>
b4b4o <zwbao@foxmail.com>
Bach Le <bach@bullno1.com>
BADR <contact@pythops.com>
bagheera <59658056+bghira@users.noreply.github.com>
Bailey Chittle <39804642+bachittle@users.noreply.github.com>
bandoti <141645996+bandoti@users.noreply.github.com>
Bar Haim <barvhaim@gmail.com>
BarfingLemurs <128182951+BarfingLemurs@users.noreply.github.com>
Bart Louwers <bart.louwers@gmail.com>
Bartowski <3266127+bartowski1182@users.noreply.github.com>
Bartowski <ckealty1182@gmail.com>
Bas Nijholt <basnijholt@gmail.com>
bashayer hijji <bashayer.hijji@gmail.com>
BB-fat <45072480+BB-fat@users.noreply.github.com>
Behnam M <58621210+ibehnam@users.noreply.github.com>
beiller <beiller@gmail.com>
Beinsezii <39478211+Beinsezii@users.noreply.github.com>
Belem Zhang <belem.zhang@intel.com>
Ben Ashbaugh <ben.ashbaugh@intel.com>
Ben Chen <chanben04gz@gmail.com>
Ben Garney <bengarney@users.noreply.github.com>
Ben Guidarelli <ben.guidarelli@gmail.com>
Ben Racicot <1815385+BenRacicot@users.noreply.github.com>
Ben Siraphob <bensiraphob@gmail.com>
Ben Williams <ben@719ben.com>
Benjamin Findley <39356821+Kartoffelsaft@users.noreply.github.com>
Benjamin Lecaillon <84293038+blecaillon@users.noreply.github.com>
Benni <73313922+BenjaminBruenau@users.noreply.github.com>
Benson Wong <mostlygeek@gmail.com>
Berk Idem <55372926+berkidem@users.noreply.github.com>
Bernard Ladenthin <bernard.ladenthin@gmail.com>
Bernat Vadell <hounter.caza@gmail.com>
Bernhard M. Wiedemann <githubbmwprimary@lsmod.de>
Bert Wagner <github@bertwagner.com>
Bertay Eren <39909689+bertaye@users.noreply.github.com>
Bhavik Sharda <10757940+BLSharda@users.noreply.github.com>
bhubbb <79117352+bhubbb@users.noreply.github.com>
Bill Sideris <bill88t@feline.gr>
Billel Mokeddem <billel.mokeddem.ml@gmail.com>
Bingan <70050083+binganao@users.noreply.github.com>
Bipin Yadav <83943505+bipinyadav3175@users.noreply.github.com>
Bizhao Shi <37729561+shibizhao@users.noreply.github.com>
Bjarke Viksøe <164612031+bviksoe@users.noreply.github.com>
Björn Ganster <mail@bjoern-ganster.de>
BlackFoil <127078112+BlackFoil@users.noreply.github.com>
BlueMöhre <bluemoehre@gmx.de>
bmwl <brian.marshall@tolko.com>
Bo Zheng <368586905@qq.com>
bobqianic <129547291+bobqianic@users.noreply.github.com>
Bodhi <3882561+BodhiHu@users.noreply.github.com>
Bodo Graumann <mail@bodograumann.de>
Boian Berberov <7432115+bberberov@users.noreply.github.com>
Bono Lv <lvscar@users.noreply.github.com>
Borislav Stanimirov <b.stanimirov@abv.bg>
Borislav Stanimirov <b@ibob.bg>
Bowen Han <fancycode@gmail.com>
Branden Butler <bwtbutler@hotmail.com>
Brandon Squizzato <35474886+bsquizz@users.noreply.github.com>
Brian <mofosyne@gmail.com>
Brian Cunnie <brian.cunnie@gmail.com>
Bruce MacDonald <brucewmacdonald@gmail.com>
brucepro <git@brucepro.net>
Bryan Honof <bryanhonof@gmail.com>
bryanSwk <93190252+bryanSwk@users.noreply.github.com>
bsilvereagle <bsilvereagle@users.noreply.github.com>
bssrdf <merlintiger@hotmail.com>
byte-6174 <88070277+byte-6174@users.noreply.github.com>
Caleb DeLeeuw <143902425+SolshineCode@users.noreply.github.com>
Calvin Laurenson <calvin@laurenson.dev>
Cameron <csteele@steelecameron.com>
Cameron Kaiser <classilla@users.noreply.github.com>
Carolinabanana <140120812+Carolinabanana@users.noreply.github.com>
CarryFun <76023481+CarryFun@users.noreply.github.com>
Carsten Kragelund Jørgensen <carsten@kragelund.me>
CarterLi999 <664681047@qq.com>
Casey Primozic <casey@cprimozic.net>
Casey Primozic <me@ameo.link>
CausalLM <148736309+CausalLM@users.noreply.github.com>
ccbinn <ccbinn@163.com>
cduk <19917266+cduk@users.noreply.github.com>
cebtenzzre <cebtenzzre@gmail.com>
Cebtenzzre <cebtenzzre@gmail.com>
CentricStorm <CentricStorm@users.noreply.github.com>
Cetarthoriphros <cetarthoriphros@gmail.com>
Chad Brewbaker <crb002@gmail.com>
Chad Voegele <chadvoegele@users.noreply.github.com>
chaihahaha <chai836275709@gmail.com>
Changyeon Kim <cyzero.kim@samsung.com>
chansikpark <chansik.park@gmail.com>
Chao Jiang <jc19chaoj@zoho.com>
characharm <123120856+characharm@users.noreply.github.com>
Charles Duffy <charles@dyfis.net>
Charles Xu <63788048+chaxu01@users.noreply.github.com>
Charles Xu <charles.xu@arm.com>
Chedrian07 <108463785+Chedrian07@users.noreply.github.com>
chen fan <350211548@qq.com>
Chen Xi <xi2.chen@intel.com>
Chen Xi <xixichen08@foxmail.com>
Chen Yuan <constant.chen@uwaterloo.ca>
Chen Yuan <constantchen525@gmail.com>
Cheng Shao <terrorjack@type.dance>
Chenguang Li <757486878@qq.com>
Chenguang Li <87689256+noemotiovon@users.noreply.github.com>
Chipmunk <101038159+CHIPMUNK-T0T@users.noreply.github.com>
chiranko <96988916+chiranko@users.noreply.github.com>
Chris Elrod <elrodc@gmail.com>
Chris Kuehl <ckuehl@ckuehl.me>
Chris Lee <clee@mg8.org>
Chris Peterson <cpeterson@mozilla.com>
Chris Rohlf <chris.rohlf@gmail.com>
Chris Thompson <christopherthompson81@gmail.com>
Christian Demsar <christian@github.email.demsar.us>
Christian Demsar <crasm@git.vczf.us>
Christian Falch <875252+chrfalch@users.noreply.github.com>
Christian Fillion <cfillion@users.noreply.github.com>
Christian Hoener zu Siederdissen <software@siederdissen.eu>
Christian Kastner <ckk@kvr.at>
Christian Kögler <ck3d@gmx.de>
Christian Köhnenkamp <cvk5@me.com>
Christian Schmitz <support@monkeybreadsoftware.de>
Christian Zhou-Zheng <59622928+christianazinn@users.noreply.github.com>
Christopher Albert <albert@tugraz.at>
Christopher Maher <chris@mahercode.io>
Christopher Nielsen <62156882+mascguy@users.noreply.github.com>
Chyan <163109379+chyan8@users.noreply.github.com>
City <125218114+city96@users.noreply.github.com>
CJ Pais <cj@cjpais.com>
Clark Saben <76020733+csaben@users.noreply.github.com>
Clauszy <zhangyub@uniontech.com>
clibdev <52199778+clibdev@users.noreply.github.com>
Clint Herron <hanclinto@gmail.com>
clyang <clyang@clyang.net>
cmdr2 <secondary.cmdr2@gmail.com>
cmdr2 <shashank.shekhar.global@gmail.com>
cocktailpeanut <121128867+cocktailpeanut@users.noreply.github.com>
codezjx <code.zjx@gmail.com>
coezbek <c.oezbek@gmail.com>
comex <comexk@gmail.com>
compilade <113953597+compilade@users.noreply.github.com>
compilade <git@compilade.net>
Congcong Cai <congcongcai0907@163.com>
Conrad Kramer <conrad@conradkramer.com>
Copilot <198982749+Copilot@users.noreply.github.com>
Corentin REGAL <corentin.regal@gmail.com>
cphlipot <9103367+cphlipot@users.noreply.github.com>
cpumaxx <163466046+cpumaxx@users.noreply.github.com>
crasm <crasm@git.vczf.net>
crasm <crasm@git.vczf.us>
crat0z <11581854+crat0z@users.noreply.github.com>
CRD716 <crd716@gmail.com>
CrispStrobe <154636388+CrispStrobe@users.noreply.github.com>
Cristiano Pinto <140563307+crowmoed@users.noreply.github.com>
crsawyer <7572190+crsawyer@users.noreply.github.com>
Csaba Kecskemeti <csaba.kecskemeti@gmail.com>
Cuong Trinh Manh <nguoithichkhampha@gmail.com>
daboe01 <daboe01@googlemail.com>
daghanerdonmez <44506702+daghanerdonmez@users.noreply.github.com>
Damian Stewart <d@damianstewart.com>
daminho <37615795+daminho@users.noreply.github.com>
DAN™ <dranger003@gmail.com>
Dan Hoffman <43101339+thedanhoffman@users.noreply.github.com>
Dan Johansson <164997844+eddnjjn@users.noreply.github.com>
Dan Johansson <dan.johansson@arm.com>
Dane Madsen <dane_madsen@hotmail.com>
DaniAndTheWeb <57776841+DaniAndTheWeb@users.noreply.github.com>
Daniel Benjaminsson <danielbenjaminsson@users.noreply.github.com>
Daniel Bevenius <daniel.bevenius@gmail.com>
Daniel Drake <drake@endlessos.org>
Daniel Elliott <ssfdre38@msn.com>
Daniel Han <danielhanchen@gmail.com>
Daniel Hiltgen <dhiltgen@users.noreply.github.com>
Daniel Illescas Romero <illescas.daniel@protonmail.com>
Daniel Kleine <53251018+d-kleine@users.noreply.github.com>
Daniel Tang <danielzgtg.opensource@gmail.com>
Daniele <57776841+daniandtheweb@users.noreply.github.com>
Daniele <daniele.dilotorres@gmail.com>
Daniele Pinna <72076821+pestopoppa@users.noreply.github.com>
Danny Milosavljevic <dannym@friendly-machines.com>
DannyDaemonic <DannyDaemonic@gmail.com>
Darius Lukas <dariusjlukas@gmail.com>
Dat Quoc Nguyen <2412555+datquocnguyen@users.noreply.github.com>
Dave <dave-fl@users.noreply.github.com>
Dave Airlie <airlied@gmail.com>
Dave Airlie <airlied@redhat.com>
Dave Della Costa <ddellacosta+github@gmail.com>
Davi Henrique Linhares <38295327+WizardlyBump17@users.noreply.github.com>
David Chiu <david20571015@gmail.com>
David Friehs <david@friehs.info>
David Huang <1969802+hjc4869@users.noreply.github.com>
David Huggins-Daines <dhd@ecolingui.ca>
David Kennedy <dakennedyd@gmail.com>
David Lima <contato@davidlima.com.br>
David Pflug <david@pflug.email>
david raistrick <keen99@users.noreply.github.com>
David Renshaw <dwrenshaw@gmail.com>
David Ribeiro Alves <davidralves@gmail.com>
David Sommers <12738+databyte@users.noreply.github.com>
David Spruill <62445444+Spruill-1@users.noreply.github.com>
David Yang <davidyang6us@gmail.com>
David Zhao <90013954+Your-Cheese@users.noreply.github.com>
David366AI <86212041+David366AI@users.noreply.github.com>
davidef <davidef1986@gmail.com>
DavidKorczynski <david@adalogics.com>
davidrhodus <david@vacovideo.com>
Dawid Potocki <github@dawidpotocki.com>
Dawid Wysocki <62249621+TortillaZHawaii@users.noreply.github.com>
ddh0 <chemist-mulches-39@icloud.com>
ddh0 <dylanhalladay02@icloud.com>
ddpasa <112642920+ddpasa@users.noreply.github.com>
DDXDB <38449595+DDXDB@users.noreply.github.com>
Dean <Dean.Sinaean@gmail.com>
decahedron1 <carson@pyke.io>
deepdiffuser <112834445+deepdiffuser@users.noreply.github.com>
deepsek <166548550+deepsek@users.noreply.github.com>
Deins <deinsegle@gmail.com>
Denis Spasyuk <34203011+dspasyuk@users.noreply.github.com>
Derrick T. Woolworth <dwoolworth@gmail.com>
Dev-iL <6509619+Dev-iL@users.noreply.github.com>
Dev-X25874 <283057883+Dev-X25874@users.noreply.github.com>
Devedse <2350015+devedse@users.noreply.github.com>
Developer-Ecosystem-Engineering <65677710+Developer-Ecosystem-Engineering@users.noreply.github.com>
Deven Mistry <31466137+deven367@users.noreply.github.com>
devojony <61173062+devojony@users.noreply.github.com>
diannao <55k@outlook.com>
Dibakar Gope <dibakar.gope@arm.com>
Didzis Gosko <didzis@users.noreply.github.com>
Diego Devesa <slarengh@gmail.com>
Diner Burger <burger@diner.name>
Đinh Trọng Huy <77562200+huydt84@users.noreply.github.com>
Diogo Teles Sant'Anna <diogoteles@google.com>
ditsuke <ditsuke@protonmail.com>
divinity76 <divinity76@gmail.com>
Djip007 <3705339+Djip007@users.noreply.github.com>
Djip007 <djip.perois@free.fr>
dm4 <dm4@secondstate.io>
dm4 <sunrisedm4@gmail.com>
Dmitry Atamanov <data-man@users.noreply.github.com>
Dmytro Minochkin <dmytro.minochkin@gmail.com>
Dmytro Romanov <casteldazur@gmail.com>
Dobri Danchev <12420863+danchev@users.noreply.github.com>
DocShotgun <126566557+DocShotgun@users.noreply.github.com>
Doctor Shotgun <126566557+DocShotgun@users.noreply.github.com>
Don Mahurin <dmahurin@users.noreply.github.com>
Dong Won Kim <63934649+ddwkim@users.noreply.github.com>
Donghyeon Jeong <54725479+djeong20@users.noreply.github.com>
Dongliang Wei <121270393+wdl339@users.noreply.github.com>
Doomsdayrs <38189170+Doomsdayrs@users.noreply.github.com>
DooWoong Lee (David) <manics99@naver.com>
DorianRudolph <dorianrudo97@googlemail.com>
Dorin-Andrei Geman <doringeman@gmail.com>
dotpy314 <33351922+dotpy314@users.noreply.github.com>
Dou Xinpeng <15529241576@163.com>
Dou Xinpeng <81913537+Dou-Git@users.noreply.github.com>
Douglas Hanley <thesecretaryofwar@gmail.com>
Dowon <ks2515@naver.com>
Dr. Tom Murphy VII Ph.D <499244+tom7@users.noreply.github.com>
drbh <david.richard.holtz@gmail.com>
drrros <52050875+drrros@users.noreply.github.com>
ds5t5 <145942675+ds5t5@users.noreply.github.com>
dskwe <dskwelmcy@163.com>
duduta <simona.gherman@gmail.com>
dylan <canardleteer@users.noreply.github.com>
eastriver <lee@eastriver.dev>
Ebey Abraham <ebey97@gmail.com>
ebraminio <ebrahim@gnu.org>
ebraminio <ebraminio@gmail.com>
Echo Nolan <echo@echonolan.net>
Ed Addario <29247825+EAddario@users.noreply.github.com>
Ed Lee <edilee@mozilla.com>
Ed Lepedus <ed.lepedus@googlemail.com>
Eddie-Wang <wangjinheng1120@163.com>
eduardopessin <100053075+eduardopessin@users.noreply.github.com>
Edward Taylor <edeetee@gmail.com>
eiery <19350831+eiery@users.noreply.github.com>
Elaine <elaine.zosa@gmail.com>
Elbios <141279586+Elbios@users.noreply.github.com>
Elton Kola <eltonkola@gmail.com>
Emanuil Rusev <hello@erusev.com>
Emil Askerov <56842174+EmilAskerov@users.noreply.github.com>
Emmanuel Ferdman <emmanuelferdman@gmail.com>
Emreerdog <34742675+Emreerdog@users.noreply.github.com>
Engininja2 <139037756+Engininja2@users.noreply.github.com>
Equim <sayaka@ekyu.moe>
Eric Curtin <ecurtin@redhat.com>
Eric Curtin <eric.curtin@docker.com>
Eric Curtin <ericcurtin17@gmail.com>
Eric Hartford <ehartford@gmail.com>
Eric Hsieh <benson.doraemon@gmail.com>
Eric Sommerlade <es0m@users.noreply.github.com>
Eric Zhang <34133756+EZForever@users.noreply.github.com>
eric8607242 <e0928021388@gmail.com>
Erik Garrison <erik.garrison@gmail.com>
Erik Scholz <Green-Sky@users.noreply.github.com>
Ervin Áron Tasnádi <etasnadi@protonmail.com>
Esko Toivonen <eskot98@gmail.com>
Ethan Turner <eturner64@gmail.com>
Ettore Di Giacinto <mudler@users.noreply.github.com>
EugeoSynthesisThirtyTwo <gabriel.dhimoila@gmail.com>
Evan Huus <eapache@gmail.com>
Evan Jones <evan.q.jones@gmail.com>
Evan Miller <emmiller@gmail.com>
Eve <139727413+netrunnereve@users.noreply.github.com>
Evgeny Kurnevsky <kurnevsky@gmail.com>
Ewan Crawford <ewan.cr@gmail.com>
Ewan Crawford <ewan@codeplay.com>
Ewout ter Hoeven <E.M.terHoeven@student.tudelft.nl>
ExtReMLapin <3909752+ExtReMLapin@users.noreply.github.com>
Fabian <cmdrf@users.noreply.github.com>
Fabio R. Sluzala <Fabio3rs@users.noreply.github.com>
Faez Shakil <faez.shakil@gmail.com>
fairydreaming <166155368+fairydreaming@users.noreply.github.com>
Faisal Zaghloul <faisal.zaghloul@gmail.com>
Faisal Zaghloul <quic_fzaghlou@quicinc.com>
Fan Shupei <dymarkfan@outlook.com>
FantasyGmm <16450052+FantasyGmm@users.noreply.github.com>
fanyang <fanyang89@outlook.com>
Farbod Bijary <110523279+farbodbj@users.noreply.github.com>
Fathi Boudra <fathi.boudra@linaro.org>
Fattire <528174+fat-tire@users.noreply.github.com>
felix <felix314159@users.noreply.github.com>
Felix <stenbackfelix@gmail.com>
fengerhu1 <2748250768@qq.com>
fidoriel <49869342+fidoriel@users.noreply.github.com>
fiesh <fiesh@zefix.tv>
Finn Voorhees <finnvoorhees@gmail.com>
Firat <firatkiral@gmail.com>
FirstTimeEZ <179362031+FirstTimeEZ@users.noreply.github.com>
fj-y-saito <85871716+fj-y-saito@users.noreply.github.com>
FK <sozforex@gmail.com>
fl0rianr <226492742+fl0rianr@users.noreply.github.com>
fl0rianr <f.reinle@otec.de>
Florent BENOIT <fbenoit@redhat.com>
Florian Badie <florianbadie@odrling.xyz>
Folko-Ven <71110216+Folko-Ven@users.noreply.github.com>
forforever73 <63285796+forforever73@users.noreply.github.com>
Foul-Tarnished <107711110+Foul-Tarnished@users.noreply.github.com>
Francisco Herrera <ppaanncchhoo507@gmail.com>
Francisco Melo <43780565+francis2tm@users.noreply.github.com>
Francois Dugast <francois.dugast@intel.com>
franitel <franitel@gmx.com>
Frank Mai <thxcode0824@gmail.com>
FrankHB <frankhb1989@gmail.com>
Frankie Robertson <frankier@users.noreply.github.com>
fraxy-v <65565042+fraxy-v@users.noreply.github.com>
Fred Douglas <43351173+fredlas@users.noreply.github.com>
Frederik Vogel <Schaltfehler@users.noreply.github.com>
Fredrik Hultin <noname@nurd.se>
fredzillman <fzillman@gmail.com>
frob <rick+github@frob.com.au>
Frosty40 <newjordan@gmail.com>
Funtowicz Morgan <mfuntowicz@users.noreply.github.com>
fxzjshm <11426482+fxzjshm@users.noreply.github.com>
g2mt <166577174+g2mt@users.noreply.github.com>
Gabe Goodhart <gabe.l.hart@gmail.com>
Gabe Goodhart <ghart@us.ibm.com>
Gabriel Larson <55459720+gabriellarson@users.noreply.github.com>
Gadflyii <34758915+Gadflyii@users.noreply.github.com>
Gaetan Bisson <gaetan@fenua.org>
GainLee <perfecter.gen@gmail.com>
Galunid <karolek1231456@gmail.com>
Gary Linscott <glinscott@gmail.com>
Gary Mulder <gjmulder@gmail.com>
Gaspard Petit <gaspardpetit@gmail.com>
gatbontonpc <gatbontonpc@gmail.com>
Gaurav Garg <52341457+gaugarg-nv@users.noreply.github.com>
Gaurav Garg <gaugarg@nvidia.com>
Gautam0507 <110854761+Gautam0507@users.noreply.github.com>
Gavin Zhao <gavinzhaojw@protonmail.com>
Genkagaku.GPT <hlhr202@163.com>
Geo Maciolek <geoffmaciolek@gmail.com>
George <35490284+noctrex@users.noreply.github.com>
Georgi Gerganov <ggerganov@gmail.com>
Geramy Loveless <gloveless@jqluv.com>
Gerard Guillemas Martos <gguillemas@users.noreply.github.com>
Gerard Martinez <gmarzjr@proton.me>
Gerben van V <gerbenvv@gmail.com>
Gezahegne <gezahegne.yirefu@gmail.com>
ghleg <aoleg@users.noreply.github.com>
Gian-Carlo Pascutto <gcp@sjeng.org>
GiantPrince <90118823+GiantPrince@users.noreply.github.com>
GideonSerf <gdserf.gs@gmail.com>
Gilad S <giladgd@users.noreply.github.com>
Gilad S. <7817232+giladgd@users.noreply.github.com>
github-actions[bot] <github-actions[bot]@users.noreply.github.com>
GittyBurstein <g0534163997@gmail.com>
Giuseppe Scrivano <giuseppe@scrivano.org>
Giuseppe Scrivano <gscrivan@redhat.com>
GiviMAD <GiviMAD@users.noreply.github.com>
gliptic <gliptic@users.noreply.github.com>
gn64 <yukikaze.jp@gmail.com>
goerch <jhr.walter@t-online.de>
Govlzkoy <gotope@users.noreply.github.com>
grahameth <96447521+grahameth@users.noreply.github.com>
Gregor Jasny <gjasny@googlemail.com>
Grzegorz Grasza <xek@redhat.com>
gtygo <gtydoit@gmail.com>
Guanhuai Zhang <67999475+BiReRa@users.noreply.github.com>
Guido Imperiale <crusaderky@gmail.com>
Guido Imperiale <gimperiale@openteams.com>
Guilherme Quintino <gui8396@gmail.com>
Guillaume "Vermeille" Sanchez <Guillaume.V.Sanchez@gmail.com>
Guillaume Wenzek <gwenzek@users.noreply.github.com>
Guoliang Hua <32868157+nbcsm@users.noreply.github.com>
Guoteng <32697156+SolenoidWGT@users.noreply.github.com>
Guspan Tanadi <36249910+guspan-tanadi@users.noreply.github.com>
Gustavo Rocha Dias <91472747+gustrd@users.noreply.github.com>
Guus Waals <_@guusw.nl>
Guy Goldenberg <guy110698@gmail.com>
guyfischman <138163913+guyfischman@users.noreply.github.com>
gwjr <502526+gwjr@users.noreply.github.com>
h-h-h-h <13482553+h-h-h-h@users.noreply.github.com>
Haggai Nuchi <h.nuchi@gmail.com>
Haiyue Wang <haiyuewa@163.com>
Halalaluyafail3 <55773281+Halalaluyafail3@users.noreply.github.com>
Hale Chan <halechan@qq.com>
Hamdoud Hakem <90524568+hamdoudhakem@users.noreply.github.com>
Hamish M. Blair <hmblair@stanford.edu>
Han Qingzhe <95479277+hNSBQZ@users.noreply.github.com>
Han Yin <han.yin@arm.com>
HanishKVC <hanishkvc@gmail.com>
hankcs <cnhankmc@gmail.com>
Hans Florian <hansolosan@gmail.com>
Hao-Chen2337 <2113996104@qq.com>
Haohui Mai <ricetons@gmail.com>
HaoJun ZHANG <neroued@gmail.com>
haopeng <657407891@qq.com>
Haowei Wu <breadcyanide@icloud.com>
Haoxiang Fei <tonyfettes@tonyfettes.com>
Harald Fernengel <harald.fernengel@here.com>
Harapan Rachman <harapanrachman@gmail.com>
Harkirat Gill <harkirat.gill@amd.com>
HarrisonSec <gzxharrison@gmail.com>
Hatsune Miku <129688334+at8u@users.noreply.github.com>
HatsuneMikuUwU33 <173229399+HatsuneMikuUwU33@users.noreply.github.com>
Haus1 <haus.xda@gmail.com>
hcl <chenglunhu@gmail.com>
Héctor Estrada Moreno <hectorem2@gmail.com>
helanfxz <126638465+helanfxz@users.noreply.github.com>
HelloKS <kqwe1859@gmail.com>
Helton Reis <47722840+HRKings@users.noreply.github.com>
Hemanth Battu <56206750+hbattu73@users.noreply.github.com>
Hendrik Erz <hendrik@zettlr.com>
Henk Poley <HenkPoley@gmail.com>
Henri Vasserman <henv@hot.ee>
Henrik Forstén <henrik.forsten@gmail.com>
Henry Linjamäki <henry.linjamaki@gmail.com>
Henry Linjamäki <henry.mikael.linjamaki@intel.com>
Henry147147 <44851451+Henry147147@users.noreply.github.com>
Herman Semenoff <GermanAizek@yandex.ru>
Herman Semenov <GermanAizek@yandex.ru>
Hesen Peng <hesen.peng@gmail.com>
HighDoping <highdoping@gmail.com>
HimariO <dsfhe49854@gmail.com>
hipudding <huafengchun@gmail.com>
Hitesh Chopra <34310832+hiteshchopra11@users.noreply.github.com>
hksdpc255 <43977088+hksdpc255@users.noreply.github.com>
hmscider <201289679+hmscider@users.noreply.github.com>
Hoang Nguyen <hugo53@users.noreply.github.com>
hoangmit <hoangmit@users.noreply.github.com>
hogeheer499-commits <hogeheer499@gmail.com>
hokanosekai <69720899+hokanosekai@users.noreply.github.com>
Holger Voormann <github@voormann.de>
HonestQiao <honestqiao@gmail.com>
Hong Bo PENG <penghb@cn.ibm.com>
hongbo.mo <352280764@qq.com>
Hongqiang Wang <66336067+wanghqc@users.noreply.github.com>
Hongqiang Wang <wangh@qti.qualcomm.com>
Hongyu Ouyang <96765450+casavaca@users.noreply.github.com>
hopkins385 <98618192+hopkins385@users.noreply.github.com>
hourhl <67227355+hourhl@users.noreply.github.com>
Howard Su <howard0su@gmail.com>
howlger <eclipse@voormann.de>
howlger <github@voormann.de>
hrushitfujitsu <Hrushit.Kakadia@fujitsu.com>
Hua Jiang <allenhjiang@outlook.com>
Huang Qi <huangqi3@xiaomi.com>
Huawei Lin <huaweilin.cs@gmail.com>
Hugo <hugo@whynothugo.nl>
Hugo Roussel <hugo.rous@gmail.com>
Huifeng Ou <79071290+ho2103@users.noreply.github.com>
hutli <6594598+hutli@users.noreply.github.com>
hutli <hutli@hutli.hu>
hutli <jensstaermose@hotmail.com>
hxer7963 <hxer7963@gmail.com>
hydai <z54981220@gmail.com>
iacopPBK <iacopogiottorossi@gmail.com>
iacore <74560659+iacore@users.noreply.github.com>
Ian Bull <irbull@eclipsesource.com>
Ian Bull <irbull@gmail.com>
Ian Faust <icfaust@gmail.com>
Ian Scrivener <github@zilogy.asia>
ibrahim khadraoui <132432132+ibrahimkhadraoui@users.noreply.github.com>
Icecream95 <the.real.icecream95@gmail.com>
Icenowy Zheng <uwu@icenowy.me>
icppWorld <124377669+icppWorld@users.noreply.github.com>
Ido S <ido.pluto@gmail.com>
igardev <49397134+igardev@users.noreply.github.com>
igarnier <igarnier@protonmail.com>
IgnacioFDM <ignaciofdm@gmail.com>
Igor Okulist <okigan@gmail.com>
Igor Rudenko <iostream64@gmail.com>
Igor Smirnov <smirnoviv@rambler.ru>
Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Ihar Hrachyshka <ihrachys@redhat.com>
ihb2032 <40718643+ihb2032@users.noreply.github.com>
Ikko Eltociear Ashimine <eltociear@gmail.com>
Ilia Ilmer <iliailmer@users.noreply.github.com>
Ilya <ilya77105@gmail.com>
Ilya Kurdyukov <59548320+ilyakurdyukov@users.noreply.github.com>
Imad Saddik <79410781+ImadSaddik@users.noreply.github.com>
iMil <imil@NetBSD.org>
Incarnas <119618389+bit-incarnas@users.noreply.github.com>
Intel AI Get-to Market Customer Success and Solutions <ai.gtm.css@gmail.com>
intelmatt <61025942+intelmatt@users.noreply.github.com>
iohub <rickyang.pro@gmail.com>
Ionoclast Laboratories <brigham@ionoclast.com>
iron <lizhenneng@gmail.com>
Isaac McFadyen <isaac@imcf.me>
IsaacDynamo <61521674+IsaacDynamo@users.noreply.github.com>
Ishaan Gandhi <Ishaangandhi@gmail.com>
iSma <ismail.senhaji@gmail.com>
Ismail <115064057+AlrIsmail@users.noreply.github.com>
issixx <46835150+issixx@users.noreply.github.com>
Ivan <nekotekina@gmail.com>
Ivan Chikish <nekotekina@gmail.com>
Ivan Filipov <159561759+vanaka11@users.noreply.github.com>
Ivan Komarov <Ivan.Komarov@dfyz.info>
Ivan Stepanov <ivanstepanovftw@gmail.com>
Ivy233 <952254420@qq.com>
ixgbe <1113177880@qq.com>
j-k <dev@j-k.io>
jacekpoplawski <67507230+jacekpoplawski@users.noreply.github.com>
Jack Mousseau <jack@software.inc>
Jack Mousseau <jmousseau@users.noreply.github.com>
JackJollimore <130917767+JackJollimore@users.noreply.github.com>
jacobi petrucciani <8117202+jpetrucciani@users.noreply.github.com>
Jaden_Mach <88880593+jadenmach2@users.noreply.github.com>
Jaeden Amero <jaeden@patater.com>
Jaemin Son <woalsdnd@gmail.com>
Jafar Uruç <jafar.uruc@gmail.com>
Jag Chadha <jagtesh@gmail.com>
jaime-m-p <167997752+jaime-m-p@users.noreply.github.com>
Jake Karnes <jake.karnes@gmail.com>
Jakkala Mahesh <155058658+MaheshJakkala@users.noreply.github.com>
Jakub N <jakubniemczyk97@gmail.com>
JamePeng <jame_peng@sina.com>
James A Capozzoli <157492257+jac-jim@users.noreply.github.com>
James O'Leary <65884233+jpohhhh@users.noreply.github.com>
James Reynolds <magnusviri@users.noreply.github.com>
jameswu2014 <545426914@qq.com>
Jan Boon <jan.boon@kaetemi.be>
Jan Boon <kaetemi@gmail.com>
Jan Ekström <jeebjp@gmail.com>
Jan Patrick Lehr <jp.lehr@gmail.com>
Jan Ploski <jpl@plosquare.com>
Jannis Schönleber <joennlae@gmail.com>
Jared Tweed <jaredtwe@gmail.com>
Jared Van Bortel <cebtenzzre@gmail.com>
Jared Van Bortel <jared@nomic.ai>
Jaromír Hradílek <jhradilek@gmail.com>
Jason C.H <ctrysbita@outlook.com>
Jason McCartney <jmac@theroot.org>
Jason Ni <jason.ni.py@gmail.com>
Jason Stillerman <jason.t.stillerman@gmail.com>
jason_w <jason.wang@126.com>
Jassieluo <130133492+Jassieluo@users.noreply.github.com>
Jay <BusyJay@users.noreply.github.com>
Jay Zenith <162098309+JayZenith@users.noreply.github.com>
Jayant Lohia <rajiblohia@gmail.com>
JC <43374599+MrSMlT@users.noreply.github.com>
jdomke <28772296+jdomke@users.noreply.github.com>
Jean-Christophe Hoelt <hoelt@fovea.cc>
Jean-Michaël Celerier <jeanmichael.celerier+github@gmail.com>
Jed Fox <git@jedfox.com>
Jeff Bolz <jbolz@nvidia.com>
Jeffrey Morgan <jmorganca@gmail.com>
Jeffrey Quesnelle <emozilla@nousresearch.com>
Jeremy Demeule <jdemeule@users.noreply.github.com>
Jeremy Rand <244188+JeremyRand@users.noreply.github.com>
Jeroen Mostert <jeroen.mostert@cm.com>
jeromew <jerome.wagner@m4x.org>
Jesse <jesse@createthis.com>
Jesse Gross <jesse@kernel.org>
Jesse Ikonen <jesse.ikonen@gmail.com>
Jesse Jojo Johnson <williamsaintgeorge@gmail.com>
Jesse LaRose <jesse@taey.ai>
Jesse Posner <jesse.posner@gmail.com>
Jesus Talavera <145992175+jesus-talavera-ibm@users.noreply.github.com>
Jett Janiak <jettjaniak@gmail.com>
Jeximo <jeximo@gmail.com>
JFLFY2255 <JFLFY2255@163.com>
JH23X <165871467+JH23X@users.noreply.github.com>
Jhen-Jie Hong <iainst0409@gmail.com>
Jiacheng (Jason) Chen <76919340+jiachengjason@users.noreply.github.com>
Jiahao Li <liplus17@163.com>
jiahao su <damow890@gmail.com>
Jian Liao <jianliao@users.noreply.github.com>
Jiang, Fish <fish.jiang@intel.com>
JidongZhang-THU <1119708529@qq.com>
Jie Fu (傅杰) <fujie_email@sina.com>
Jie Fu (傅杰) <jiefu@tencent.com>
jiez <373447296@qq.com>
Jillis ter Hove <j.terhove@gmail.com>
Jim Wu <jimw567@users.noreply.github.com>
Jinwoo Jeong <33892306+williamjeong2@users.noreply.github.com>
Jinyang He <hejinyang@loongson.cn>
jinzihao <jinzihao1996@gmail.com>
Jiří Podivín <66251151+jpodivin@users.noreply.github.com>
Jiří Sejkora <Sejseloid@gmail.com>
JJJYmmm <92386084+JJJYmmm@users.noreply.github.com>
jklincn <985765408@qq.com>
jklincn <jklincn@outlook.com>
JM Robles <roblesjm@gmail.com>
jneem <joeneeman@gmail.com>
Joan Fontanals <jfontanalsmartinez@gmail.com>
Joan Fontanals <joan.fontanals.martinez@jina.ai>
João Dinis Ferreira <hello@joaof.eu>
Joe Eli McIlvain <joe.eli.mac@gmail.com>
Joe Rowell <joerowell4@gmail.com>
Joe Todd <joe.todd@codeplay.com>
joecryptotoo <80373433+joecryptotoo@users.noreply.github.com>
Johan <JohanAR@users.noreply.github.com>
Johannes Gäßler <johannesg@5d6.de>
Johannes Rudolph <johannes.rudolph@gmail.com>
John <78893154+cmp-nct@users.noreply.github.com>
John Balis <phobossystems@gmail.com>
John Bean <113509988+johnbean393@users.noreply.github.com>
John Eismeier <42679190+jeis4wpi@users.noreply.github.com>
John Smith <67539080+kingsidelee@users.noreply.github.com>
Johnathan Craig Maudlin <13183098+jcmdln@users.noreply.github.com>
JohnnyB <jboero@users.noreply.github.com>
johnson442 <56517414+johnson442@users.noreply.github.com>
jojorne <jojorne@users.noreply.github.com>
jon-chuang <9093549+jon-chuang@users.noreply.github.com>
Jonas Jankaitis <111707981+John-194@users.noreply.github.com>
Jonas Wunderlich <32615971+jonas-w@users.noreply.github.com>
Jonathan <47618606+jbuchananr@users.noreply.github.com>
Jonathan Clohessy <jonathan.clohessy@arm.com>
Jonathan Graehl <99024+graehl@users.noreply.github.com>
Jorge A <161275481+jorgealias@users.noreply.github.com>
Jose Maldonado <63384398+yukiteruamano@users.noreply.github.com>
Joseph Stahl <1269177+josephst@users.noreply.github.com>
Josh Leverette <josh@ceres1.space>
Josh Ramer <josh.ramer@icloud.com>
Joshua Cogliati <jrincayc@users.noreply.github.com>
Joyce <joycebrum@google.com>
jp-x-g <jpxg-dev@protonmail.com>
Juan Calderon-Perez <835733+gaby@users.noreply.github.com>
Judd <4046440+foldl@users.noreply.github.com>
Judd <foldl@users.noreply.github.com>
Juk Armstrong <69222624+jukofyork@users.noreply.github.com>
jukofyork <69222624+jukofyork@users.noreply.github.com>
Julian Pscheid <julian@pscheid.com>
Julien Chaumond <julien@huggingface.co>
Julien Denize <40604584+juliendenize@users.noreply.github.com>
Julien Jerphanion <git@jjerphan.xyz>
Julius Arkenberg <arki05@users.noreply.github.com>
Julius Tischbein <jtischbein@nvidia.com>
Julius Tischbein <ju.tischbein@gmail.com>
Jun Hee Yoo <contact.jhyoo@gmail.com>
Jun Jie <71215065+junnjiee16@users.noreply.github.com>
junchao-loongson <68935141+junchao-loongson@users.noreply.github.com>
junchao-zhao <68935141+junchao-loongson@users.noreply.github.com>
Junil Kim <logyourself@gmail.com>
Junmo Kim <me@junmo.kim>
Junwon Hwang <nuclear1221@gmail.com>
Junyang Lin <justinlin930319@hotmail.com>
Juraj Bednar <juraj@bednar.io>
Jürgen Schmied <github@juergenschmied.de>
JusteLeo <leonard.adamo66@gmail.com>
Justin Bradford <jabradford@gmail.com>
Justin Parker <jparkerweb@gmail.com>
Justin Santa Barbara <justinsb@google.com>
Justin Suess <justin.suess@westpoint.edu>
Justina Cho <justcho5@gmail.com>
Justine Tunney <jtunney@gmail.com>
Justine Tunney <jtunney@mozilla.com>
Juuso Alasuutari <juuso.alasuutari@gmail.com>
Juyoung Suk <juyoung.suk@trillionlabs.co>
JvM <mourix@live.nl>
jwj7140 <32943891+jwj7140@users.noreply.github.com>
k.h.lai <adrian.k.h.lai@outlook.com>
k4ss4n <128936199+k4ss4n@users.noreply.github.com>
Kaben Nanlohy <kaben.nanlohy@gmail.com>
Kabir Potdar <kabirpotdar7@gmail.com>
Kabir08 <62639358+Kabir08@users.noreply.github.com>
Kai Pastor <dg0yt@darc.de>
kaizau <kaizau@users.noreply.github.com>
Kakaru <97896816+KakaruHayate@users.noreply.github.com>
kallewoof <kalle.alm@gmail.com>
kallewoof <karljohan-alm@garage.co.jp>
kalomaze <66376113+kalomaze@users.noreply.github.com>
Kamalesh VS <76260512+kkjjkamal123@users.noreply.github.com>
Kamil Tomšík <info@tomsik.cz>
kang <tpdns9032100@gmail.com>
Kangjia Gao <145212963+kkkzbh@users.noreply.github.com>
Kante Yin <kerthcet@gmail.com>
karavayev <192749314+karavayev@users.noreply.github.com>
Karol Kontny <82021046+kkontny@users.noreply.github.com>
Karsten Weiss <knweiss@gmail.com>
Karthick <j.karthic2004@gmail.com>
Karthik Kumar Viswanathan <195178+guilt@users.noreply.github.com>
Karthik Sethuraman <k.seth1993@gmail.com>
Kartik Sirohi <99896785+sirohikartik@users.noreply.github.com>
Kashif Rasul <kashif.rasul@gmail.com>
KASR <karim.asrih@gmail.com>
Kasumi <90275229+kasumi-1@users.noreply.github.com>
Katostrofik <georgiopapairo@gmail.com>
katsu560 <118887472+katsu560@users.noreply.github.com>
Kawrakow <48489457+ikawrakow@users.noreply.github.com>
kchro3 <62481661+kchro3@users.noreply.github.com>
kdkd <2569413+kdkd@users.noreply.github.com>
Keiichi Tabata <keiichi.tabata@outlook.com>
Keke Han <hankeke303@163.com>
Kenvix ⭐ <kenvixzure@live.com>
Kerfuffle <44031344+KerfuffleV2@users.noreply.github.com>
Kevin Gibbons <bakkot@gmail.com>
Kevin Hannon <kehannon@redhat.com>
Kevin Ji <1146876+kevinji@users.noreply.github.com>
Kevin Kwok <antimatter15@gmail.com>
Kevin Liu <4396kevinliu@gmail.com>
Kevin Lo <kevlo@kevlo.org>
Kevin Pouget <kpouget@redhat.com>
Kevin Wang <kevmo314@gmail.com>
Khashayar Ghafouri <43180261+khashayarghafouri@users.noreply.github.com>
khimaros <me@khimaros.com>
Kilian Hu <90606809+kilian-hu@users.noreply.github.com>
Kilian Krampf <kilian@krampf.de>
kiltyj <kiltyj@gmail.com>
Kim S. <polydecay@users.noreply.github.com>
kimminsu <80271594+kimminsu38oo@users.noreply.github.com>
KITAITI Makoto <KitaitiMakoto@gmail.com>
kiwi <122582483+kiwi142857@users.noreply.github.com>
klosax <131523366+klosax@users.noreply.github.com>
KokerZhou <111279477+KokerZhou@users.noreply.github.com>
Kolen Cheung <ickc@users.noreply.github.com>
kononnable <kononnable@gmail.com>
Konrad Moren <kmoren@nvidia.com>
konradmb <konradmb@o2.pl>
Konstantin Herud <konstantin.herud@denkbares.com>
Konstantin Zhuravlyov <konstantin.zhuravlyov@amd.com>
Krishna Sridhar <99914379+srikris-sridhar@users.noreply.github.com>
krystiancha <krystian@krystianch.com>
kubawoo <k-wach@o2.pl>
kumaal <44551860+kumaal@users.noreply.github.com>
kunal-vaishnavi <115581922+kunal-vaishnavi@users.noreply.github.com>
kunnis <kunnis@users.noreply.github.com>
Kunshang Ji <kunshang.ji@intel.com>
kuronekosaiko <EvanChanJ@163.com>
Kusha Gharahi <3326002+kushagharahi@users.noreply.github.com>
kustaaya <58045274+kustaaya@users.noreply.github.com>
kuvaus <22169537+kuvaus@users.noreply.github.com>
kvc0 <3454741+kvc0@users.noreply.github.com>
Kwa Jie Hao <31984694+kwajiehao@users.noreply.github.com>
kwin1412 <42286931+kwin1412@users.noreply.github.com>
Kyle Bruene <KyleBruene@users.noreply.github.com>
Kyle Liang <liangmanlai@gmail.com>
Kyle Mistele <kyle@mistele.com>
KyleHagy <59183061+KyleHagy@users.noreply.github.com>
Kylin <56434533+KyL0N@users.noreply.github.com>
l-austenfeld <53152202+l-austenfeld@users.noreply.github.com>
l3utterfly <gc.pthzfoldr@gmail.com>
l8bloom <l8bloomapi@gmail.com>
LaffeyNyaa <112215776+LaffeyNyaa@users.noreply.github.com>
laik <laik.lj@me.com>
lainon1 <271530700+lainon1@users.noreply.github.com>
Lars Grammel <lars.grammel@gmail.com>
Lars Sonchocky-Helldorf <lars.sonchocky-helldorf@hamburg.de>
las7 <98077186+las7@users.noreply.github.com>
Lasse Lauwerys <65569591+Iemand005@users.noreply.github.com>
Laura <Tijntje_7@msn.com>
Law Po Ying <30721578+yingying0906@users.noreply.github.com>
lcy <lcy0321@users.noreply.github.com>
ldwang <ftgreat@163.com>
le.chang <cljs118@126.com>
Lee <44310445+lx200916@users.noreply.github.com>
Lee Drake <b.lee.drake@gmail.com>