-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepo_list.csv
We can't make this file beautiful and searchable because it's too large.
6052 lines (6052 loc) · 1000 KB
/
repo_list.csv
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
,Code,Language,Stars,Type,URL,build_script,use_cmake,use_configure,usedHash,note,PushDate
7296.0,openwall--john,C,9222.0,git,https://github.com/openwall/john.git,special_configure/john.sh,0.0,False,c8e21e81ea1e4d300c0036c6a2e7866c9e78d3e0,,
7273.0,stotko--stdgpu,C++,1072.0,git,https://github.com/stotko/stdgpu.git,special_cmake/stdgpu.sh,1.0,,965a29f7c3fa72dc123c5a1abc5ddbadf3c39815,,2024-04-10 07:11:37+00:00
7947.0,ddemidov--amgcl,C++,702.0,git,https://github.com/ddemidov/amgcl.git,default_cmake.sh,1.0,,42ee9da2057153b1aef734e8e462c846a33aa805,,
7937.0,DualSPHysics--DualSPHysics,C++,519.0,git,https://github.com/DualSPHysics/DualSPHysics.git,special_configure/DualSPHysics.sh,0.0,False,ecf3e9a98fcc3957840dd11b9973c5c60e134065,,
7219.0,openmultiplayer--open.mp,C++,389.0,git,https://github.com/openmultiplayer/open.mp.git,,1.0,,abee9cd169a22df47632f4cf5506b0e581e72428,only supports clang,
7495.0,ekondis--mixbench,C++,330.0,git,https://github.com/ekondis/mixbench.git,special_cmake/mixbench.sh,0.0,False,440a133a6423840ce613d1eaab43cd586effd389,,2024-02-23 20:05:12+00:00
7220.0,kimwalisch--primecount,C++,302.0,git,https://github.com/kimwalisch/primecount.git,default_cmake.sh,1.0,,e7d9c71bb4c6cc2d7435f32e939787a2d78e4cb9,,
7370.0,zchrissirhcz--cmake_examples,C++,272.0,git,https://github.com/zchrissirhcz/cmake_examples.git,,0.0,False,cb9e41a05c711f372e225651e9fb0eb797b40dcc,"examples to use build system, nothing to build?",
7984.0,ricosjp--monolish,C++,189.0,git,https://github.com/ricosjp/monolish.git,,1.0,,a4bd3e6aedff26bbe91ea619ffb6425ce7687e12,configure error finding blas libary,
7393.0,InteractiveComputerGraphics--CompactNSearch,C++,148.0,git,https://github.com/InteractiveComputerGraphics/CompactNSearch.git,default_cmake.sh,1.0,,99fa1fe052f353b33957948f36e628500f1737f7,,2022-09-09 10:37:38+00:00
5074.0,tgmattso--OpenMP_intro_tutorial,C,114.0,git,https://github.com/tgmattso/OpenMP_intro_tutorial.git,special_configure/OpenMP_intro_tutorial.sh,0.0,False,56a6b0160e3f5c0a5711658436e3f9657ee57b09,,2020-11-25 04:25:51+00:00
7790.0,MultithreadCorner--Hydra,C++,107.0,git,https://github.com/MultithreadCorner/Hydra.git,,1.0,,aac22ce260362e20e173594deec48d2dc2100910,header-only,
7083.0,OpenMP--sources,C,96.0,git,https://github.com/OpenMP/sources.git,,0.0,False,c8fe3d234ddbd5949d39f295f42455f626fd4582,header only,
6051.0,olmallet81--URT,C++,87.0,git,https://github.com/olmallet81/URT.git,,0.0,False,eae7f72df7b99d291bb6a227f212c557a794558e,build error: missing std:: header include,
7543.0,masadcv--FastGeodis,C++,80.0,git,https://github.com/masadcv/FastGeodis.git,special_configure/FastGeodis,0.0,False,0f6cc1e6e104bee56e6eb9dfdd2cfd29c21a1a3e,,
4337.0,ysh329--OpenMP-101,C,74.0,git,https://github.com/ysh329/OpenMP-101.git,,0.0,False,74bba4818a945bfc7d2d66b27ed48486d4757509,OpenMP Tutorial: not clear what to build,
7899.0,tgmattso--OmpCommonCore,C,68.0,git,https://github.com/tgmattso/OmpCommonCore.git,,0.0,False,9874ef58dffb2cf615717039cda0847f3eeb4444,OpenMP Tutorial: not clear what to build,
8063.0,LLNL--dataracebench,C,66.0,git,https://github.com/LLNL/dataracebench.git,,0.0,False,e1bffc57f35f2751afea6c9379b5863e0b2abfd9,benchmark: not clear what to build,
7262.0,ROCm--rocALUTION,C++,62.0,git,https://github.com/ROCm/rocALUTION.git,default_cmake.sh,1.0,,aff9344fd5b7df8840593a64879e7e6bdd6217c2,,2024-04-16 05:59:47+00:00
7826.0,ashvardanian--ParallelReductionsBenchmark,C++,59.0,git,https://github.com/ashvardanian/ParallelReductionsBenchmark.git,default_cmake.sh,1.0,,c2d7acd4e65490f12400ffb746475cb826e4ad39,needs cuda,2023-11-28 20:52:47+00:00
7478.0,cjmcv--hpc,C++,49.0,git,https://github.com/cjmcv/hpc.git,,0.0,False,4a72edd9ff88a14db61c63135220258b0f70d599,tutorial: not clear what to build,
7365.0,eth-cscs--SpFFT,C++,47.0,git,https://github.com/eth-cscs/SpFFT.git,special_cmake/spfft.sh,1.0,,0a0a08c203b311d10d840444886e61c87e2d20f0,,2024-03-21 11:50:24+00:00
2328.0,FeeZhu--ICP,C++,44.0,git,https://github.com/FeeZhu/ICP.git,,0.0,False,5a7deebaae67448b9271f995b6e2a91ec838e0aa,cant understand chinese build instructions,
4445.0,t-hishinuma--DD-AVX_v3,C++,40.0,git,https://github.com/t-hishinuma/DD-AVX_v3.git,default_make.sh,0.0,False,7b97503b2ee9b5c8d80f48674578b0629cb8ad35,,
2077.0,shreepads--pdfcrack-mp,C,38.0,git,https://github.com/shreepads/pdfcrack-mp.git,default_make.sh,0.0,False,7b1201718784f0d3aa60ee1ce22b82a1b0997a9b,,
4912.0,CyCTW--Parallel-MCTS,C++,37.0,git,https://github.com/CyCTW/Parallel-MCTS.git,,1.0,,b346b964b2203cf8d7d9ca50e5d3a011b4bdc41d,build error: missing header include from std:: (additionally need to execute sed -i 's/master/main/g' ../CMakeLists.txt.in),
6768.0,codearxiv--PCReconstruct,C++,34.0,git,https://github.com/codearxiv/PCReconstruct.git,,0.0,False,a247aea9fc4cf8530308ecb2ad130c501530b072,,
8111.0,Markus-Goetz--hpdbscan,C++,32.0,git,https://github.com/Markus-Goetz/hpdbscan.git,,1.0,,ce84bc17d8847305f6f8d43700b233b498f6027a,build error: missing header include from std::,
6781.0,Mjolnir-MD--Mjolnir,C++,30.0,git,https://github.com/Mjolnir-MD/Mjolnir.git,,1.0,,20dbdea5529c24a49b71e8876ac1651efc512445,build error: error in src code undefined types,
5678.0,chenxuhao--gardenia,C++,28.0,git,https://github.com/chenxuhao/gardenia.git,,0.0,False,5894df11cf47f8839945edadff43dc79e260216d,,
1795.0,jimouris--parallel-convolution,C,27.0,git,https://github.com/jimouris/parallel-convolution.git,,0.0,False,4f83b34f1bebfce73fdf4fe330d8103859332cda,,
8167.0,tgmattso--ATPESC,C,26.0,git,https://github.com/tgmattso/ATPESC.git,,0.0,False,cf8008ee3f1b66d19ab68a376873aef0a29e49b9,,
1312.0,fzqneo--ByteSlice,C++,25.0,git,https://github.com/fzqneo/ByteSlice.git,special_cmake/ByteSlice.sh,1.0,,48a6e54da66795ffec8d649cd5be3fec01436f9f,,2018-06-22 01:13:09+00:00
1434.0,moorejs--APSP-in-parallel,C++,24.0,git,https://github.com/moorejs/APSP-in-parallel.git,,0.0,False,80bfcb80ce6125700fb18bb73a2424e329a8217a,,
4786.0,NJU-TJL--OpenMP-MPI_Labs,C,24.0,git,https://github.com/NJU-TJL/OpenMP-MPI_Labs.git,,0.0,False,391c6957cc6d6c28fcae74bcf599a4b9a76c9e1b,,
4033.0,Tyrant1337--Lu-Decomposition-in-Parallel,C++,23.0,git,https://github.com/Tyrant1337/Lu-Decomposition-in-Parallel.git,,0.0,False,c2f607b3105efd15614fef2a29b311502426785f,,
3488.0,illuhad--hipCPU,C++,21.0,git,https://github.com/illuhad/hipCPU.git,default_cmake.sh,1.0,,0aa4e2c0a7f83956c0948e0d34aff0e3f233b406,,2020-06-16 14:32:28+00:00
4385.0,shikishima-TasakiLab--Involution-PyTorch,C++,21.0,git,https://github.com/shikishima-TasakiLab/Involution-PyTorch.git,,0.0,False,2319dea02b2f4befe8fb5e82bd5d0d99cb48f919,,
7334.0,Foundations-of-HPC--High-Performance-Computing-2023,C,21.0,git,https://github.com/Foundations-of-HPC/High-Performance-Computing-2023.git,,0.0,False,f5b065fa7afced06c6047c6ad8a977bbeddb7508,,
2316.0,RadioRedFox--FoxNN,C++,20.0,git,https://github.com/RadioRedFox/FoxNN.git,,0.0,False,6f1629f46d6dfd2a23ebe52dbc02c9f68a08d0cb,,
7308.0,bsc-pm--dlb,C,19.0,git,https://github.com/bsc-pm/dlb.git,,0.0,False,a17b7f434cd725cef47cde0cd7c5af652308739a,,
7363.0,flatironinstitute--SkellySim,C++,19.0,git,https://github.com/flatironinstitute/SkellySim.git,,1.0,False,77fb71c75012353e269ebcb11313877d17a8320a,,
2943.0,yangyang14641--ParallelProgrammingCourse,C,18.0,git,https://github.com/yangyang14641/ParallelProgrammingCourse.git,,0.0,False,9d36d2fae1d5a42aa4d8d88ee884182ebc3ccd78,,
6146.0,esa-tu-darmstadt--daphne-benchmark,C++,18.0,git,https://github.com/esa-tu-darmstadt/daphne-benchmark.git,,0.0,False,6df0108efa43971e89ad105a86a28c0349f5d54d,,
7398.0,PhasicFlow--PhasicFlowPlus,C++,17.0,git,https://github.com/PhasicFlow/PhasicFlowPlus.git,,0.0,False,0adfb0d7c37166ee934cb22388b54020b77156eb,,
1614.0,MultithreadCorner--MCBooster,C++,17.0,git,https://github.com/MultithreadCorner/MCBooster.git,,1.0,,87c6fef6a6105f16f85023b14865e72aed85a727,header only,
1544.0,KarypisLab--TriangleCounting,C,16.0,git,https://github.com/KarypisLab/TriangleCounting.git,special_cmake/KarypisLab.sh,1.0,,7c1a0db20d4dca307bdb32c77d967d24bbca8ef6,,2018-03-28 22:36:27+00:00
2099.0,Obi-Wan--dwt,C++,15.0,git,https://github.com/Obi-Wan/dwt.git,,0.0,False,da1523b6ffe8fbf18cce1cfa2e55f488b2b824df,,
8055.0,AMDComputeLibraries--OpenMPApps,C,14.0,git,https://github.com/AMDComputeLibraries/OpenMPApps.git,,0.0,False,ffcdb85749f0a445c07993d0e3b3b44ba1d10c83,,
1692.0,AlbaMustafaj--Parallel-Computing-Projetcs,C,14.0,git,https://github.com/AlbaMustafaj/Parallel-Computing-Projetcs.git,,0.0,False,ddf29edd73e79b8c4f2699ae47541b454838a133,,
4018.0,Happyxianyueveryday--parallel-programming,C,14.0,git,https://github.com/Happyxianyueveryday/parallel-programming.git,,0.0,False,3a33e2ee34c1050d31ae80fdf20ab1bc47e06bf8,,
1669.0,yuanyuxin0077--FD-RTM-FWI-2018.01.31backup,C,14.0,git,https://github.com/yuanyuxin0077/FD-RTM-FWI-2018.01.31backup.git,,0.0,False,ecb6ac25f8c819b5dcfae48dd3c0cae968029e00,,
5808.0,IBM--openacc-openmp-tutorial,C,14.0,git,https://github.com/IBM/openacc-openmp-tutorial.git,,0.0,False,0ee493b7408fd4b0ee20d2fc3e54f2fc91d0e7e4,,
7472.0,kovmir--l2flood,C,13.0,git,https://github.com/kovmir/l2flood.git,,0.0,False,ce24d7987ecbbf69c207a0e3c3cae581e734337e,,
2766.0,lionell--pagerank,C++,13.0,git,https://github.com/lionell/pagerank.git,,0.0,False,334f6fc21c9b9425ae5fd38eb43790eb5cf2290a,,
2555.0,arslansadiq--Parallel-Programming-TUM,C,12.0,git,https://github.com/arslansadiq/Parallel-Programming-TUM.git,,0.0,False,1206a685828be412bcae4b8036fb748fe180c6ae,,
5854.0,jinaojakezhang--FEDFEM,C++,12.0,git,https://github.com/jinaojakezhang/FEDFEM.git,,0.0,False,57368db0b2bb47216fea36851033da3f3bff639f,,
1543.0,KarypisLab--K-Truss,C,12.0,git,https://github.com/KarypisLab/K-Truss.git,special_cmake/KarypisLab.sh,1.0,,42ac2bf5d5407180fa487eb709b8104b45d99301,,2018-03-28 22:48:18+00:00
176.0,robeastham--png-parallel,C++,12.0,git,https://github.com/robeastham/png-parallel.git,,0.0,False,8e9afc5083fffdb413bb60344a00a60cb9368df9,,
4641.0,ppg-uoi--OMPi,C,11.0,git,https://github.com/ppg-uoi/OMPi.git,default_configure.sh,0.0,True,eb8bf77a3650c26e99e27d3bcbdc056a1886625b,,
5356.0,conradsnicta--armadillo-gmm,C++,11.0,git,https://github.com/conradsnicta/armadillo-gmm.git,,0.0,False,023ef6752d9aa7aa2e7a1d9ba239dc8e6b0b2034,,
3501.0,DLopezMadrid--tracerr,C,11.0,git,https://github.com/DLopezMadrid/tracerr.git,,1.0,False,d8b607e2b02c8acab3a4214409d8cc2fe053288b,,
4315.0,HxnDev--Password-Cracker-using-Brute-Force-Algorithm,C++,10.0,git,https://github.com/HxnDev/Password-Cracker-using-Brute-Force-Algorithm.git,,0.0,False,6cd3f24b1cf8246091c49635b354cda6f155a41c,,
5365.0,Kerber31--Smoothed-Particle-Hydrodynamics,C++,10.0,git,https://github.com/Kerber31/Smoothed-Particle-Hydrodynamics.git,,0.0,False,ac82d839c428a39437bd52f2eb9c3819e6390fdb,,
3070.0,jrmadsen--madthreading,C++,10.0,git,https://github.com/jrmadsen/madthreading.git,,1.0,False,e8981d61a832565e469bf4ae967d81ac08262ac0,,
4994.0,wandersonca--HPC-Password-Cracker,C,10.0,git,https://github.com/wandersonca/HPC-Password-Cracker.git,,0.0,False,685c9dd8565b88f49349354074150a956bbbf096,,
1861.0,jl2922--omp_hash_map,C++,10.0,git,https://github.com/jl2922/omp_hash_map.git,,0.0,False,45e188063cbd3566889308f1262035eacccc79e2,,
7996.0,UDC-GAC--pato,C++,9.0,git,https://github.com/UDC-GAC/pato.git,default_make.sh,0.0,False,1232cc9c71fe6b127a96845e34b21a8929e92fb2,,
4549.0,adharshkamath--Mathy-Compiler,C,9.0,git,https://github.com/adharshkamath/Mathy-Compiler.git,,0.0,False,0ca27ad85b4a4104f684871b555b2ed1ae9b54c8,,
1615.0,YSZhuoyang--parallel-random-forests,C++,9.0,git,https://github.com/YSZhuoyang/parallel-random-forests.git,,0.0,False,07cb9a663a8b66d3edc8a33290bcd2c4798d4be8,,
6557.0,argonne-lcf--HPC-Patterns,C++,9.0,git,https://github.com/argonne-lcf/HPC-Patterns.git,,0.0,False,76ee6ca51f7e1ef6d9b023ef45ca6307643f6fff,,
7927.0,zakarouf--z_,C,9.0,git,https://github.com/zakarouf/z_.git,,0.0,False,8d9e231d6c34b8a331050e358033d65430934547,,
5167.0,TheFighters--Smith-Waterman,C,8.0,git,https://github.com/TheFighters/Smith-Waterman.git,,0.0,False,d841dc1d01f294f1d30b7db9f04d74f285c73be6,,
5224.0,zygyz--romp,C++,8.0,git,https://github.com/zygyz/romp.git,,1.0,False,4ea4ad5b241bdc1e7ee09337e991449c2483f82c,,
3159.0,aafulei--cpp-parallel-bellman-ford,C++,8.0,git,https://github.com/aafulei/cpp-parallel-bellman-ford.git,,0.0,False,f0d81928a909f5379a16e356f49f73f43ce8d0f3,,
5693.0,Areesha-Tahir--Password-Cracker-Using-Distributed-Systems-In-CPP,C++,8.0,git,https://github.com/Areesha-Tahir/Password-Cracker-Using-Distributed-Systems-In-CPP.git,,0.0,False,c494640a380a124652578676bfc1d5825058c060,,
1904.0,dimikout3--Parallel-BiCGSTAB-,C++,8.0,git,https://github.com/dimikout3/Parallel-BiCGSTAB-.git,,0.0,False,bf703977711f04b3d91bc0a69cf5b4e469818ce8,,
7122.0,unibas-dmi-hpc--LB4OMP,C++,8.0,git,https://github.com/unibas-dmi-hpc/LB4OMP.git,,1.0,False,00b3ecf8264e6ddc0d0ee277345ba466a4e4ea2f,,
2045.0,miguelrochajr--ParallelProgramming,C,8.0,git,https://github.com/miguelrochajr/ParallelProgramming.git,,0.0,False,eefff7e08d0932f48a9aa1a361376bf15abe9c2d,,
1379.0,eozd--bnmf-algs,C++,8.0,git,https://github.com/eozd/bnmf-algs.git,,1.0,False,525a70d2b86dc0c762ea0362a81e4d1d734f631b,,
2656.0,hobywan--trinity,C++,7.0,git,https://github.com/hobywan/trinity.git,,1.0,False,e8350057f9a0511ba910fe92b0e626d358952d27,,
7150.0,hal-lab-u-tokyo--CGRAOmp,C++,7.0,git,https://github.com/hal-lab-u-tokyo/CGRAOmp.git,,1.0,False,a367a3f7ee3c4f0e21af66fc69e6f1fe59785017,,
5885.0,soanagno--sph-openmp,C++,7.0,git,https://github.com/soanagno/sph-openmp.git,,0.0,False,65dcb537e69202b3a7f49460df8ec84036a69aea,,
3774.0,iwatake2222--FastGameOfLife,C,7.0,git,https://github.com/iwatake2222/FastGameOfLife.git,default_cmake.sh,1.0,,2efeb56cb11f85ba405d41ccce0aee55d7268847,,
6663.0,Chang-LeHung--openmp-tutorial,C,7.0,git,https://github.com/Chang-LeHung/openmp-tutorial.git,default_cmake.sh,1.0,,3b84343513a5ca98c6af082e24fae094a4754634,,
3121.0,chizhang529--cme213,C++,7.0,git,https://github.com/chizhang529/cme213.git,,0.0,False,014dd5c2e1a8d46ef6d787a3a14ab2eb2c41460b,,
8018.0,pkestene--kokkos-proj-tmpl,C,7.0,git,https://github.com/pkestene/kokkos-proj-tmpl.git,,1.0,False,d89178acc8936fb90b7a370f4fdd5941d7d6e591,,
5475.0,jinaojakezhang--FEDFEMBioheatDeform,C++,7.0,git,https://github.com/jinaojakezhang/FEDFEMBioheatDeform.git,,0.0,False,e190b15a395c2e6d0702d9cb369ede4207519782,,
514.0,herculeshcs--SYCL-OpenCL-OpenMP-Benchmark,C,7.0,git,https://github.com/herculeshcs/SYCL-OpenCL-OpenMP-Benchmark.git,,0.0,False,7daad69e2a8087a9d493b4d4d722bb2f7c73436c,,
2136.0,SnailWalkerYC--LeNet-5_Speed_Up,C,7.0,git,https://github.com/SnailWalkerYC/LeNet-5_Speed_Up.git,,0.0,False,a8fd26c7abd4911a9d91dc2e85c3383296383ce4,,
2817.0,carlotacb--PAR-Laboratoris,C,6.0,git,https://github.com/carlotacb/PAR-Laboratoris.git,,0.0,False,831533f086032df8a350a23f45ca1ce6bbe19759,,
6063.0,luanteylo--minicurso-OpenMP,C,6.0,git,https://github.com/luanteylo/minicurso-OpenMP.git,,0.0,False,cec8b498a914c993bfc0280d498fc00c6a490873,,
2022.0,cosmin-ionita--OpenMP-Game-Of-Life,C++,6.0,git,https://github.com/cosmin-ionita/OpenMP-Game-Of-Life.git,default_make.sh,0.0,False,807a502c33a7c9de43c0eb3e1302221a2dfa3702,,2017-07-18 15:30:06+00:00
1185.0,VaradPathak--TopicModeling,C++,6.0,git,https://github.com/VaradPathak/TopicModeling.git,default_make.sh,0.0,False,eb427a869731bc2667876d20eeb07bef4de00786,,2014-04-15 16:33:38+00:00
70.0,hi2p-perim--smallpt-mpi,C++,6.0,git,https://github.com/hi2p-perim/smallpt-mpi.git,,1.0,False,14fa9ea5203ab057e03dba2149a39caf176b96ca,,
1737.0,mhassell--BEM,C++,6.0,git,https://github.com/mhassell/BEM.git,,0.0,False,f8204135028a434faca88b8cb7017da8fc268222,,
1485.0,KeelyHill--Parallel-Sat-Swarm,C++,6.0,git,https://github.com/KeelyHill/Parallel-Sat-Swarm.git,,0.0,False,a39e04cb14c251d8bb7acfd2883901c2a9dc9758,,
3349.0,zumrudu-anka--cpp-openmp-needleman-wunsch,C++,6.0,git,https://github.com/zumrudu-anka/cpp-openmp-needleman-wunsch.git,,0.0,False,18661acc2a2ef8963fff2354ae2a4db5b440b1c3,,
575.0,csteuer--ParallelBottomUpBalancedOctreeBuilder,C++,6.0,git,https://github.com/csteuer/ParallelBottomUpBalancedOctreeBuilder.git,,1.0,False,0e5554c78cf921d5cb88790fdad9d39f89d62281,,
4596.0,alecjacobson--openmp-on-macos,C++,6.0,git,https://github.com/alecjacobson/openmp-on-macos.git,,0.0,False,77265b79b0fc01ca2c3c3655d77641989c476ad7,,
2204.0,deepaktabraham--Parallelizing-Minutiae-based-Fingerprint-Recognition,C++,6.0,git,https://github.com/deepaktabraham/Parallelizing-Minutiae-based-Fingerprint-Recognition.git,,0.0,False,0541332a61dd09b954f6d5fc6ea2d7b958c996e5,,
5707.0,hassansalehe--TaskSanitizer,C++,6.0,git,https://github.com/hassansalehe/TaskSanitizer.git,,0.0,False,a3d3b441dc1a46eea2f8f39976dbd7bd68570aa8,,
2436.0,javierip--parallel-processing-teaching-toolkit,C++,5.0,git,https://github.com/javierip/parallel-processing-teaching-toolkit.git,,0.0,False,dd2339fbcab86365e24efa3d6cf01165e46fdbdd,,
7904.0,Padraig20--Global-Pair-Wise-Sequence-Alignment,C++,5.0,git,https://github.com/Padraig20/Global-Pair-Wise-Sequence-Alignment.git,,0.0,False,d1bf5447a94912a1fd9a192c714fb4dfef1bcdb7,,
7042.0,arkaprabha10--Simplex-Algorithm,C++,5.0,git,https://github.com/arkaprabha10/Simplex-Algorithm.git,,0.0,False,dc4a4ab7af59c61ed402c66c12578c38dddbffac,,
7821.0,lazzati-astro--MCRaT,C,5.0,git,https://github.com/lazzati-astro/MCRaT.git,,0.0,False,24385cf1a7350ad325101b9cd0944af7c571b674,,
2267.0,olcf-tutorials--openmp_offloading,C++,5.0,git,https://github.com/olcf-tutorials/openmp_offloading.git,,0.0,False,1ce419138301c34af8d1d2c79d2c9c5c3d6ab0d4,,
2171.0,Seretsi--Pencil_Rigger,C++,5.0,git,https://github.com/Seretsi/Pencil_Rigger.git,,0.0,False,e6fd2a1c3b5fe5337b7457f077fc757d5a7dc059,,
2626.0,ctomacheski--openmp-flisol,C++,5.0,git,https://github.com/ctomacheski/openmp-flisol.git,,0.0,False,8410f77f544f30c00d27b8cac42425ac2548f8b1,,
7059.0,jpuigcerver--nnutils,C++,5.0,git,https://github.com/jpuigcerver/nnutils.git,default_cmake.sh,1.0,,d3f6aaf58467623a6b808a13e178f5b001b209f4,,
786.0,leiyucs--Barrier-Synchronization,C,5.0,git,https://github.com/leiyucs/Barrier-Synchronization.git,,0.0,False,d233baf48c2daeed695b599507c746ccc161bde0,,
4186.0,sassanin--ParMooN,C,5.0,git,https://github.com/sassanin/ParMooN.git,,1.0,False,b156ec9f885e16b5bff06ad6c36f546c2ac9be96,,
4469.0,maitreyeepaliwal--Solving-System-of-linear-equations-in-parallel-and-serial,C,5.0,git,https://github.com/maitreyeepaliwal/Solving-System-of-linear-equations-in-parallel-and-serial.git,,0.0,False,8de5b909d30c461fe92d036b29d84b93145b854f,,
5969.0,mangoeffect--learn-openmp,C++,5.0,git,https://github.com/mangoeffect/learn-openmp.git,,0.0,False,ae738c05d8e186a303e413c899b02c4226389603,,
4179.0,agarwal-ayushi--Parallel-Matrix-Vector-Multiplication,C++,5.0,git,https://github.com/agarwal-ayushi/Parallel-Matrix-Vector-Multiplication.git,,0.0,False,0c92d7a27cf4c3d5a2285b752df35d399b2769fe,,
4057.0,GlenGGG--FastParallelMergeSort,C,5.0,git,https://github.com/GlenGGG/FastParallelMergeSort.git,,0.0,False,6676c08ea9c637ae48a857194373c3de545100b5,,
188.0,kallus--Lattice-gas-automata,C,5.0,git,https://github.com/kallus/Lattice-gas-automata.git,,0.0,False,e2d5c60a6cb8431752d5703e8881587a72cd38b9,,
8002.0,warwick-hpsc--MG-CFD-app-OP2,C++,5.0,git,https://github.com/warwick-hpsc/MG-CFD-app-OP2.git,,0.0,False,304e12205e9dab21d2b3adc2f3c15ac0a696b5cd,,
4719.0,BlackApple-LMZ--orb_extractor_with_openmp,C++,5.0,git,https://github.com/BlackApple-LMZ/orb_extractor_with_openmp.git,,0.0,False,18c40cba5ac7cfe28dcb711b228d110f52965937,,
1697.0,jeffamstutz--CPW,C++,4.0,git,https://github.com/jeffamstutz/CPW.git,,1.0,False,0f703b2d969f13a1fb50f758b0d7b6c2b98fac6b,,
3578.0,kym343--Super-resolution-SRCNN-VDSR-with-GUI,C++,4.0,git,https://github.com/kym343/Super-resolution-SRCNN-VDSR-with-GUI.git,,0.0,False,bd6c1ffad8651adda979812a65fe9b73918b2c00,,
5216.0,capellil--iPregel,C,4.0,git,https://github.com/capellil/iPregel.git,default_make.sh,0.0,False,4b53ac09e138698cccc7f76d6bedcd195f8fdda4,,2022-09-05 15:20:10+00:00
7630.0,SciCompKL--OpDiLib,C++,4.0,git,https://github.com/SciCompKL/OpDiLib.git,,0.0,False,93d05a762f1b614a84767ea5ba75fd7e2c27f317,,
2109.0,ddemidov--ilu_solve,C++,4.0,git,https://github.com/ddemidov/ilu_solve.git,,1.0,False,72c29633b0352217b7f0fd6f316590b378b6be22,,
7850.0,bsc-pm--tagaspi,C++,4.0,git,https://github.com/bsc-pm/tagaspi.git,,0.0,False,935a092256d652d26f620b2d79a012a277673990,,
208.0,jrk--QuakeTM,C,4.0,git,https://github.com/jrk/QuakeTM.git,,0.0,False,f024c830901aef900060737224523d6c9e443836,,
203.0,WilliamRen--pam-face-authentication,C++,4.0,git,https://github.com/WilliamRen/pam-face-authentication.git,,0.0,False,2834bd83e166fb5f0ee60e88c6b6df40a2a9f6bf,,
3747.0,Saroopashree--openmp-kmeans,C,4.0,git,https://github.com/Saroopashree/openmp-kmeans.git,,0.0,False,f3be2d3a1614161fb25d7afc9730c749fb1ef6e3,,
1453.0,PawanKL--Pthread-vs-OpenMP,C,4.0,git,https://github.com/PawanKL/Pthread-vs-OpenMP.git,,0.0,False,4d4db9cc8a6c3a59bee86090d9139e7835f90aeb,,
3246.0,VenkateshBH99--KMEANS-Clustering-C-OPENMP-CUDA-MPI,C,4.0,git,https://github.com/VenkateshBH99/KMEANS-Clustering-C-OPENMP-CUDA-MPI.git,,0.0,False,ad317d36ba756679422039fd7a3b4d900eb2b8c6,,
5476.0,jinaojakezhang--FEDFEMBioheatExpan,C++,4.0,git,https://github.com/jinaojakezhang/FEDFEMBioheatExpan.git,,0.0,False,771b07f09fb15b8bed5288a20464e8de73fe9dd0,,
8066.0,zamb0--2D_Fast_Fourier_Transform_OpenMPI,C,4.0,git,https://github.com/zamb0/2D_Fast_Fourier_Transform_OpenMPI.git,,0.0,False,0cd59706eccdab66a09bf2932606b59c07697b45,,
1146.0,ozamarripa--bmlpa,C++,4.0,git,https://github.com/ozamarripa/bmlpa.git,,0.0,False,694ab52ebbd1f6d1bc18dcca1ad5f7912ecb5f6a,,
5532.0,dayyass--hpc,C++,4.0,git,https://github.com/dayyass/hpc.git,,0.0,False,d88dba9c548b6f4c6a0260883a5cf4426ac119ff,,
17.0,noritsuna--HandDetectorOpenMP,C++,4.0,git,https://github.com/noritsuna/HandDetectorOpenMP.git,,0.0,False,1403e807230dd7f14aef3f5dc7d46eb555d836d1,,
4909.0,zonghan0904--2020_Fall_PP,C++,4.0,git,https://github.com/zonghan0904/2020_Fall_PP.git,,0.0,False,3c5633efec0cee0eb7bb284ece3e7c9bd9159433,,
974.0,pramttl--installing-icpc-osx,C,4.0,git,https://github.com/pramttl/installing-icpc-osx.git,,0.0,False,798f8bd9d0d4a089c67d66c4b203d58600540085,,
2786.0,MichaelRol--Lattice-Boltzmann-OpenMP,C,4.0,git,https://github.com/MichaelRol/Lattice-Boltzmann-OpenMP.git,,0.0,False,eae1de13e2f7ca4e35e2868d87b48afb2c6f5b67,,
7466.0,dfsp-spirit--cpp_geodesics,C++,4.0,git,https://github.com/dfsp-spirit/cpp_geodesics.git,default_cmake.sh,1.0,,3ed35e9bacd87db303c94871f4960c473846bb56,,2024-03-01 11:49:34+00:00
3092.0,Bayons--OpenMP,C,4.0,git,https://github.com/Bayons/OpenMP.git,,0.0,False,c8b56e848a2eb9bafd876f62362542e57816af42,,
2970.0,mcanalesmayo--jacobi-mpi,C,4.0,git,https://github.com/mcanalesmayo/jacobi-mpi.git,,0.0,False,ef1b1c61526ec361e20520aaec0f4fd0d2e43bfe,,
1219.0,robotenique--parallel-prog,C,4.0,git,https://github.com/robotenique/parallel-prog.git,,0.0,False,58741ad98b20a3ec30d74e6b361103367700a84b,,
1910.0,jeffamstutz--psimd,C++,3.0,git,https://github.com/jeffamstutz/psimd.git,,1.0,False,2c4340c045edf44db67f0af87de2f41b765e2f42,,
1631.0,carlosbg1991--80211ParallelEstimation,C,3.0,git,https://github.com/carlosbg1991/80211ParallelEstimation.git,,0.0,False,9cf10274763a9f9e8657056fb850df857c972028,,
7032.0,vtsynergy--MetaMorph,C,3.0,git,https://github.com/vtsynergy/MetaMorph.git,,0.0,False,ae849e27eaa33d5d596feb7e7b4a84e5f018dbaa,,
1792.0,batux--parallel_dataset_processing,C++,3.0,git,https://github.com/batux/parallel_dataset_processing.git,,0.0,False,35a6cd697e678cffa118157c4d2bad3e0e6b9135,,
1816.0,Kaizhang48--Class_Matrix_improved_by_openMP,C++,3.0,git,https://github.com/Kaizhang48/Class_Matrix_improved_by_openMP.git,,0.0,False,df3fa72af628c51429b98beab3fb4a4da6738942,,
3707.0,vlkale--lw-sched,C,3.0,git,https://github.com/vlkale/lw-sched.git,,1.0,,5ecf2cdf553277571490665b42e00a0b61b2a8c6,,
5470.0,CardLin--HHSA_CPU_OpenMP,C++,3.0,git,https://github.com/CardLin/HHSA_CPU_OpenMP.git,,0.0,False,359d8a9b30529da058337fd0d89df90b5e0beba1,,
3775.0,davide97l--PageRank-Parallel,C++,3.0,git,https://github.com/davide97l/PageRank-Parallel.git,default_make.sh,0.0,False,d10fcf1439c93c42db468025a9778ee6aabea10a,,2020-03-20 03:58:35+00:00
79.0,jabl--ls_affinity,C,3.0,git,https://github.com/jabl/ls_affinity.git,,0.0,False,8b3914bfdcb22c4fb6dd5f502caf54ae4289a3e6,,
7364.0,Foundations-of-HPC--Advanced-High-Performance-Computing-2023,C,3.0,git,https://github.com/Foundations-of-HPC/Advanced-High-Performance-Computing-2023.git,,0.0,False,6ea4efeaf68d6dec6235921a7032b318786b53d7,,
1156.0,chamalis--knightsTour_OMP,C,3.0,git,https://github.com/chamalis/knightsTour_OMP.git,,0.0,False,19055a882ff19bb11015adedd15b052372b1360e,,
8178.0,MarcVivas--Verlet-2D-particle-physics-engine,C++,3.0,git,https://github.com/MarcVivas/Verlet-2D-particle-physics-engine.git,,1.0,False,60773624354bf589f125ecec17bcdb5ceb9304b9,,
23.0,varunsharma0286--LaplaceEquation,,3.0,git,https://github.com/varunsharma0286/LaplaceEquation.git,,0.0,False,c679a07453f7dc1d56b44044a757a20604edb671,,
951.0,pengjuntc--knapsack-openmp,C,3.0,git,https://github.com/pengjuntc/knapsack-openmp.git,default_make.sh,0.0,False,389f4b574c28a3c037bd129a939f13945c721d63,,2015-05-19 17:48:02+00:00
1031.0,tanner-wauchope--Parallelized-Matrix-Multiplier,C,3.0,git,https://github.com/tanner-wauchope/Parallelized-Matrix-Multiplier.git,,0.0,False,4c71b3965846f8b6cb5ccd33736b5fc83f32250b,,
1282.0,hermit-os--libomp_oss,C,3.0,git,https://github.com/hermit-os/libomp_oss.git,default_cmake.sh,1.0,,4a4ecc1a2ebe29ca58213e1902831b1e547e8f16,,
5421.0,kekkokalko--Minimum-element-for-each-column-in-a-matrix-OPENMP,C,3.0,git,https://github.com/kekkokalko/Minimum-element-for-each-column-in-a-matrix-OPENMP.git,,0.0,False,58cf0194286b5feb815e82d0998b676edaaab86c,,
3835.0,MetalheadKen--RayTracingInOneWeekend,C,3.0,git,https://github.com/MetalheadKen/RayTracingInOneWeekend.git,default_make.sh,0.0,False,d634135455ca44bccb1dc7e311b4518ab209cdfd,,
7182.0,dario-coscia--ParallelConv,C++,3.0,git,https://github.com/dario-coscia/ParallelConv.git,,0.0,False,4283ad0c5b832635fd2f1b27d2d5bca05ba587aa,,
181.0,dgquintas--libmpplas,C++,3.0,git,https://github.com/dgquintas/libmpplas.git,,0.0,False,d2bd9b752e0131186dcac9b261c9bc28289acb42,,
3962.0,gabrielemirando--image-segmentation,C,3.0,git,https://github.com/gabrielemirando/image-segmentation.git,default_make.sh,0.0,False,c2d82d09c765720fa65b7c67e2d86e2ae63a249e,,2020-01-02 16:44:02+00:00
8116.0,ferder1ke--LIME_Neon_Openmp,C++,3.0,git,https://github.com/ferder1ke/LIME_Neon_Openmp.git,,0.0,False,cffd673ce4ede609a54b39ac0b9b61c308c3d6c6,,
1321.0,bkazi--lattice-boltzmann,C,3.0,git,https://github.com/bkazi/lattice-boltzmann.git,,0.0,False,b0f63c7d6cc20ba5212d4b43bef1c6bbcf60d21a,,
6268.0,abagali1--mandelbrot,C,3.0,git,https://github.com/abagali1/mandelbrot.git,,0.0,False,fc0041609dd7e1f7b362289b866581e13a3e7358,,
5719.0,Sitaras--Parallel-Systems-Project,C,3.0,git,https://github.com/Sitaras/Parallel-Systems-Project.git,,0.0,False,3b497eef3a3bb55038783ba80f1cb93537a4e96f,,
6696.0,ECP-ExaGraph--neve,C++,3.0,git,https://github.com/ECP-ExaGraph/neve.git,,0.0,False,37b37b9aa28539833808b6f4e88cd3e83c510dfa,,
6514.0,ambipomyan--CNN_OpenMP,C++,3.0,git,https://github.com/ambipomyan/CNN_OpenMP.git,,0.0,False,06efe01ef4f807d34754b368cf4ab66b12678cd7,,
6212.0,GiuseppeFiorillo--Calcolo-parallelo-OpenMP-,C,3.0,git,https://github.com/GiuseppeFiorillo/Calcolo-parallelo-OpenMP-.git,,0.0,False,16389784ab3d59c213c662a91e843d29bdc466b1,,
3239.0,kaserashi--Parallelization-of-Smith-Waterman-Algorithm,C,3.0,git,https://github.com/kaserashi/Parallelization-of-Smith-Waterman-Algorithm.git,,0.0,False,3aaca95e20ecaa4e32673381cd8899c3b13664bb,,
2172.0,ofloveandhate--adv_sci_comp_spring2017,C++,3.0,git,https://github.com/ofloveandhate/adv_sci_comp_spring2017.git,,0.0,False,224d1eee7dcc21a1c7dedc9cccf4c7e1c0e9d600,,
2554.0,garciparedes--cc-examples,C,3.0,git,https://github.com/garciparedes/cc-examples.git,default_cmake.sh,1.0,,2960119f48fc62726a0c2565603a1c56d6510abf,,
2308.0,kc9qey--mpi_openmp,C,3.0,git,https://github.com/kc9qey/mpi_openmp.git,,0.0,False,656a7426699446fb39fb0355674ae74d702821c0,,
5971.0,tinsir888--parallel-programming,C++,3.0,git,https://github.com/tinsir888/parallel-programming.git,,0.0,False,34428ec840686a6cb8ca81f657d24a8692abbda3,,
3128.0,coderboyisongithub--OpenMP-MP-search,C++,3.0,git,https://github.com/coderboyisongithub/OpenMP-MP-search.git,,0.0,False,22b90782fbb6b57d15ab530717fbc04dadd2f171,,
3178.0,ssrg-vt--popcorn-openmp,C,3.0,git,https://github.com/ssrg-vt/popcorn-openmp.git,,0.0,False,9ceafa261bfeeaf0ef182cab13515c38fd5aff82,,
2896.0,priyanka2802--ParallelLUFactorization,C++,3.0,git,https://github.com/priyanka2802/ParallelLUFactorization.git,,0.0,False,005d93e9d0a5e861b51de1c6b3649420c2ec9943,,
6578.0,Mark1626--road-to-plus-plus,C++,3.0,git,https://github.com/Mark1626/road-to-plus-plus.git,,0.0,False,68881d584ef548d81c479bfc3b289a648060adab,,
6759.0,077Jungle--CS149-asst4,C++,3.0,git,https://github.com/077Jungle/CS149-asst4.git,,0.0,False,c3fcc71994cde694918895732fc2d0e33f0f2dfa,,
2058.0,leonardoarcari--sharp,C++,3.0,git,https://github.com/leonardoarcari/sharp.git,,1.0,False,14e1d31696aadfc98387dc4d9a2aa150f1a3ab30,,
2229.0,kishkaru--OpenMP_Demos,C,3.0,git,https://github.com/kishkaru/OpenMP_Demos.git,,0.0,False,b6075ad520232984e2bc98bd738a78462a6e4649,,
6189.0,pavlidic--Binary-SpGEMM,C,3.0,git,https://github.com/pavlidic/Binary-SpGEMM.git,,0.0,False,f36ea18465b3e7bbd3adb6650baa6f0bec1473fd,,
2906.0,rshrc--parallel-processing,C,3.0,git,https://github.com/rshrc/parallel-processing.git,,0.0,False,77fcd43f61f11de4e80bed50aca67680c393b288,,
4380.0,SaurabhMohata--PGraph,C++,2.0,git,https://github.com/SaurabhMohata/PGraph.git,,0.0,False,5427a6fdc385d27bcb92d053ca7ed048e14c1143,,
5604.0,jar-evans--Krylov_subspace_methods,C++,2.0,git,https://github.com/jar-evans/Krylov_subspace_methods.git,default_make.sh,0.0,False,6d9b5f1a7df6605a25b359b8f5b075c815995d96,,
7278.0,dssgabriel--TOP-24,C,2.0,git,https://github.com/dssgabriel/TOP-24.git,,0.0,False,e24c56b20a2799257e61ab68de68dbddc1c0e6f3,,
5104.0,Srutiverma123--openmp-codes,C,2.0,git,https://github.com/Srutiverma123/openmp-codes.git,,0.0,False,5cb5f1ded4d132259aded87e49b87634297cb0d4,,
6405.0,Kwasniok--cpp-raytracing,C++,2.0,git,https://github.com/Kwasniok/cpp-raytracing.git,,0.0,False,3d21d69bacb0293ff66aae38e4647e7abf5bfba9,,
5090.0,jjstoo--seam-carver,C++,2.0,git,https://github.com/jjstoo/seam-carver.git,,1.0,False,f8a2fe17a26c7e8ceccb2a962f6fecbb00713cd2,,
1288.0,joshuawallace--hw4_scientific_computing,C,2.0,git,https://github.com/joshuawallace/hw4_scientific_computing.git,,0.0,False,288ec52e52a3dd0bc24ebce729408dd563ddc732,,
4327.0,Aybss--MP-ACHE,C,2.0,git,https://github.com/Aybss/MP-ACHE.git,,0.0,False,9ef0d96937b9ddee746033edaa38c343d494e0fb,,
1263.0,JoseCVieira--ParallelSudoku,C,2.0,git,https://github.com/JoseCVieira/ParallelSudoku.git,,0.0,False,f165b180131321e4e15a6fce78764244497980d4,,
1215.0,Shyeok--Distributed-Programming,C,2.0,git,https://github.com/Shyeok/Distributed-Programming.git,,0.0,False,9c976bf2762a63f3c809efbdb8e4ff37b4a47093,,
4612.0,Amagnum--Parallel-Floyd-Warshall-algorithm-omp,C++,2.0,git,https://github.com/Amagnum/Parallel-Floyd-Warshall-algorithm-omp.git,,0.0,False,d54437ffec7ff3156b38b32f14ee8e9a9a7c628c,,
4640.0,apallath--parallel_algos,C,2.0,git,https://github.com/apallath/parallel_algos.git,,1.0,False,dd647033bd321d2f00e05ba60de6e277eb34df63,,
1063.0,rlyerly--NUMA-ExtWorkload-OMP-Scheduler,C,2.0,git,https://github.com/rlyerly/NUMA-ExtWorkload-OMP-Scheduler.git,,0.0,False,3679583b210084f2f295ca1fbb297a315117e869,,
4582.0,NavSanya--Parallel_DFS_BFS_OpenMp,C++,2.0,git,https://github.com/NavSanya/Parallel_DFS_BFS_OpenMp.git,,0.0,False,656d6a9270a7e70e5a4ecd4b80a50fc788edbf40,,
4747.0,openwall--john-core,C,2.0,git,https://github.com/openwall/john-core.git,,0.0,False,6492f52d556e98fd75e0a966fff17a9a4f526b05,subset of other repo- can not build use openwall/john instead,
7501.0,JimCownie--CpuFun,C++,2.0,git,https://github.com/JimCownie/CpuFun.git,,0.0,False,c693f247f453b6e408ef610c86881fe1cf249486,,
991.0,saifthe1--openfoam-openmp,C,2.0,git,https://github.com/saifthe1/openfoam-openmp.git,,0.0,False,eca78a2fff372203c3f42cf1ed49a096b8455e2e,,
4394.0,fastsolve--paracoder,C,2.0,git,https://github.com/fastsolve/paracoder.git,,0.0,False,7b792de56f364bd3c94abf30ad741058e1d6492d,,
2621.0,gnuille--miniomp,C,2.0,git,https://github.com/gnuille/miniomp.git,,0.0,False,cc839e5ee8e1e9d9cfabe2012c8808e021134a83,,
6302.0,stranck--RealTimeLLF,C++,2.0,git,https://github.com/stranck/RealTimeLLF.git,,0.0,False,6fd42e5657c32c8bd1a98f531e87adbcd84ae886,,
3154.0,EPCCed--MPI_OpenMP_threads,C,2.0,git,https://github.com/EPCCed/MPI_OpenMP_threads.git,,0.0,False,a5a7bc120918fd296ffda6d52a7833b7b52b4dd6,,
4575.0,connortribbett--CPP-AVX2-OpenMP-3x3-Image-Filtering-Algo,C++,2.0,git,https://github.com/connortribbett/CPP-AVX2-OpenMP-3x3-Image-Filtering-Algo.git,default_make.sh,0.0,False,e624617e30ab8bf841edef0c11399f58046981e4,,2021-05-07 05:37:20+00:00
6040.0,giambagiamba--progressbar,C,2.0,git,https://github.com/giambagiamba/progressbar.git,,0.0,False,2966791e856c5d771ca72b58b4853a562a38a01d,,
1136.0,lakhanjhawar--Parallel_Programming-Multithreading-Openmp-MPI-,C,2.0,git,https://github.com/lakhanjhawar/Parallel_Programming-Multithreading-Openmp-MPI-.git,,0.0,False,c8e04f21b1ff498bb7a40b363c85c87cf81ff585,,
4843.0,ilias1111--parallel-monte-carlo-pi,C,2.0,git,https://github.com/ilias1111/parallel-monte-carlo-pi.git,,0.0,False,53affccc3b4847b6b4842527f6bb7a1fb394aef1,,
3155.0,mishal23--parallel-programming-openmp,C,2.0,git,https://github.com/mishal23/parallel-programming-openmp.git,,0.0,False,2a223de17f015ae52f1e2a4fcaf6856ef58339e5,,
6966.0,cterboven--OpenMP-tutorial-IT4I-2022,C,2.0,git,https://github.com/cterboven/OpenMP-tutorial-IT4I-2022.git,,0.0,False,adc10070b13131e303aa73b0d352c2e17874526a,,
3680.0,SgtSwagrid--supercomputing,C,2.0,git,https://github.com/SgtSwagrid/supercomputing.git,,0.0,False,c1c50204fe7717e436756dc5b21ef3eb92a6e8d1,,
6939.0,hliadis--High-Performance-Computing,C,2.0,git,https://github.com/hliadis/High-Performance-Computing.git,,0.0,False,824a25bc15159cfe22058f80b52f49bd61f29273,,
3428.0,zwhe99--String-Group-By-Parallel-Algorithm,C,2.0,git,https://github.com/zwhe99/String-Group-By-Parallel-Algorithm.git,,1.0,False,da95b00d5d22c4f50c5722e2378f2259e2d48144,,
5479.0,sanaa-khan--distributed-password-cracker,C++,2.0,git,https://github.com/sanaa-khan/distributed-password-cracker.git,,0.0,False,bdbe8c4a1b54bad8a4147772e82c2824223830ab,,
1681.0,franneck94--CUDA-AES,C++,2.0,git,https://github.com/franneck94/CUDA-AES.git,,0.0,False,3a593991b65e7a1ac704a9567fe0812ac0abe14f,,
1667.0,Esthaor--Graph-critical-path,C++,2.0,git,https://github.com/Esthaor/Graph-critical-path.git,,0.0,False,f017e79bec68adf90ef98bdc855f93524861d027,,
3386.0,mcpca--marlin,C++,2.0,git,https://github.com/mcpca/marlin.git,default_cmake.sh,1.0,,df4081fa0e595284ddbb1f30f20c5fb2063aa41f,,
2025.0,Guiming--ParallelRipleysKfunction,C++,2.0,git,https://github.com/Guiming/ParallelRipleysKfunction.git,,0.0,False,1b09ab084ad9e7cfab45856202d569275ce60765,,
3619.0,doddyaditya--OpenMP,C,2.0,git,https://github.com/doddyaditya/OpenMP.git,,0.0,False,6a68d396efd4c0f774089e316508b0eb49ce07af,,
3643.0,xbasics--knn_openmp_mnist,C,2.0,git,https://github.com/xbasics/knn_openmp_mnist.git,default_make.sh,0.0,False,000a5e6941fcb71a1b24bb729bb89263fd2d43ca,,2020-05-08 21:31:10+00:00
5636.0,Podmanic19--Kmeans-using-MPI-and-openMP,C++,2.0,git,https://github.com/Podmanic19/Kmeans-using-MPI-and-openMP.git,,0.0,False,e80f91ef4e4b81872d71a350428f02ebd9a6e9da,,
2080.0,aothelal--Parallel-Jacobi-Method-Using-OpenMP,C++,2.0,git,https://github.com/aothelal/Parallel-Jacobi-Method-Using-OpenMP.git,,0.0,False,376b90831a3e28e1b307ede69db2ff8a09f57dc4,,
1880.0,digint--openmptl-reg-arm-cortex,C++,2.0,git,https://github.com/digint/openmptl-reg-arm-cortex.git,,0.0,False,88e105766edc9299348ccc8d2ff7a9c34cddacd3,,
6725.0,jelc53--parallel,C++,2.0,git,https://github.com/jelc53/parallel.git,,0.0,False,05d2080e84432939f23dbc470f1f20f1e3db29ec,,
5685.0,jackfine0062--mandelbrotHPC,C,2.0,git,https://github.com/jackfine0062/mandelbrotHPC.git,,0.0,False,9bcb2d2ff889f69a77be36e66f076a46a319acc8,,
2200.0,pcdslab--PHYNGSC,C++,2.0,git,https://github.com/pcdslab/PHYNGSC.git,,0.0,False,438ea230282bd405af3d8cc35abac5b0d9074b74,,
5280.0,smohammadhejazi--multicore-programming-lab,C,2.0,git,https://github.com/smohammadhejazi/multicore-programming-lab.git,,0.0,False,51fa06ab5f0e407c8eb89b130622ba1f321a94e8,,
3929.0,piyush7gupta--Mapreduce-using-MPI-OPENMP-Wordcount,C++,2.0,git,https://github.com/piyush7gupta/Mapreduce-using-MPI-OPENMP-Wordcount.git,,0.0,False,f02e4422b7728681e299fb4e4f76e7322ca63db4,,
3895.0,Param-29--OpenMP-with-cpp,C,2.0,git,https://github.com/Param-29/OpenMP-with-cpp.git,,0.0,False,20ad9e5632b7b6e4600e37a861bb4501fad27323,,
3240.0,kostino--ReverseCuthillMcKee-Parallel,C,2.0,git,https://github.com/kostino/ReverseCuthillMcKee-Parallel.git,,0.0,False,daf45b959882a98c823f865fd25124975e9c2c50,,
3993.0,AhsanAyub--RSA_Parallelization,C++,2.0,git,https://github.com/AhsanAyub/RSA_Parallelization.git,,0.0,False,e0394901d6b2d6415b647afe79636534701d3842,,
4056.0,JungUnYun--Bayer-interpolation,C++,2.0,git,https://github.com/JungUnYun/Bayer-interpolation.git,,0.0,False,292ad9b1b7a8ef69dad5bab2692ddd104004de8d,,
4075.0,SHoeks--MadingleyCPP-openMP,C++,2.0,git,https://github.com/SHoeks/MadingleyCPP-openMP.git,,0.0,False,4b0879f1f3eccf096653a3e1320beb9e58c7b9f7,,
5190.0,muneeb706--Sparse-Matrix-Vector-Mul,C++,2.0,git,https://github.com/muneeb706/Sparse-Matrix-Vector-Mul.git,,0.0,False,2ab89af40fdf16839ba31e3b2661d0727d776b33,,
1441.0,gbossi--Pagerank-DOBFS,C++,2.0,git,https://github.com/gbossi/Pagerank-DOBFS.git,default_make.sh,0.0,False,bfeb88e8778349dee66308a75d9acb2cfc7f57d0,,2018-05-07 09:56:15+00:00
7064.0,zli87--Architecture-of-Parallel-Computers,C,2.0,git,https://github.com/zli87/Architecture-of-Parallel-Computers.git,,0.0,False,3faca56fcb8cda0e5bb93a6f7e193fd31da79e81,,
7091.0,unicorn-yh--Image-Stitching-Parallel,C++,2.0,git,https://github.com/unicorn-yh/Image-Stitching-Parallel.git,,0.0,False,cd419e9596b186bde6212a2e16fb42120679278c,,
3812.0,Zhou-Shu--Openmp_Sparse_Matrix,C,2.0,git,https://github.com/Zhou-Shu/Openmp_Sparse_Matrix.git,default_make.sh,0.0,False,7aa0fd98582407d447650c0c0ae4637e233cd6e2,,2020-03-03 11:04:24+00:00
6575.0,topopt--TopOpt-in-OpenMP,C,2.0,git,https://github.com/topopt/TopOpt-in-OpenMP.git,,0.0,False,92e96cd7531e959bc2756bfea0fa6dd65e634a14,,
7137.0,TREX-CoE--NvHPCSDK_OpenMPOL_docs_exmpls,C,2.0,git,https://github.com/TREX-CoE/NvHPCSDK_OpenMPOL_docs_exmpls.git,,0.0,False,9459b4fdfb0ea7c17989a3e167c584be1854dda8,,
2300.0,mrigankdoshy--matrix-multiplication,C++,2.0,git,https://github.com/mrigankdoshy/matrix-multiplication.git,,0.0,False,1331dd1ecd13ab7b4379f1703f47f39c08e8f381,,
7174.0,thivinanandh--GPU-Cuda_Contact_Tracing,C++,2.0,git,https://github.com/thivinanandh/GPU-Cuda_Contact_Tracing.git,,0.0,False,fbf2cb6579d69d8177d0088226ea8886de081e37,,
6140.0,dariakhaetskaya--Parallel-Programming,C++,2.0,git,https://github.com/dariakhaetskaya/Parallel-Programming.git,,0.0,False,99d40343e61d2588b77ead0d175787d00708fbf8,,
185.0,miwelc--OpenMPI--TravellingSalesmanProblemSolver,C++,2.0,git,https://github.com/miwelc/OpenMPI--TravellingSalesmanProblemSolver.git,,0.0,False,373223841805be512a54ae14bde799828c27930e,,
16.0,erictu--Image-Processing-Optimization,C,2.0,git,https://github.com/erictu/Image-Processing-Optimization.git,,0.0,False,18d7cab900acd7a440ab4a2f245c65a8909b48eb,,
619.0,CsatiZoltan--Collatz,C,2.0,git,https://github.com/CsatiZoltan/Collatz.git,,0.0,False,3b52172ce2d2db44d31053a49ed50f3f34ad9485,,
485.0,umfranzw--MPI-OpenMP-examples,C,2.0,git,https://github.com/umfranzw/MPI-OpenMP-examples.git,,0.0,False,acd04c7e72a2b1ca1cb1230080697dc0fd2b81b5,,
8084.0,DragosTana--image_processing,C++,2.0,git,https://github.com/DragosTana/image_processing.git,,0.0,False,167729b016a2ee5a53d33cc5cb102d22b1ed3a47,,
456.0,kamilmysliwiec--parallel-numerical-integration,C++,2.0,git,https://github.com/kamilmysliwiec/parallel-numerical-integration.git,,0.0,False,db856354915d81c813c6e6616e79c6ecf165bf4b,,
809.0,crypt3lx2k--nbody,C,2.0,git,https://github.com/crypt3lx2k/nbody.git,,0.0,False,cf15aea3b1369fedbdcbc8eebf4454f7ee8758e3,,
137.0,jaredhoberock--omp_parallel_invoke,C++,2.0,git,https://github.com/jaredhoberock/omp_parallel_invoke.git,,0.0,False,d8f302334dbc7c211148e9a57ed3ed0ae5ffbf30,,
194.0,ghulette--neural-net-openmp,C++,2.0,git,https://github.com/ghulette/neural-net-openmp.git,default_make.sh,0.0,False,acb560602d70e7d5b2afc64da1760a1b6295b2d4,,
7860.0,bsc-pm--tacuda,C++,2.0,git,https://github.com/bsc-pm/tacuda.git,,0.0,False,849592cde55ad9f2c2b48989303b91baf6d9039a,,
785.0,NachE--pkcrack-openmp,C,2.0,git,https://github.com/NachE/pkcrack-openmp.git,,0.0,False,0416396d8f3573f4d47065d0c091e585fcc0046b,,
265.0,cmcantalupo--sorter_threaded,C++,2.0,git,https://github.com/cmcantalupo/sorter_threaded.git,default_make.sh,0.0,False,02f15bffeaf1d7c73d82e547f92b4905337f999d,,
605.0,passlab--intel-openmp-runtime,C,2.0,git,https://github.com/passlab/intel-openmp-runtime.git,default_cmake.sh,1.0,,c43b78cafaf7a658efbf4b0601d32214371747c7,,
925.0,alculquicondor--parallel_bfs,C++,2.0,git,https://github.com/alculquicondor/parallel_bfs.git,,1.0,False,7a5dc4bea00e81f5cd488133f506523875c5c686,,
141.0,mattm401--pDAMGES,C,2.0,git,https://github.com/mattm401/pDAMGES.git,,0.0,False,3eae641ec855d53d5f5eef0d97965dc97f3b8a64,,
548.0,joewledger--Parallel_K_Medoids,C,2.0,git,https://github.com/joewledger/Parallel_K_Medoids.git,,0.0,False,8270c1e6f4a6f4540c20fb000fc25dabe572fcbe,,
50.0,zamaudio--paml-openmp,C,2.0,git,https://github.com/zamaudio/paml-openmp.git,default_make.sh,0.0,False,e4ff1bebea05168fd78be24488c2379e458574d6,,
8068.0,bensuperpc--vector,C++,2.0,git,https://github.com/bensuperpc/vector.git,default_cmake.sh,1.0,,9febb9c84e7b73e6c621afd920dd3c8bb47a130c,,
8067.0,dormoyi--CME213,C++,2.0,git,https://github.com/dormoyi/CME213.git,,0.0,False,213ba96a67e3c52194c6e65430c30b69636c0659,,
6853.0,bsc-pm--tacl,C++,1.0,git,https://github.com/bsc-pm/tacl.git,,0.0,False,75bd9729c0913ee22508beadb675d866bcf6d68c,,
2667.0,chander2207--Dijkstra-openmp,C,1.0,git,https://github.com/chander2207/Dijkstra-openmp.git,,0.0,False,5a7b7149cab967ab89db024c40945ec3e247db1a,,
3485.0,philljj--ghf,C,1.0,git,https://github.com/philljj/ghf.git,special_configure/ghf.sh,0.0,True,3e16512c2861bad0e11dd6ade78b8f4cc91af7c4,,
1992.0,MNie--ComparisonOfOpenCLOpenMPMPI,C,1.0,git,https://github.com/MNie/ComparisonOfOpenCLOpenMPMPI.git,,0.0,False,6a2f1bbc0cd198655719633424fdf330d6634aba,,
684.0,shahzebp--floyd_warshall_parallel,C++,1.0,git,https://github.com/shahzebp/floyd_warshall_parallel.git,,0.0,False,cd35c2973780cb9bcc494d9c2e3666a1027e3fd8,,
2733.0,Atulsingh92--HPC-Project,C++,1.0,git,https://github.com/Atulsingh92/HPC-Project.git,,0.0,False,a254b1f353e2991e261eb43c8627896834df34d3,,
1986.0,pzmarzly--DesktopStreamerWin,C,1.0,git,https://github.com/pzmarzly/DesktopStreamerWin.git,,0.0,False,f7bb8111cced660097f9cfc5026479f489ba5331,,
3487.0,mcupo--OrdenamientoParaleloOpenMP,C++,1.0,git,https://github.com/mcupo/OrdenamientoParaleloOpenMP.git,,0.0,False,644de2611c079b79602d88b7d06cf4169533c587,,
5185.0,nicktheway--KNN_Classification,C,1.0,git,https://github.com/nicktheway/KNN_Classification.git,,0.0,False,31fe51e57ed5a3a6a0c957464731b7577fe4ac1f,,
4002.0,alvarezpj--gemm-raspberrypi-cluster,C,1.0,git,https://github.com/alvarezpj/gemm-raspberrypi-cluster.git,,0.0,False,3116cd3ea32dda61c9ed824f98082c1eac5f17bf,,
656.0,chanzhennan--openmpi,C,1.0,git,https://github.com/chanzhennan/openmpi.git,,0.0,False,a32ff024140d96e97206ef24c83ca1d2549ba0e5,,
166.0,msslaughter--gaussian,C,1.0,git,https://github.com/msslaughter/gaussian.git,,0.0,False,16869338705ae05575ef0100aa2f77046c59292e,,
659.0,ExtremeScale--std-thread_vs_openmp,C++,1.0,git,https://github.com/ExtremeScale/std-thread_vs_openmp.git,,1.0,,9edf4931c9dfd94a35e790c4eb0b60fcc7432f6f,,
142.0,apawloski--miniMD-omp,C++,1.0,git,https://github.com/apawloski/miniMD-omp.git,,0.0,False,432e47c965f7ab0b37708d2ace96199e47fd076e,,
1984.0,pf4d--intel_openmp,C++,1.0,git,https://github.com/pf4d/intel_openmp.git,,0.0,False,6a63ad83fffce8d039d8a195e602779b2fb54b12,,
6265.0,LucasDiasJorge--OpenMP,C++,1.0,git,https://github.com/LucasDiasJorge/OpenMP.git,,0.0,False,f9a14ffd7740c93f0025423f6ef180a048396726,,
5255.0,Qinzhizhou--Image-Mosaic-Process-CUDA-OpenMP,C,1.0,git,https://github.com/Qinzhizhou/Image-Mosaic-Process-CUDA-OpenMP.git,,0.0,False,b66e501c7c89c6d437450bfa2b0177f2a714ae3d,,
6785.0,hatmer--psrs_quicksort,C,1.0,git,https://github.com/hatmer/psrs_quicksort.git,,0.0,False,cdcef430f09dfc060ee70137c30dc250303f09eb,,
7753.0,jinhyeokjeon--Floyd_Warshall_OpenMP,C++,1.0,git,https://github.com/jinhyeokjeon/Floyd_Warshall_OpenMP.git,,0.0,False,c6347ab8e45e0d16afd5b973efd6c188bde96da9,,
6799.0,ntmarshal--Serial-and-Parallel-9-Point-Stencil,C,1.0,git,https://github.com/ntmarshal/Serial-and-Parallel-9-Point-Stencil.git,,0.0,False,85e4009009c69a45378097088b7410fe176d2373,,
5248.0,AleTM1--KMean_OpenMP,C++,1.0,git,https://github.com/AleTM1/KMean_OpenMP.git,,1.0,False,54a51dcb08fa886625f49006551074dabaf4d3f6,,
5252.0,YannChemin--HBV,C,1.0,git,https://github.com/YannChemin/HBV.git,default_make.sh,0.0,False,1640b36bdd9dc25ce0e18b27eddd139b1b32762e,,2022-08-19 15:17:09+00:00
6841.0,abhishek-rr--Bottleneck-analysis-of-matrix-multiplications-and-CNN-inference,C,1.0,git,https://github.com/abhishek-rr/Bottleneck-analysis-of-matrix-multiplications-and-CNN-inference.git,,0.0,False,d55609e22a089cac2b19ed72fb0a4af98c0198ce,,
668.0,papadopoulosc--pagerank,C,1.0,git,https://github.com/papadopoulosc/pagerank.git,,0.0,False,bad4a249268247801cd619d3d4f1f9c7db5fd642,,
1983.0,ArkadiyD--ParallelDiffEquation,C++,1.0,git,https://github.com/ArkadiyD/ParallelDiffEquation.git,,0.0,False,f3aa7152f31123329df1c12b25dab315b1a98684,,
483.0,h3nnn4n--Parallel_Mandelbrot_set,C,1.0,git,https://github.com/h3nnn4n/Parallel_Mandelbrot_set.git,,0.0,False,87ebe8206611fffe59cebbb3a445fe0d15216119,,
5646.0,shivamshuklama--Parallelization-of-LU-DECOMPOSITION,C++,1.0,git,https://github.com/shivamshuklama/Parallelization-of-LU-DECOMPOSITION.git,,0.0,False,339e3ba68d445644f7df8c6267d2f675c5616068,,
1926.0,OMPI-X--epcc-mixedmode,C,1.0,git,https://github.com/OMPI-X/epcc-mixedmode.git,,0.0,False,91877d8f32becc0af999a8ca38c9f0b3d2d1d47b,,
1928.0,ivanbgd--Matrix-Multiplication-MatMul-C,C,1.0,git,https://github.com/ivanbgd/Matrix-Multiplication-MatMul-C.git,,0.0,False,5db7466c1fa5da935ea0b4b9058c34abe89a4615,,
664.0,chunyenho--MCML_OpenMP,C,1.0,git,https://github.com/chunyenho/MCML_OpenMP.git,,0.0,False,fa5cabe710d056b8e762e33022fd2d5495f53bf2,,
2757.0,vvbv--cluster-nfs-haproxy-openmpi,C,1.0,git,https://github.com/vvbv/cluster-nfs-haproxy-openmpi.git,,0.0,False,a528e567ce85f9e712b0255675e1f36a0b31fead,,
453.0,haozhg--unsteadyHeatEquation,C++,1.0,git,https://github.com/haozhg/unsteadyHeatEquation.git,,0.0,False,c78d0173c132c79c358da625173cd1e3ae15272f,,
3435.0,stott531--MandelbrotGenerator,C++,1.0,git,https://github.com/stott531/MandelbrotGenerator.git,,1.0,False,08cf6980195e913a571c34a0377e6fd8ca4453ff,,
6172.0,kerenrachev--CUDA_MPI_OpenMP_Histogram,C,1.0,git,https://github.com/kerenrachev/CUDA_MPI_OpenMP_Histogram.git,,0.0,False,5d9d95d55e221119d235f1ab4078d1ec03516994,,
7705.0,MRLintern--2D_Poisson_Equation_OpenMP,C,1.0,git,https://github.com/MRLintern/2D_Poisson_Equation_OpenMP.git,,0.0,False,879e094966a4e8e4cca9f9bb697b270251a24c55,,
5111.0,joe-lynch--parallelised-lattice-percolation,C,1.0,git,https://github.com/joe-lynch/parallelised-lattice-percolation.git,,0.0,False,6dd286a9d45772c59e439f641dfb1ff5a630f177,,
5708.0,SaiKarthik2000--OpenMP-Parallelization-of-Dynamic-Programming-and-Greedy-Algorithms,C++,1.0,git,https://github.com/SaiKarthik2000/OpenMP-Parallelization-of-Dynamic-Programming-and-Greedy-Algorithms.git,,0.0,False,6c90178e528467ac9d682140ec54c7dacc34cbd3,,
2809.0,billspat--openmptest,C,1.0,git,https://github.com/billspat/openmptest.git,,0.0,False,2be0dc643e11a80cdba05385f951e90fd3264521,,
8125.0,HariAbram--sycl-microbench,C++,1.0,git,https://github.com/HariAbram/sycl-microbench.git,,0.0,False,6eb1c0437af65d8e0b4f29797ab5a4e781ee85cd,,
8134.0,smr1897--openmp-adding-vectors-parallel,C++,1.0,git,https://github.com/smr1897/openmp-adding-vectors-parallel.git,,0.0,False,7241bbd3fc06d7f10dbb9c5f56b0b41cefdfb4d5,,
1645.0,rkteddy--MPI-demo,C,1.0,git,https://github.com/rkteddy/MPI-demo.git,,0.0,False,ae498bac93ac47c31f5d374e7d85f28132206342,,
4259.0,katderv--Parallel-Programming,C,1.0,git,https://github.com/katderv/Parallel-Programming.git,,0.0,False,5391df12f53c739d53b4436b527ae01aa260ccf6,,
6142.0,GustavoLR548--SeminariosII-GLR,C,1.0,git,https://github.com/GustavoLR548/SeminariosII-GLR.git,,0.0,False,73085a53e008b6ac5efd72dd3754848da020f37a,,
2864.0,karelklein--Parallel-Breadth-First-Search,C,1.0,git,https://github.com/karelklein/Parallel-Breadth-First-Search.git,,0.0,False,58a6ca623ce46e32f74f3403e23f76cbc8b85a7f,,
6145.0,kon-pap--Parallel_Programming_Project_OpenMP,C++,1.0,git,https://github.com/kon-pap/Parallel_Programming_Project_OpenMP.git,,0.0,False,157f6541b541af373fea29b85b96ce86ed3790c5,,
3423.0,Archangel2153--HeatDiffusion-OpenMP-MPI,C,1.0,git,https://github.com/Archangel2153/HeatDiffusion-OpenMP-MPI.git,,0.0,False,d4ad42b3883b763b71d47e6cd826db948222474c,,
1664.0,SavanK--PDPSamples,C,1.0,git,https://github.com/SavanK/PDPSamples.git,,0.0,False,42e88a48f97d1c237c6e75a37f059c0c297afadc,,
5076.0,GeorgeWeb--par-nbody,C++,1.0,git,https://github.com/GeorgeWeb/par-nbody.git,,1.0,False,c132bb3d634d0f8499e2eecbb15c44c41e6d5b13,,
4255.0,an31146--source_code,C,1.0,git,https://github.com/an31146/source_code.git,,0.0,False,ad29264a6ebee686174f60454b17cf3adca65c8b,,
6885.0,geru-scotland--Genetics-parallel,C,1.0,git,https://github.com/geru-scotland/Genetics-parallel.git,,1.0,False,e414022ab65f0bd9a3826b148cfddbdd94b956f4,,
7891.0,discopop-project--OpenMP-Microbench,C++,1.0,git,https://github.com/discopop-project/OpenMP-Microbench.git,default_cmake.sh,1.0,,1959ebdd19cecfe14d350878c8f615e27c2062bf,,2023-11-13 10:03:21+00:00
1805.0,likecs--Concurrent-Bloom-Filters,C++,1.0,git,https://github.com/likecs/Concurrent-Bloom-Filters.git,,0.0,False,26230565ae796a694983ace7f27b345ffabda956,,
5151.0,hreyesm--advanced-programming,C,1.0,git,https://github.com/hreyesm/advanced-programming.git,,0.0,False,b05cdd83aefea4a2f1ff0d7a8011955688faced1,,
4149.0,sharangKulkarni2--minimum_element_openmp_of_-a-_array,C,1.0,git,https://github.com/sharangKulkarni2/minimum_element_openmp_of_-a-_array.git,,0.0,False,e30a7a17e649d29d4eb155ee76cf0703284b5f20,,
5682.0,Yowgf--delta-stepping,C++,1.0,git,https://github.com/Yowgf/delta-stepping.git,default_make.sh,0.0,False,6e6be318a5145f178d7d597d2fbc3be772e68503,,2022-04-02 01:47:05+00:00
474.0,mmitalidis--Bitonic-Sorter,C,1.0,git,https://github.com/mmitalidis/Bitonic-Sorter.git,,0.0,False,00b2129fe8e47a632c3f7dd27c5547b7ad8021e3,,
4127.0,joao-zanetti--Metricas-Estatisticas-OpenMP-C,C,1.0,git,https://github.com/joao-zanetti/Metricas-Estatisticas-OpenMP-C.git,,0.0,False,b8e6957d5eb8ff93d441d9fc7dfe788688bf34af,,
4130.0,sulaiman-muhammad--Median-Filtering,C++,1.0,git,https://github.com/sulaiman-muhammad/Median-Filtering.git,,0.0,False,27f0efbd67dd5de595ab0531a9e6173a91f11cb5,,
3468.0,Joycepy--ParallelProgramming,C++,1.0,git,https://github.com/Joycepy/ParallelProgramming.git,,0.0,False,47b2f7de2ba1f4f7109824239964f53e44c4e294,,
4170.0,Ram-Aditya--Bitonic-Sort,C,1.0,git,https://github.com/Ram-Aditya/Bitonic-Sort.git,,0.0,False,353e7f4f459baf52c1b0880f4810c38b6dd5f869,,
5700.0,LyricZL--Juanji_OpenMP,C++,1.0,git,https://github.com/LyricZL/Juanji_OpenMP.git,,0.0,False,11830f3dda83e397f88cc0abb6f744c61829bfb5,,
5127.0,gradvohl--TT005_Laboratorios,C,1.0,git,https://github.com/gradvohl/TT005_Laboratorios.git,,0.0,False,2fc24d5e55000af50cf885719cac10d9e0ca22cd,,
1745.0,Sahil941--OpenMP-SPMV,C,1.0,git,https://github.com/Sahil941/OpenMP-SPMV.git,default_make.sh,0.0,False,c2a540d5c7b4d1e9690cc7792ba670ee61212756,,2017-12-18 23:21:37+00:00
1768.0,epielemeier--oc-openmp-histogram,C,1.0,git,https://github.com/epielemeier/oc-openmp-histogram.git,default_cmake.sh,1.0,,4b9c69e248e0485274d1186165c299e9be9b2725,,
6928.0,migmolper--NL-PartSol,C,1.0,git,https://github.com/migmolper/NL-PartSol.git,,0.0,False,5c074570bac48a5b8aebb15e393ed29a109027f5,,
4157.0,magiciiboy--openmp-matmul,C,1.0,git,https://github.com/magiciiboy/openmp-matmul.git,,0.0,False,d254850280c2d96401e433a962d8adf36022527c,,
296.0,abhiy91--Mandelbrot,C,1.0,git,https://github.com/abhiy91/Mandelbrot.git,,0.0,False,6ba5e55ba9e59fbab3cb96c704e68488de96dc88,,
4164.0,Ram-Aditya--Parallel-Computing,C,1.0,git,https://github.com/Ram-Aditya/Parallel-Computing.git,,0.0,False,f8345a4260b8ab31a750d5b18ef71804dddc3637,,
650.0,eruffaldi--yreflectcxx,C++,1.0,git,https://github.com/eruffaldi/yreflectcxx.git,,1.0,False,20541f29f151ce5cb0ece8fc856fc95b65537a12,,
580.0,gthparch--stale_workload,C++,1.0,git,https://github.com/gthparch/stale_workload.git,,0.0,False,f7932385074bda68c2ef55b4eaf665a12f31478b,,
6560.0,annakosm--parallel_programming,C,1.0,git,https://github.com/annakosm/parallel_programming.git,,0.0,False,70b9eb345037d610856dc9bd0288fd09316db556,,
3799.0,mfournial--openmp-wasm-poc,C++,1.0,git,https://github.com/mfournial/openmp-wasm-poc.git,,0.0,False,b06e745483299d0e644b6aa24dfa57305c756c11,,
3800.0,3xi0--Mandelbrot-set-plotter,C++,1.0,git,https://github.com/3xi0/Mandelbrot-set-plotter.git,,0.0,False,2a86ced1ee13edbb96dde092330d0a6896f839ef,,
6549.0,cakhero--Tutorial1-OpenMP-Core-Hands-On,C,1.0,git,https://github.com/cakhero/Tutorial1-OpenMP-Core-Hands-On.git,,0.0,False,d20e904971f520470ddeecc33a32af4cece5097a,,
2332.0,doraemoncito--boltzmann,C,1.0,git,https://github.com/doraemoncito/boltzmann.git,,0.0,False,d93d9480e85927fa66c45f1bf3b5bb4258e2a912,,
6395.0,1407arjun--OpenMP-Parallel-Computing,C,1.0,git,https://github.com/1407arjun/OpenMP-Parallel-Computing.git,,0.0,False,f6b5a190a27f1e1bf077e8f341c1e8f346f51d11,,
2523.0,berkaybarlas--Parallel-Programming,C,1.0,git,https://github.com/berkaybarlas/Parallel-Programming.git,,0.0,False,084c21de2dc3626ff4fc3d8912a92d748051af8c,,
3803.0,induraj2020--A11--DNA-sequencing,C,1.0,git,https://github.com/induraj2020/A11--DNA-sequencing.git,,0.0,False,7d38ad9bc809140b8c070e144bf555b32a5508cf,,
7858.0,nrmancuso--big-bang,C,1.0,git,https://github.com/nrmancuso/big-bang.git,,0.0,False,03b966890f0dcdb606744439283f6401542952c4,,
2250.0,JDTruj2018--2-D-Successive-Over-Relaxation-Solver,C,1.0,git,https://github.com/JDTruj2018/2-D-Successive-Over-Relaxation-Solver.git,,0.0,False,4dfc880538a92c945679171f9872c497e97616cb,,
263.0,UVA-Gonzalez-Pardo--parallel-computing,C,1.0,git,https://github.com/UVA-Gonzalez-Pardo/parallel-computing.git,,0.0,False,268f2332a1d3f1cd6003d5e4dbb711d8445d48b8,,
5574.0,codesmiles--Printin-helloworld-using-openMP-in-C-lang,C,1.0,git,https://github.com/codesmiles/Printin-helloworld-using-openMP-in-C-lang.git,,0.0,False,c2d20f8bbda9b0d7963204e2c526bad6f51c612d,,
201.0,jonaias--Programacao-concorrente,C++,1.0,git,https://github.com/jonaias/Programacao-concorrente.git,,0.0,False,6e27435ee0c1aaee1ceed9ac919b7624140f3ad3,,
2542.0,afforeroc--blur-effect-posix-openmp,C,1.0,git,https://github.com/afforeroc/blur-effect-posix-openmp.git,,0.0,False,4f3cc787381006d73badc11d3ae7cb772fd8bb65,,
588.0,wyh0655--OpenMP_EXA,C++,1.0,git,https://github.com/wyh0655/OpenMP_EXA.git,,0.0,False,a238800d9d87b238a589dcb15be780bfb3f1eb2f,,
6584.0,MahmoudJLB--CSC447_Assignment2,C,1.0,git,https://github.com/MahmoudJLB/CSC447_Assignment2.git,,0.0,False,dcab69f64c7922195ae652b723d15c2ec3a949fe,,
5569.0,sroma--fastMatMul,C++,1.0,git,https://github.com/sroma/fastMatMul.git,,0.0,False,424c1f1d467b8a84780b298e390f177dffad2d00,,
2471.0,nicolaslesimple--Hybrid-MPI-OpenMP-Conjugate-Gradient-Algorithm,C++,1.0,git,https://github.com/nicolaslesimple/Hybrid-MPI-OpenMP-Conjugate-Gradient-Algorithm.git,default_make.sh,0.0,False,0507889f655886b8ceab37dfaa013bb954de2b3e,,
8059.0,lemoonchild--Proyecto02_Microprocesadores,C,1.0,git,https://github.com/lemoonchild/Proyecto02_Microprocesadores.git,,0.0,False,7890a021f6b213a49a5109de62847f41e9faf4d0,,
2480.0,mrchowmein--Cuda_Comparison,C,1.0,git,https://github.com/mrchowmein/Cuda_Comparison.git,,0.0,False,35c886459c398cd2965d82566c77e89acf93c5f6,,
5487.0,Daramgineer--OpenMP_study,C++,1.0,git,https://github.com/Daramgineer/OpenMP_study.git,,0.0,False,35101614588ea50b9ed1191c00aeceaef96c44a3,,
2472.0,WonderfulUnknown--parallel,C++,1.0,git,https://github.com/WonderfulUnknown/parallel.git,,0.0,False,8a2e3629ffbaa8eb2d126bab0784351bf44dd4da,,
6445.0,haoyuhe2023--Grayscaling-ppm,C,1.0,git,https://github.com/haoyuhe2023/Grayscaling-ppm.git,,0.0,False,26357d46a8202fd98411e36b109d2443106a6556,,
2445.0,AStockinger--Parallel-Programming,C++,1.0,git,https://github.com/AStockinger/Parallel-Programming.git,,0.0,False,4cac60bd973079f659e74080ff5c90a32090cbe1,,
2463.0,appleopen--openmpi,C,1.0,git,https://github.com/appleopen/openmpi.git,,0.0,False,e4d35a1a45029283530a92be8c6c34286da8f2fe,,
8069.0,xerpi--miniomp,C,1.0,git,https://github.com/xerpi/miniomp.git,,0.0,False,70606cf5f473bc71eb149a1366d292d3c0a0373d,,
6425.0,PMSeitzer--openmp-example,C++,1.0,git,https://github.com/PMSeitzer/openmp-example.git,,1.0,False,800e9deadce34f5afda62206c74bc56d8ab45e80,,
2363.0,mrigankdoshy--monte-carlo-simulation-pi,C,1.0,git,https://github.com/mrigankdoshy/monte-carlo-simulation-pi.git,,0.0,False,7cf6cac3380cdefc188193fc3deeb1fec4c76960,,
2358.0,claudioMontanari--Middleware_project,C,1.0,git,https://github.com/claudioMontanari/Middleware_project.git,,0.0,False,56cdf4835be345ebc8150f7acc06cd5c9581e59f,,
6519.0,catalin-boja--ism-parallel-2023,C++,1.0,git,https://github.com/catalin-boja/ism-parallel-2023.git,,0.0,False,d1ea60d66a6c13de9925bb730ef2a579041a3693,,
3649.0,Cjdcoy--parallel-distributed_computing,C++,1.0,git,https://github.com/Cjdcoy/parallel-distributed_computing.git,,0.0,False,c0cbfa279479396d369827556befcd56975d689f,,
558.0,thomasparmer--Parallellprogrammering-for-naturvitenskapelige-problemer,C,1.0,git,https://github.com/thomasparmer/Parallellprogrammering-for-naturvitenskapelige-problemer.git,,0.0,False,dd0472069473b21c95263053c6d0265e2b0ce732,,
5539.0,jitinnair1--spinodal_omp,C,1.0,git,https://github.com/jitinnair1/spinodal_omp.git,,1.0,False,f191b88ef25079fddca2e18517f91855e11f0f09,,
6416.0,JIAYUE11111--pthread-openmp,C++,1.0,git,https://github.com/JIAYUE11111/pthread-openmp.git,,0.0,False,733aa212a528e0d8cdacfec343ee00d3f3bd5293,,
2377.0,rgr19--Boost_OpenMPI_GoogleTests_Examples,C++,1.0,git,https://github.com/rgr19/Boost_OpenMPI_GoogleTests_Examples.git,,1.0,,86613be270e433f25f6d5b9b8e6f3be4c2d0e889,,
5392.0,PARCO-LDRD--benchmarks,C,1.0,git,https://github.com/PARCO-LDRD/benchmarks.git,,0.0,False,62e862fb5a7fd1d2c47ef663749092bdf91b4bfa,,
2089.0,TuitaTeam--Knapsack-MPI,C++,1.0,git,https://github.com/TuitaTeam/Knapsack-MPI.git,,0.0,False,81a4416160d1ee3e50dbd3a4d329ba4694b50a58,,
2085.0,TuitaTeam--Knapsack-Hybrid,C++,1.0,git,https://github.com/TuitaTeam/Knapsack-Hybrid.git,,0.0,False,f4fe1cba495f7728ea11112968bed897136ca7dd,,
2634.0,vmalepati1--Prosim,C++,1.0,git,https://github.com/vmalepati1/Prosim.git,,0.0,False,cdcdf726cc585dbb30cd8d88410a8f78ebc87c71,,
6314.0,burlen--cuda_plus_offload,C++,1.0,git,https://github.com/burlen/cuda_plus_offload.git,,1.0,False,222e64a05f7466732d34be1142364d9c555956c1,,
5609.0,vamsi-sripathi--tackle,C,1.0,git,https://github.com/vamsi-sripathi/tackle.git,,0.0,False,518db24841acd2b9e2e536fbda5ec474084d7ef4,,
2117.0,smrajiv15--KMeans-OpenMP-CUDA-Pthread-MPI,C,1.0,git,https://github.com/smrajiv15/KMeans-OpenMP-CUDA-Pthread-MPI.git,,0.0,False,620570512ae955a22503dfb458701edf3d3139da,,
3928.0,SebastianCojocariu--Kernels-Parallelization-Techniques-Serial-MPI-OpenMP-Pthreads-Hybrid-,C,1.0,git,https://github.com/SebastianCojocariu/Kernels-Parallelization-Techniques-Serial-MPI-OpenMP-Pthreads-Hybrid-.git,,0.0,False,cd360e61fc459afdb1363bf678595db7c0c5d16e,,
5324.0,GiorgosNik--JacobiParallelism,C,1.0,git,https://github.com/GiorgosNik/JacobiParallelism.git,,0.0,False,46e46d5ef2e8e7e794a1983fbff3070325a9ccaa,,
2098.0,sagarbhatt0904--Backward-Facing-Step,C++,1.0,git,https://github.com/sagarbhatt0904/Backward-Facing-Step.git,,0.0,False,b8cc5a9812f4adf9380df73feaffeb6c30fef8d9,,
6312.0,sajad-azizi--Coupled-Channel-SE-Numerov-OpenMP,C++,1.0,git,https://github.com/sajad-azizi/Coupled-Channel-SE-Numerov-OpenMP.git,,0.0,False,61f5863b2e7f7a28ebf6463e56f78562d7387d62,,
2036.0,saracmustafa--OpenMP-TBB-Image-Segmentation,C,1.0,git,https://github.com/saracmustafa/OpenMP-TBB-Image-Segmentation.git,,0.0,False,9a757ee22098334ef2c012e58be01a3a49cfbff4,,
3550.0,giorgosma--Simulation-of-heat-transfer-in-2d-surface,C,1.0,git,https://github.com/giorgosma/Simulation-of-heat-transfer-in-2d-surface.git,,0.0,False,461f27ff1cc74a24f51a7061809704e9e9e59292,,
3990.0,06needhamt--SharpMP,C++,1.0,git,https://github.com/06needhamt/SharpMP.git,,0.0,False,daa83da989d639e9c59eb2047be8eac26aef8b98,,
2021.0,AstroVPK--LLVM-4.0.0,C++,1.0,git,https://github.com/AstroVPK/LLVM-4.0.0.git,,0.0,False,8db6ddc3c8c09b5c344aadaad1cc200a471b55fa,,
6306.0,Omarwalid10--HPC-OpenMP-code,C,1.0,git,https://github.com/Omarwalid10/HPC-OpenMP-code.git,,0.0,False,817317bc516c1a5a2beff584a01864e6841bb85b,,
282.0,lucasjliu--parallel-cvxhull,C++,1.0,git,https://github.com/lucasjliu/parallel-cvxhull.git,,0.0,False,90b73ced27ed31d4e5c7b65c0ca2bc0efc05aaee,,
2043.0,JLucks--HSOMP,C,1.0,git,https://github.com/JLucks/HSOMP.git,,0.0,False,aaf7fe8241efa374f69c00f4cab9296bac67cb73,,
6298.0,erickxbliv--openmp,C,1.0,git,https://github.com/erickxbliv/openmp.git,,0.0,False,9ecf01ad93cf596c02989603fcc6c1389b387d72,,
7787.0,ManojMiddepogu--OpenMP_Rayon_BenchMarking,C++,1.0,git,https://github.com/ManojMiddepogu/OpenMP_Rayon_BenchMarking.git,,0.0,False,c7e1a9bcc3eceb9fa8b73203c346099a47ec0242,,
7802.0,deathlokmike--parallel_insertion_sort,C++,1.0,git,https://github.com/deathlokmike/parallel_insertion_sort.git,,0.0,False,26d860c9b953485a1a3ec395d2f72ab92756e612,,
7861.0,tiagotschmidt--haar_wavelet_openmp,C,1.0,git,https://github.com/tiagotschmidt/haar_wavelet_openmp.git,,0.0,False,a52cd7acde2927e4c9cfd919cf0b3075a76428f4,,
2190.0,rishdas--hpc,C,1.0,git,https://github.com/rishdas/hpc.git,,0.0,False,09b0248b9f7cc1abfcf8c6cbfee377e74e765368,,
6350.0,EliasSih--parallel_sorting-in-openMP-and-MPI-,C,1.0,git,https://github.com/EliasSih/parallel_sorting-in-openMP-and-MPI-.git,,0.0,False,9bc68ea1b0e64d716d4b05c890606b4cd95ddb95,,
3919.0,kawaiivoldemort--OpenMPIExperiments,C,1.0,git,https://github.com/kawaiivoldemort/OpenMPIExperiments.git,,0.0,False,6549344fde1dddc95004959eb6f7c1cc87dfe85c,,
3848.0,nikos912000--octree-partitioning,C,1.0,git,https://github.com/nikos912000/octree-partitioning.git,,0.0,False,e7db0c7d6470b9bdf4a0f959baefaa99dfbf02d1,,
3854.0,milfeld--maskeraid,C,1.0,git,https://github.com/milfeld/maskeraid.git,,0.0,False,6d3cd0dc3b59c9fa5427f7b9c9db287f4ff2afd1,,
197.0,AlexAllen--danPrllelTst,C++,1.0,git,https://github.com/AlexAllen/danPrllelTst.git,,0.0,False,5008c37d2417b3a5bcc8972802c029cbb8574486,,
2211.0,erikkallman--scttr,C,1.0,git,https://github.com/erikkallman/scttr.git,,0.0,False,d86b594a387662d1cde836af7ebf022a6fbfca26,,
6647.0,OronDF343--PrimeFDG,C,1.0,git,https://github.com/OronDF343/PrimeFDG.git,default_cmake.sh,1.0,,b45893ed6c837be6758c282239cf445869e65471,,2022-05-25 14:30:51+00:00
504.0,PadmajaVB--Heart-Disease-Prediction-Using-ANN,C,1.0,git,https://github.com/PadmajaVB/Heart-Disease-Prediction-Using-ANN.git,,0.0,False,6a9ed6b948a095d7e0d4379d333523a9f684e725,,
3585.0,LalitDhupar--Large-Matrix-Multiplication-Using-OpenMP,C,1.0,git,https://github.com/LalitDhupar/Large-Matrix-Multiplication-Using-OpenMP.git,,0.0,False,cdc27da9d87b691339ce797c3ca8410247b3fd57,,
2130.0,mjt249--parallel,C++,1.0,git,https://github.com/mjt249/parallel.git,,0.0,False,4f213c9ff48e535350f73bb98ad5d1b2463292ed,,
3588.0,feaker369--Floyd-algorithm-with-MPI-and-OpenMP,C++,1.0,git,https://github.com/feaker369/Floyd-algorithm-with-MPI-and-OpenMP.git,,0.0,False,1dc57e0f747b3912e842c943609d965c7eea64f2,,
189.0,wolfway--OpenMP,C,1.0,git,https://github.com/wolfway/OpenMP.git,,0.0,False,4379a4183d1c2d8c106331a83ef388a991ccde40,,
6344.0,Elkin77--OpenMPvsMPI,C,1.0,git,https://github.com/Elkin77/OpenMPvsMPI.git,,0.0,False,0a0343092753f849fa7d328efcfa915a77c8621e,,
6655.0,UCL-PHAS0100-22-23--week8_openmp_examples,C++,1.0,git,https://github.com/UCL-PHAS0100-22-23/week8_openmp_examples.git,,0.0,False,21ea73354cc13398538d84b11138342ed9c811ec,,
2154.0,jillmao--pthread-and-openmp,C,1.0,git,https://github.com/jillmao/pthread-and-openmp.git,,0.0,False,32d95ecfb1c11581582e07e81835a46c35b4ea0d,,
3298.0,romanpras--Parallel-and-Distributed-Computation,C,1.0,git,https://github.com/romanpras/Parallel-and-Distributed-Computation.git,,0.0,False,5b127900de9a438cd7f7a896066d95d35071b9ed,,
874.0,serprex--Metaballs,C,1.0,git,https://github.com/serprex/Metaballs.git,,0.0,False,b21015588b4236e1054a64353595edac61b18398,,
4531.0,YXDsimon--OpenMP,C++,1.0,git,https://github.com/YXDsimon/OpenMP.git,,0.0,False,7bcfa49852a403f317cf59ce354302b3fc0e13c1,,
4535.0,SidSan97--OMP---Algebra-Linear,C++,1.0,git,https://github.com/SidSan97/OMP---Algebra-Linear.git,,0.0,False,58bdc490872fa81b287bce9305fc6f89ff8729e9,,
5997.0,taylorc1009--Parallel-N-Queens,C++,1.0,git,https://github.com/taylorc1009/Parallel-N-Queens.git,,0.0,False,6097203513ff824ef8dab70e2ec690dc8f6ba7ba,,
3280.0,MohammadHashemi-ai--Massive-Mathematical-Calculations-Acceleration-with-OPENMP-Method,C++,1.0,git,https://github.com/MohammadHashemi-ai/Massive-Mathematical-Calculations-Acceleration-with-OPENMP-Method.git,,0.0,False,fed186d0b40a2167cb58cf05cfbe5f8d0d7d8827,,
1285.0,LiuXTao--PSRS-OpenMP-MPI,C++,1.0,git,https://github.com/LiuXTao/PSRS-OpenMP-MPI.git,,0.0,False,e01d892e8a6785763f50d80780b6d3c727d70878,,
5828.0,MickiFoerster--spl-transformer,C++,1.0,git,https://github.com/MickiFoerster/spl-transformer.git,,1.0,False,db4bb39b870edc4fda06bbab8ba63932f6081102,,
1274.0,ganesh101992--Parallel-algorithm-for-list-ranking,C,1.0,git,https://github.com/ganesh101992/Parallel-algorithm-for-list-ranking.git,,0.0,False,d7c3af341f4bc7bb898423822dfd67e25fb65369,,
3269.0,NEGU93--Parallel-Image-FIltering,C,1.0,git,https://github.com/NEGU93/Parallel-Image-FIltering.git,,1.0,,f4049e3cac22905e5de937960040652812ea52af,,
1216.0,juan-burtet--ParallelBucketSort,C,1.0,git,https://github.com/juan-burtet/ParallelBucketSort.git,default_make.sh,0.0,False,4f109282b4aece8e6a2babfeccdc6dc9ed6cfa1f,,2018-08-22 13:19:01+00:00
3071.0,paulorobertocruz--openmpi-sdist,C,1.0,git,https://github.com/paulorobertocruz/openmpi-sdist.git,,0.0,False,c9f4a998aeac8c3d17938ae407bfbdb5b2ef79e8,,
1201.0,variar--fav-mpi,C,1.0,git,https://github.com/variar/fav-mpi.git,,0.0,False,c546dc3f5f353ffb7620caec11c7a8ee1a43ac4b,,
345.0,tamirsagi--Kmeans,C++,1.0,git,https://github.com/tamirsagi/Kmeans.git,,0.0,False,784f6f6c7cb668dcaa7fc42a4dd7a922e3bf94e9,,
5846.0,URV-BioGEI--Massive-Parallel-Computing,C,1.0,git,https://github.com/URV-BioGEI/Massive-Parallel-Computing.git,,0.0,False,751878661c902e6e25a8acd5ce1b0cd417515b33,,
3057.0,stathismast--parallel-matrix-convolution,C,1.0,git,https://github.com/stathismast/parallel-matrix-convolution.git,,0.0,False,904184221e6ade1aead1123e13d09d2bd91c1e3c,,
1231.0,oli-loades--Jacobi-openmpi,C++,1.0,git,https://github.com/oli-loades/Jacobi-openmpi.git,,0.0,False,1b007cd61bae6409f58b1dbd319ffb43ebbf7a4e,,
4858.0,AndreasKaratzas--tsp,C++,1.0,git,https://github.com/AndreasKaratzas/tsp.git,default_make.sh,0.0,False,be557f349b3877b299a1b26cd5ba876752fe9c60,,2021-01-24 13:58:41+00:00
7354.0,serjzimmerman--parallel-programming,C++,1.0,git,https://github.com/serjzimmerman/parallel-programming.git,,0.0,False,e1a8c5543e7fa88715bb159d950eaf5645a6b329,,
824.0,prod-feng--pi_lcg_random_parallel,C,1.0,git,https://github.com/prod-feng/pi_lcg_random_parallel.git,,0.0,False,eced5611ecadf86340c93498d7424397160a8cf7,,
4447.0,odygsim--parallelImageConvolution,C,1.0,git,https://github.com/odygsim/parallelImageConvolution.git,,0.0,False,815500bad5acdc68930d3106bb6834f66290fcc6,,
1367.0,Raienryu97--parallelizationstudy,C++,1.0,git,https://github.com/Raienryu97/parallelizationstudy.git,,0.0,False,4220bad79f0715ea1124175be69237ae06b6f560,,
411.0,geziogas--ParallelProgramming-Project,C,1.0,git,https://github.com/geziogas/ParallelProgramming-Project.git,,0.0,False,b8a13ca07224ae38b1c9bdd4e57cc5c693ae817e,,
2983.0,mhalk--polly-llvm-omp-backend,C,1.0,git,https://github.com/mhalk/polly-llvm-omp-backend.git,,1.0,False,00ee0b3b533520ae0f1adc7d946b7d33d694653b,,
71.0,daritter--OpenMPIFitter,C++,1.0,git,https://github.com/daritter/OpenMPIFitter.git,,0.0,False,8500a5b57671f7b5f2a8755dac5b7f739690fd38,,
4950.0,lijinrun--ParallelProgramming,C++,1.0,git,https://github.com/lijinrun/ParallelProgramming.git,,0.0,False,8f1fc530d502f5798747af39702536d1fda49d26,,
7227.0,1234ngochai--ELECTRIC-VEHICLE-CHARGING-GRID-OPERATED-BY-A-DISTRIBUTED-WIRELESS-SENSOR-NETWORK-WSN-,C,1.0,git,https://github.com/1234ngochai/ELECTRIC-VEHICLE-CHARGING-GRID-OPERATED-BY-A-DISTRIBUTED-WIRELESS-SENSOR-NETWORK-WSN-.git,,0.0,False,36587efb1af2ebab712661b57bab6a454b78155d,,
6057.0,alireza-safdari--CUDA-OpenMP_Gaussian_Process_Regression_With_Hyper_Parameters,C++,1.0,git,https://github.com/alireza-safdari/CUDA-OpenMP_Gaussian_Process_Regression_With_Hyper_Parameters.git,,0.0,False,49da39bb08c2ec4f28238d92f94cfd4185ea9825,,
7613.0,AmrHMorsy--Ray-Tracer,C++,1.0,git,https://github.com/AmrHMorsy/Ray-Tracer.git,,0.0,False,7671db298a762a399af21cf96fbc49b638e9f536,,
5813.0,MatanF5--Sequence_Allignment_Parllel,C,1.0,git,https://github.com/MatanF5/Sequence_Allignment_Parllel.git,,0.0,False,f7d913d1f182f6edb4f4869e43854637a15c5f02,,
4487.0,markub3327--MazeSolver_GA,C++,1.0,git,https://github.com/markub3327/MazeSolver_GA.git,,0.0,False,8961750e713ca95a4e7bc50325a4c94fd4b28e1b,,
403.0,chponte--omp4simd,C,1.0,git,https://github.com/chponte/omp4simd.git,,0.0,False,e6e28fc1717983ad3650fcdcd328a20fbc79bf84,,
4896.0,rawal-p--HPC-OpenMP-Assignment,C,1.0,git,https://github.com/rawal-p/HPC-OpenMP-Assignment.git,,0.0,False,67ecec3c75a41833da645ee2ca52561859800e34,,
829.0,shaowei-su--ParallelGaussianElimination,C,1.0,git,https://github.com/shaowei-su/ParallelGaussianElimination.git,,0.0,False,0f45540328481c0ace23844c509fe066c2f9250e,,
5806.0,J-Magiera--P-M-D,C,1.0,git,https://github.com/J-Magiera/P-M-D.git,,0.0,False,a6f1bba0d8257710d7ceb3f25a4c2a9555bfa3a9,,
1334.0,sahityamantravadi--cme213-sp18,C++,1.0,git,https://github.com/sahityamantravadi/cme213-sp18.git,,0.0,False,b4b84732e8a8ccd4fe5eb3986da7b30902294cb1,,
4920.0,sabdam--hpc,C++,1.0,git,https://github.com/sabdam/hpc.git,,0.0,False,0939ea5ab1bbff2a9dd454132052d9634986a490,,
5976.0,rajshrestha86--kmeans-clusterize,C,1.0,git,https://github.com/rajshrestha86/kmeans-clusterize.git,,1.0,False,bd740d45d6cb9db90625ea0d91d9055838c7d0f0,,
4764.0,kwrx--Game-of-Life,C++,1.0,git,https://github.com/kwrx/Game-of-Life.git,,0.0,False,8d09151087c37277c745c4d73d91710b51296ffc,,
4760.0,k-Arihara--PrimeTest-Parallel,C,1.0,git,https://github.com/k-Arihara/PrimeTest-Parallel.git,,0.0,False,b6b6d8b29326c102b36b87357264e865516a0779,,
4685.0,jnguyen1098--mazep,C,1.0,git,https://github.com/jnguyen1098/mazep.git,default_make.sh,0.0,False,b3e519aca219e313180d928d392bdd1d39f07c69,,2021-03-31 21:54:24+00:00
4750.0,imdatcakmak--ParalelBST,C++,1.0,git,https://github.com/imdatcakmak/ParalelBST.git,,0.0,False,91a64eae89fb1c72dc4a0178f003740f9c238ffe,,
1059.0,mukundc--Image-Processing-and-Optimization,C,1.0,git,https://github.com/mukundc/Image-Processing-and-Optimization.git,,0.0,False,8a3e0ba78786d9f1f0cca79a8f6be8e6fd2c660d,,
3217.0,CSpyridakis--HOC,C,1.0,git,https://github.com/CSpyridakis/HOC.git,,0.0,False,5971d659b9e44e25d7dcaf8c0f99c41536903b2f,,
1069.0,jonahkall--JBParallel,C++,1.0,git,https://github.com/jonahkall/JBParallel.git,,0.0,False,256492adac0320be836916e2cd38887f13048e25,,
3213.0,woshildh--OpenMPLearning,C++,1.0,git,https://github.com/woshildh/OpenMPLearning.git,,0.0,False,652a89a2cf6190d2f32e32363654d16db85a0e8a,,
4692.0,muji-4ok--pixel-sort-qt5,C++,1.0,git,https://github.com/muji-4ok/pixel-sort-qt5.git,,0.0,False,8dd6cf67fb50b83667d0f24470230d5b7fb12ab6,,
998.0,reddec--vmath,C++,1.0,git,https://github.com/reddec/vmath.git,,1.0,False,b68c27c16a3a8298a07a41ac051a0e97048b7254,,
367.0,gkoulis--convolution,C,1.0,git,https://github.com/gkoulis/convolution.git,,0.0,False,01680c71228e68d77e51384099bda8c00cccdbc1,,
984.0,klueska--libgomp-parlib,C,1.0,git,https://github.com/klueska/libgomp-parlib.git,,0.0,False,d6d508e0f71ae1e8cdd62b364207d3c7e55d0baa,,
979.0,jainpranav--OpenMP_Fun,C,1.0,git,https://github.com/jainpranav/OpenMP_Fun.git,,0.0,False,fb7751ceaa8d31c4c53f2213352382359ecb80c2,,
7528.0,EdmondDantes21--parallel_closest_pair_of_points,C++,1.0,git,https://github.com/EdmondDantes21/parallel_closest_pair_of_points.git,,0.0,False,91e094ceb49d5f57e1b4ab021438e8c377b83773,,
7492.0,Kintobor1370--Euler-_Solver_-OpenMP-,C++,1.0,git,https://github.com/Kintobor1370/Euler-_Solver_-OpenMP-.git,,0.0,False,8954507d21ea89892520e1bacc87e9aa0d869720,,
5919.0,abdelaziz321--hybrid-mpi-openmp-example,C++,1.0,git,https://github.com/abdelaziz321/hybrid-mpi-openmp-example.git,,0.0,False,f5b99edd976a4a97699b26ab2ef3faa9ee321857,,
7502.0,cyanray--OpenMP-Examples,C++,1.0,git,https://github.com/cyanray/OpenMP-Examples.git,,1.0,False,7d810d6f5ad77328e46aa3ac5a26b42c96fdf81f,,
3166.0,Qi-Ye-079--TwiFecth-OMP,C++,1.0,git,https://github.com/Qi-Ye-079/TwiFecth-OMP.git,,1.0,False,f2207e41c49d779808f1f6299f6c78008ebf24a3,,
3108.0,aalmeidasilva--RSA-OpenMP-MPI,C++,1.0,git,https://github.com/aalmeidasilva/RSA-OpenMP-MPI.git,,0.0,False,fe97dde765e6dd246f4ae25932e65843e6de48e7,,
910.0,ShoeShi--Parallel-Programming-Samples,C,1.0,git,https://github.com/ShoeShi/Parallel-Programming-Samples.git,,0.0,False,d923b7832571d5a5c64f5e62c1dbbe093aea3146,,
7405.0,Git-Yuya--parallel-processing,C,1.0,git,https://github.com/Git-Yuya/parallel-processing.git,,0.0,False,45376bfedc0e0b6c3e381302cada21fb5ad8986d,,
4812.0,ResearchComputing--OpenMP-Spring-2020,C,1.0,git,https://github.com/ResearchComputing/OpenMP-Spring-2020.git,,0.0,False,330db49fa152aa38efa0f8345c75b7106bb30c0f,,
4819.0,epoell--openMP_examples_and_Matrix-Matrix-Multiplication,C++,1.0,git,https://github.com/epoell/openMP_examples_and_Matrix-Matrix-Multiplication.git,default_cmake.sh,1.0,,95629454fab4435cc1b4f739e3aa8a2cc34b7aef,,2021-02-08 13:34:05+00:00
1184.0,hyeminchocho--ImageProcessingOptimization,,1.0,git,https://github.com/hyeminchocho/ImageProcessingOptimization.git,,0.0,False,699a4f166e24e1beab96661419054546377fd30a,,
31.0,zosiakropka--trigrams-openmp,C++,1.0,git,https://github.com/zosiakropka/trigrams-openmp.git,default_make.sh,0.0,False,338e044b3262735e93a708dc887e0b48585c86af,,2013-12-06 01:15:49+00:00
1173.0,SaiWebApps--DT-Convolution,,1.0,git,https://github.com/SaiWebApps/DT-Convolution.git,default_make.sh,0.0,False,9095dc06a1c5e9e71955802437e5695980e20fb3,,
4824.0,passlab--llvm-openmp,C++,1.0,git,https://github.com/passlab/llvm-openmp.git,,1.0,False,fe444d1c1890322ad5b6b1e4620e52eb352af9ea,,
4780.0,tedy97--K-Means-,C,1.0,git,https://github.com/tedy97/K-Means-.git,,0.0,False,6e2e6862e628011f60cb499b6afbe82eef000672,,
4790.0,hassansalehe--OpenMPDataflowExamples,C++,1.0,git,https://github.com/hassansalehe/OpenMPDataflowExamples.git,,1.0,False,420696d5e7809c123f08b9939e574b9e8c4fe6d5,,
1099.0,an4--HPC-OpenMP,C,1.0,git,https://github.com/an4/HPC-OpenMP.git,default_make.sh,0.0,False,b8d25a734cd6436197ae77b1210b0ca73d4f3027,,2014-10-20 19:35:16+00:00
3125.0,jeremyyew--sudoku-checker,C,1.0,git,https://github.com/jeremyyew/sudoku-checker.git,,0.0,False,b92705b340fdc41b7f5b713df9f406a483a8c6e9,,
7450.0,Malinowsk--Computacion-Paralela-y-Distribuida,C,1.0,git,https://github.com/Malinowsk/Computacion-Paralela-y-Distribuida.git,,0.0,False,0303cebb31e4c80ac612e72d1f67cb2632b17e19,,
1127.0,yq314--k-means,C,1.0,git,https://github.com/yq314/k-means.git,,0.0,False,39cec44d8f279f1dfc54dd0a81b83d618c8b75e4,,
3233.0,oke-aditya--parallel_neural_networks,C++,1.0,git,https://github.com/oke-aditya/parallel_neural_networks.git,,0.0,False,611059e05b5fa89c167737b0293e8af120f1fe1e,,
1115.0,kuntae--kmeans,C++,1.0,git,https://github.com/kuntae/kmeans.git,,0.0,False,fe7689b6f96d60747e0ab42ac9962d8b828f57b6,,
1120.0,7ogic--K-means,C++,1.0,git,https://github.com/7ogic/K-means.git,,0.0,False,6576ee96abb2918c1f1a919d373ddfb547ef2504,,
7711.0,Nishant1201--Parallel-Computing,C++,1.0,git,https://github.com/Nishant1201/Parallel-Computing.git,,0.0,False,d5ccdf4fb0a2c00bc2233b53fe149cb6adbca451,,
2887.0,apooreapo--PageRank,C,1.0,git,https://github.com/apooreapo/PageRank.git,,0.0,False,f6579a459a84c00ac4a8e20d9ba017651fdf9f0a,,
1484.0,mohamso--optewe,C++,1.0,git,https://github.com/mohamso/optewe.git,,0.0,False,940a60217379b531f234fa73b2d2eddc57652b1c,,
4996.0,wusspsj--dacc,C,1.0,git,https://github.com/wusspsj/dacc.git,,0.0,False,f7063756a135202438346c9a1875829ee14b9b1f,,
2893.0,theCodeBench--csc461-ConcurrencyParallelProg2,C++,1.0,git,https://github.com/theCodeBench/csc461-ConcurrencyParallelProg2.git,,0.0,False,9bdabf27f81277df1b4af24cf5cfead3fbee6d43,,
4365.0,ArthurZucker--HighPerformanceComputing,C,1.0,git,https://github.com/ArthurZucker/HighPerformanceComputing.git,,0.0,False,a6908fcd084d8291554cd4a5de5e5c0f419a9353,,
5000.0,OnofreTZK--OpenMP_ShellSort,C++,1.0,git,https://github.com/OnofreTZK/OpenMP_ShellSort.git,,0.0,False,96e825fc87c4114062294adc709c6c27c7e0c800,,
7912.0,tomdeakin--programming-gpu-openmp,C,1.0,git,https://github.com/tomdeakin/programming-gpu-openmp.git,,0.0,False,43539a176ff833c7734b73c0247d7a67faf4b0cd,,
4293.0,suzakuwcx--OpenMPRDB-cli,C++,1.0,git,https://github.com/suzakuwcx/OpenMPRDB-cli.git,,1.0,False,8fa4193f9e57b04c7228fee19cc505b86139f138,,
1454.0,jinyeom--openmp-bellman-ford,C++,1.0,git,https://github.com/jinyeom/openmp-bellman-ford.git,,0.0,False,39e2e10fe11df9dab08b685c064f081da6d3e24a,,
5040.0,cheshie--ParallelComputing,C++,1.0,git,https://github.com/cheshie/ParallelComputing.git,,0.0,False,0660b760bbaf25f12a7e67b53da3e0570820596d,,
4384.0,xeptore--grayscaler-openmp,C,1.0,git,https://github.com/xeptore/grayscaler-openmp.git,default_cmake.sh,1.0,,4e372712a11e7df7d03ce43ee06ce25adf42dc72,,
7169.0,ssWieldss--OpenMPLabs,C++,1.0,git,https://github.com/ssWieldss/OpenMPLabs.git,,0.0,False,46f5327211c7760c86e42f7f2c86eedfe43e509e,,
1471.0,ericxiao251--N-Body,C,1.0,git,https://github.com/ericxiao251/N-Body.git,,0.0,False,a7608d945750b5157b3f6543c449310a059c8e1d,,
6115.0,cterboven--OpenMP-tutorial-SC21,C,1.0,git,https://github.com/cterboven/OpenMP-tutorial-SC21.git,,0.0,False,a3db850502c93af583240c57c234ec0f97d3cbc8,,
4325.0,xhquant--OpenMP,C++,1.0,git,https://github.com/xhquant/OpenMP.git,default_cmake.sh,1.0,,2a8774041801745f199854aa9b0298ce1691bee0,,2021-08-09 11:23:46+00:00
96.0,godspeed1989--omp_samples,C++,1.0,git,https://github.com/godspeed1989/omp_samples.git,default_make.sh,0.0,False,5762f8b5874fe7c9287d0663320b8734c680f414,,
1546.0,mkhan5--mkl-kernels,C,1.0,git,https://github.com/mkhan5/mkl-kernels.git,,0.0,False,0c15c9ecce6d806d4284d092ffac8dcf2dacf0cc,,
7115.0,happycloudy--Lab3_OpenMP_,C++,1.0,git,https://github.com/happycloudy/Lab3_OpenMP_.git,,1.0,False,1cc6c214c09c79573b0fbc1d4f91cc79be36994d,,
7110.0,matteogoldin--OpenMP_pThreads_lab,C,1.0,git,https://github.com/matteogoldin/OpenMP_pThreads_lab.git,default_cmake.sh,1.0,,ef635b2169c16c29cf6018405c671227f830aaae,,
7112.0,YoannSo--OpenMP_find_image,C,1.0,git,https://github.com/YoannSo/OpenMP_find_image.git,,0.0,False,09c1627b61f25d89a669d17323fb799e10ffcfdf,,
7102.0,zhuowenzhao--particle_swarm_parallel_implementation,C++,1.0,git,https://github.com/zhuowenzhao/particle_swarm_parallel_implementation.git,,0.0,False,24caad8cc4d23a58926de7acc6c08cf8335f0169,,
6114.0,jeesooxkim--parallel-programming,C++,1.0,git,https://github.com/jeesooxkim/parallel-programming.git,,0.0,False,a5f4fc7d3933d4bcaed8571849255a94ca4c9c79,,
7669.0,TianheL--Parallel-and-Distributed-Computing-Course-PJ,C++,1.0,git,https://github.com/TianheL/Parallel-and-Distributed-Computing-Course-PJ.git,,0.0,False,271cdd8fddb7a0b6f878c4ea5368a5fd6415ce74,,
1512.0,ahmedrayhan--game-of-life-openMP,C++,1.0,git,https://github.com/ahmedrayhan/game-of-life-openMP.git,default_make.sh,0.0,False,7760ff1269c62f6fe0b01651c28571e19ee7caee,,2018-04-13 18:34:47+00:00
4319.0,john-fotis--Parallel-Programming,C,1.0,git,https://github.com/john-fotis/Parallel-Programming.git,,0.0,False,158f9b4276acbb53143b7a62b0779b0758e10e05,,
5013.0,bearpro--paralell-programming,C++,1.0,git,https://github.com/bearpro/paralell-programming.git,,0.0,False,a7a10b20407de2fa3cbaf398fe2cd9249dd8af4d,,
4981.0,zuriscript--PapiWrapper,C++,1.0,git,https://github.com/zuriscript/PapiWrapper.git,default_cmake.sh,1.0,,93b0b21e51802896ade02d67321676031b0989f5,,2020-12-21 00:24:38+00:00
4398.0,axmat--ParallelKMeans,C++,1.0,git,https://github.com/axmat/ParallelKMeans.git,default_make.sh,0.0,False,1db0cbd7805ef65678087cfb19c5d9e3827437d5,,
5791.0,sara7860--Enhancement-of-RC5-Algorithm,C,1.0,git,https://github.com/sara7860/Enhancement-of-RC5-Algorithm.git,,0.0,False,2fb1dde631333ba752f949e1c1af230c66f82669,,
2949.0,batux--parallel_conway_game_of_life,C++,1.0,git,https://github.com/batux/parallel_conway_game_of_life.git,,0.0,False,2f7ca4f093438522c46b28df94dd8aa7818bd1b2,,
4976.0,mr-KRAX--labs_OpenMP,C++,1.0,git,https://github.com/mr-KRAX/labs_OpenMP.git,,0.0,False,79a8f21dd3acca50e0ce45d34e9abba1138c4db3,,
440.0,cleversonledur--MandelbrotSet,C,1.0,git,https://github.com/cleversonledur/MandelbrotSet.git,,0.0,False,75b7af46eca5eff7c463e992c46c0ab29589bbbd,,
3344.0,Ta1ly--USTC-ParallelComputing-Lab,C++,1.0,git,https://github.com/Ta1ly/USTC-ParallelComputing-Lab.git,,0.0,False,96ccbbdf3db4ca15f17d0ab5ae0c0097924d66ee,,
2951.0,jexom--FlakeGen,C++,1.0,git,https://github.com/jexom/FlakeGen.git,,0.0,False,2af592cffb9739da46e5485325fbd978423fe01d,,
4276.0,borisfoko--DijkstraParallel,C++,1.0,git,https://github.com/borisfoko/DijkstraParallel.git,,0.0,False,66e2c869cd615a3d147b87c4eac72180be4332dc,,
75.0,minavouronikou--kmeans_hybrid,C,1.0,git,https://github.com/minavouronikou/kmeans_hybrid.git,,0.0,False,e088aa16b519f96758b146e185ed54d91ecb9178,,
72.0,hfinkel--libomp_oss-bgq,C,1.0,git,https://github.com/hfinkel/libomp_oss-bgq.git,,0.0,False,a69e03732d821a5f2c85ecf1e1919bc305ece65b,,
6073.0,GustavoLR548--TestChain-Parallel,C++,1.0,git,https://github.com/GustavoLR548/TestChain-Parallel.git,,0.0,False,0efd0836b8cbfb9fc14af720cbe10a227fb277ba,,
2952.0,DrLux--CudaOfLife,C++,1.0,git,https://github.com/DrLux/CudaOfLife.git,,0.0,False,c93aea85c33eeb4b5d3bb74ec879549985f07439,,
3334.0,AidanSmith42--parallelalgorithms,C,1.0,git,https://github.com/AidanSmith42/parallelalgorithms.git,,0.0,False,215647617e4d33454fefc5f4c8f0471bd194ab6b,,
7972.0,rosiewuuu--Hardware-Aware-Software-Optimization-Matrix-Multiplication,C++,0.0,git,https://github.com/rosiewuuu/Hardware-Aware-Software-Optimization-Matrix-Multiplication.git,default_make.sh,0.0,False,2a5ff86439a8fb204ee2009d51f469c44cc1ce0f,,2023-10-19 19:11:23+00:00
5564.0,harshapadidala--MatrixMultiplication_OpenMP,C,0.0,git,https://github.com/harshapadidala/MatrixMultiplication_OpenMP.git,default_make.sh,0.0,False,26037978fc7dd0733914e381d14b17bd5c771382,,
8006.0,iagobueno--openMP,C,0.0,git,https://github.com/iagobueno/openMP.git,default_make.sh,0.0,False,bc67e990a74ffbe64337a6aeefe3d8e38a7bbcc9,,2023-10-09 01:48:15+00:00
5712.0,daleksla--learning,C++,0.0,git,https://github.com/daleksla/learning.git,,0.0,False,560e3060079dc72e82d2257e687e4ae0e7787276,,
5562.0,Hermain-Qadir--Comparing-Sorting-Algos-in-Series-vs-Pthreads-vs-OpenMP,C++,0.0,git,https://github.com/Hermain-Qadir/Comparing-Sorting-Algos-in-Series-vs-Pthreads-vs-OpenMP.git,,0.0,False,c5da54010b0b38414f894d4ab43e5b2e5ff5b8d5,,
5711.0,KanjiyaJinesh--HPC,C++,0.0,git,https://github.com/KanjiyaJinesh/HPC.git,,0.0,False,a1c51ec81b757b886a980d055ef002e4081f90b1,,
5738.0,dylancornelie--openMP_TP,C,0.0,git,https://github.com/dylancornelie/openMP_TP.git,,0.0,False,f411b14a14c6709a16b4307d0f7c155004f7d857,,
5523.0,bett-it--Primes_numbers_OpenMP,C,0.0,git,https://github.com/bett-it/Primes_numbers_OpenMP.git,,0.0,False,77fea9fbf04f6cc9dc2e9b4134fd7364cc22a276,,
5522.0,SilvioBaratto--Parallel-KD-tree-OpenMP-OpenMPI,C++,0.0,git,https://github.com/SilvioBaratto/Parallel-KD-tree-OpenMP-OpenMPI.git,default_make.sh,0.0,False,2a174f797e19dcf68204ce31e9a88f2698dcbf54,,2022-05-17 14:44:59+00:00
5706.0,CDkeeper--Pai-openMP-code-for-Loop-Guidance,C++,0.0,git,https://github.com/CDkeeper/Pai-openMP-code-for-Loop-Guidance.git,,0.0,False,5e2cd6f9e15dac46c8122ea55e1adb40bf0e4e45,,
5743.0,Petonzxc--Automatic-image-contrast,C++,0.0,git,https://github.com/Petonzxc/Automatic-image-contrast.git,,0.0,False,dc4eb18dc26f1f1bd94b4fd9255f814f986cf734,,
8014.0,AndrProger--openMPTask,C++,0.0,git,https://github.com/AndrProger/openMPTask.git,,1.0,False,d6d21f3bb529bd150ccaaf0647cae76b559fa3a0,,
5867.0,xyyeh--openmp_tutorial,C++,0.0,git,https://github.com/xyyeh/openmp_tutorial.git,,0.0,False,d6cf0db17c815ae7a09f20b382f3994b45bacb7d,,
5527.0,Lock1--Simple-Img-Convolution,C,0.0,git,https://github.com/Lock1/Simple-Img-Convolution.git,default_make.sh,0.0,False,0f124c466e3b0f042da13348e1cc5286c09efc13,,
5524.0,Alva112358--multicore-openmp,C,0.0,git,https://github.com/Alva112358/multicore-openmp.git,,0.0,False,73e746c2acc5811cd4d667a1bf7217d09ca1a4e1,,
5710.0,useronezero--Parallel-processing-using-OpenMP-in-C,C,0.0,git,https://github.com/useronezero/Parallel-processing-using-OpenMP-in-C.git,,0.0,False,a141dcf931911c75953604b4f62c7cb7c34769f9,,
5903.0,PurplePachyderm--openmp-gputool,C,0.0,git,https://github.com/PurplePachyderm/openmp-gputool.git,,0.0,False,d9af9bf8a4043a855dc0383c388442e41aff5196,,
5550.0,Kallebyramos--Nested-Loop-Openmp,C++,0.0,git,https://github.com/Kallebyramos/Nested-Loop-Openmp.git,default_make.sh,0.0,False,00a7e791c44fffe72a2129cad1fc5ec2c6fbd900,,2022-05-10 22:31:25+00:00
7969.0,sg0--bin-packing,C,0.0,git,https://github.com/sg0/bin-packing.git,,0.0,False,d5ef532d8bd3da41ae1efbc2c0ab2077ea583f34,,
8010.0,wilsonyau02--Travelling-Salesman-Problem-Using-Genetic-Algorithm,C++,0.0,git,https://github.com/wilsonyau02/Travelling-Salesman-Problem-Using-Genetic-Algorithm.git,,0.0,False,ef3048e57e153a0f40aaebd952f2f94fd7ad4a48,,
5733.0,NDU-CSC413--stl-openmp,C++,0.0,git,https://github.com/NDU-CSC413/stl-openmp.git,,0.0,False,0f617e52a70834d70dae35b91744a5a2473c4d91,,
5883.0,oriolmartinezac--CPDS-parallelism-openmp,C,0.0,git,https://github.com/oriolmartinezac/CPDS-parallelism-openmp.git,,0.0,False,7041c3a2485e97ce94c4cc46ed16800afce1b580,,
5728.0,bnafack--Kd-tree-implementation,C++,0.0,git,https://github.com/bnafack/Kd-tree-implementation.git,,0.0,False,611d792bac7a9ac243b90e86061f954fb2d36175,,
5891.0,Beu-Wolf--CPD21_BallAlg,C,0.0,git,https://github.com/Beu-Wolf/CPD21_BallAlg.git,default_make.sh,0.0,False,3c02f6827c5362d67da0fd63e505955b73bc4294,,
8054.0,brun0mr--RainbowGameOfLife_threads,C,0.0,git,https://github.com/brun0mr/RainbowGameOfLife_threads.git,default_make.sh,0.0,False,9c8541d8fbfab877d53a1e0a9928ceac547fb2d6,,2023-09-24 00:30:10+00:00
5543.0,chahak13--pagerank,C++,0.0,git,https://github.com/chahak13/pagerank.git,,0.0,False,7d166d02016e4b21f867aefe47315e588016078a,,
5729.0,xiaolinj--Sparse-Matrix-Vector-Multiplication-SpMV-with-OpenMP,C,0.0,git,https://github.com/xiaolinj/Sparse-Matrix-Vector-Multiplication-SpMV-with-OpenMP.git,,0.0,False,03255ca11872b85fb66ff783f14b660ca637045d,,
8016.0,jdn5126--BarnesHutSimulation,C++,0.0,git,https://github.com/jdn5126/BarnesHutSimulation.git,default_make.sh,0.0,False,f387c2ae243bf166f55e7cd67105119354b32cdf,,2022-11-22 16:29:54+00:00
8012.0,oshodiS--AutomaCellulare-HPP,C,0.0,git,https://github.com/oshodiS/AutomaCellulare-HPP.git,,0.0,False,7695e97fa05e762e631f7dc1ee71165f2b40d644,,
5558.0,saisankp--Concurrent-Systems,C,0.0,git,https://github.com/saisankp/Concurrent-Systems.git,,0.0,False,a65f425d5dfa270f5899dcd6f7515ded64a50ea9,,
5748.0,linnn2187--openMP-matrix-multiply,C,0.0,git,https://github.com/linnn2187/openMP-matrix-multiply.git,,0.0,False,1e123ba7d5ce9c9e1043c91b9afc151895a31e8d,,
8058.0,franconoronha--checkers_openmp,C++,0.0,git,https://github.com/franconoronha/checkers_openmp.git,default_make.sh,0.0,False,896248ac8607754e817c695818e95b8c08135246,,2023-08-11 02:43:34+00:00
5716.0,wennys-camilo--OpenMP,C,0.0,git,https://github.com/wennys-camilo/OpenMP.git,,0.0,False,9ad91305a5b00d95c6dc360cd03e6956a3faa85b,,
8057.0,RafaelCopes--parallel-checkers-game,C,0.0,git,https://github.com/RafaelCopes/parallel-checkers-game.git,,0.0,False,bc8b403da14e8c3041f8ce99e0e73755aabe9c3f,,
5536.0,lucaszm7--IPPD_OpenMP_RPC_RMI_MPI,C,0.0,git,https://github.com/lucaszm7/IPPD_OpenMP_RPC_RMI_MPI.git,,0.0,False,efa3c9499122b51249d6279e704ef72c0a1c446d,,
5534.0,ramakc153--openMPI-prime-number,C,0.0,git,https://github.com/ramakc153/openMPI-prime-number.git,,0.0,False,3623df8c16c0178019cbff06eb45325241c5a85d,,
8048.0,yeehao34--Canny_Edge_Detection,C++,0.0,git,https://github.com/yeehao34/Canny_Edge_Detection.git,,0.0,False,0a3f2a319837a83a0fc3d98f0ea76c95342b85a6,,
5880.0,SanchezHernan--Fungus-Propagation-OpenMp-C-,C++,0.0,git,https://github.com/SanchezHernan/Fungus-Propagation-OpenMp-C-.git,,0.0,False,756567b3d3517e23cac85039772c4a5d314690f4,,
8019.0,JechielButael--MPI_OpenMP_CUDA_Project,C,0.0,git,https://github.com/JechielButael/MPI_OpenMP_CUDA_Project.git,,0.0,False,e443a3e7866cc9e57121b97cdcc20f9b061a46b3,,
5818.0,mralex1810--openmp,C++,0.0,git,https://github.com/mralex1810/openmp.git,default_cmake.sh,1.0,,8d780d0d1bcb4ac318ad7baa93dae0ba710afc71,,2022-02-09 16:30:20+00:00
5626.0,gzachos--parallel-course-uoi,C,0.0,git,https://github.com/gzachos/parallel-course-uoi.git,,0.0,False,5c14bf10a34edc13032d46b1910ace6b75dfeb41,,
5672.0,dizys--nyu-multicore-lab-2,C,0.0,git,https://github.com/dizys/nyu-multicore-lab-2.git,default_make.sh,0.0,False,d6702fc5038d001dbfb12b6ec7d509c84da05557,,2022-04-05 02:17:22+00:00
7988.0,shristiUW--Parallelizing-Traveling-Salesman-Problem-with-OpenMP,C++,0.0,git,https://github.com/shristiUW/Parallelizing-Traveling-Salesman-Problem-with-OpenMP.git,,0.0,False,69bb3a54cb3e79476ce385b8e4d3dfe5c20ea844,,
5810.0,Stanislava99--Parallel-Programming,C,0.0,git,https://github.com/Stanislava99/Parallel-Programming.git,,0.0,False,08b3fedf970921b75cbf73fdb3ad8be7914319f9,,
5631.0,patberry99--Huffman-Coding,C++,0.0,git,https://github.com/patberry99/Huffman-Coding.git,default_make.sh,0.0,False,b6d32883b603ae5c669eaec7c6fd7d4c084579b8,,2022-04-14 00:20:17+00:00
5623.0,Vladislavhgtech--openMp,C++,0.0,git,https://github.com/Vladislavhgtech/openMp.git,,0.0,False,2b21a861c3d93f0ea2f10a14ac9143db7cced217,,
5676.0,praveenChauhan686--Strassen-Algorithm-Java-And-OpenMp,C,0.0,git,https://github.com/praveenChauhan686/Strassen-Algorithm-Java-And-OpenMp.git,,0.0,False,0889a540b48baa499414e1df978a74583105cc96,,
5614.0,william96ming--Openmp-pthreads-implementation-on-FFT,C,0.0,git,https://github.com/william96ming/Openmp-pthreads-implementation-on-FFT.git,,0.0,False,c9161b4cc620d1c9218b7f7bf423e39bc2e02719,,
5781.0,shahgauravraj--openmp_programs,C++,0.0,git,https://github.com/shahgauravraj/openmp_programs.git,,0.0,False,957a47ce3ac2e26e7415c921808e4a6187480d03,,
7985.0,mmaarij--Parallelized-Number-Plate-Detection-System-using-OpenCV-OpenMP,C++,0.0,git,https://github.com/mmaarij/Parallelized-Number-Plate-Detection-System-using-OpenCV-OpenMP.git,,0.0,False,204929ed0cdaf002760bf4c7c3bd9fc7af6f699c,,
5619.0,amerinor01--Practica5-HPC,C,0.0,git,https://github.com/amerinor01/Practica5-HPC.git,,0.0,False,244b658ae13a2306099a5b3d28ab8d2b16eca405,,
5622.0,amerinor01--Practica4-HPC,C,0.0,git,https://github.com/amerinor01/Practica4-HPC.git,,0.0,False,4fb207c4246aa3ae2337720ac628418e4045b060,,
5809.0,zhangpp0802--High_Performance_Computing,C,0.0,git,https://github.com/zhangpp0802/High_Performance_Computing.git,,0.0,False,190e3a0063f983d2930f868496fd3ea6772b1cfe,,
5656.0,mpedroni--pararell-programming-pthread-openmp,C,0.0,git,https://github.com/mpedroni/pararell-programming-pthread-openmp.git,,0.0,False,ef1131be54ef2f66813efe30f620c726fc335cb1,,
5655.0,skylark71--UndirectedWeightedGraph,C++,0.0,git,https://github.com/skylark71/UndirectedWeightedGraph.git,,0.0,False,3ddd04c48ff7a991802f595e5609dec8d61c799c,,
5654.0,Pamgerber--Threads_Paralelismo,C,0.0,git,https://github.com/Pamgerber/Threads_Paralelismo.git,,0.0,False,2c9c5e114f50e598ef2540e6210dfa3ec6650b72,,
5652.0,WaiYi1612--OpenMP_Gaussian_Blur,C++,0.0,git,https://github.com/WaiYi1612/OpenMP_Gaussian_Blur.git,,0.0,False,9f94fe57c5bd30766f8949b2906e37bca55b1a6c,,
5650.0,AhChing12--Parallel-Pattern-Matching-with-Rabin-Karp-Algorithm-using-OpenMP,C,0.0,git,https://github.com/AhChing12/Parallel-Pattern-Matching-with-Rabin-Karp-Algorithm-using-OpenMP.git,,0.0,False,a0986aac7bee89272ab46507848b988db0e65ea4,,
5649.0,nami-shaji--OpenMp-Programming-on-Barkla,C,0.0,git,https://github.com/nami-shaji/OpenMp-Programming-on-Barkla.git,,0.0,False,85543dc2882913af877a4000e7265a502283820b,,
5658.0,abelgeringer-beep--OpenMP,C++,0.0,git,https://github.com/abelgeringer-beep/OpenMP.git,,0.0,False,8881cd9f406ff4d7fbb6e2f5a1fb7d166a3447f5,,
5666.0,bertochgg--OpenMP-Suma-de-matrices,C,0.0,git,https://github.com/bertochgg/OpenMP-Suma-de-matrices.git,,0.0,False,e8e9a38b6d2a50b884305658c06bcef33fda1576,,
5788.0,iroghair--verletIntegrationSpeedtest,C++,0.0,git,https://github.com/iroghair/verletIntegrationSpeedtest.git,default_make.sh,0.0,False,54a773815f804b818d0fef09bb6eb558a226ca27,,2022-02-24 15:29:59+00:00
5664.0,laureansvictor--FEUP-CPD-OpenMP,C++,0.0,git,https://github.com/laureansvictor/FEUP-CPD-OpenMP.git,,0.0,False,7432593c2683dc088485ca2b2a9a97ae11791c34,,
5804.0,hgc123123--openmp,C++,0.0,git,https://github.com/hgc123123/openmp.git,,0.0,False,39a797f0e929401f4a121eacbd771d4da0710c08,,
5803.0,osvchnk--Parallel-programming,C++,0.0,git,https://github.com/osvchnk/Parallel-programming.git,,0.0,False,e95f04aba2873f9c8803fa9c8d481984a6d150d6,,
5612.0,mathialakan--louvain-offload,C++,0.0,git,https://github.com/mathialakan/louvain-offload.git,,0.0,False,09b6feef8153be1f5f52b5fa195cdc94667af89b,,
5766.0,s1260051--OpenMPparallel,C++,0.0,git,https://github.com/s1260051/OpenMPparallel.git,,0.0,False,b14f3f15e8168ba5d2e75950d6001d082631ab54,,
5852.0,LAU-CSC447--openmpi_setup,C,0.0,git,https://github.com/LAU-CSC447/openmpi_setup.git,,0.0,False,07576884762682024e78cee547c8851c308fd0a6,,
5588.0,Alchemist1411--HPX-vs-OpenMP,C++,0.0,git,https://github.com/Alchemist1411/HPX-vs-OpenMP.git,,0.0,False,9c46a14f10796eb543c3e216446028bdfe627a18,,
5830.0,mfayez--MatAdd_OMP,C++,0.0,git,https://github.com/mfayez/MatAdd_OMP.git,,0.0,False,0991961867fcce80da0fa8e4dc84e88886bb5eb7,,
5692.0,acutisC--openmp_intro,C,0.0,git,https://github.com/acutisC/openmp_intro.git,,0.0,False,b9a7cec319b8f2ec0b7ae09d4681ed61a3d4f68d,,
5690.0,esmyrnio--wave_2D_solver,C,0.0,git,https://github.com/esmyrnio/wave_2D_solver.git,,0.0,False,c40ea6f6fcf1f25b33c5ab654965efe4ceacccd5,,
5765.0,raulpy271--integral-calculation-openmp,C,0.0,git,https://github.com/raulpy271/integral-calculation-openmp.git,default_make.sh,0.0,False,cb6b0d83fe30089592bbfa447ab24d0f2339f0db,,
7975.0,sestakp--Parallerized-Mendelbrot,C++,0.0,git,https://github.com/sestakp/Parallerized-Mendelbrot.git,,0.0,False,0e7535de08eeaa0bc793d9683cbf31c551b7eddc,,
5762.0,bnafack--openmp,C++,0.0,git,https://github.com/bnafack/openmp.git,,0.0,False,89f6fde356720ae5addf8439289a1b00eb2151cd,,
8017.0,mehanix--Algorithm-B-OpenMP,C++,0.0,git,https://github.com/mehanix/Algorithm-B-OpenMP.git,,0.0,False,c1c190fe026290537f91f10febc6d7cd56c432ff,,
5699.0,goshantiy--threadLab5,C++,0.0,git,https://github.com/goshantiy/threadLab5.git,,0.0,False,77282c697cc7a283b2af8a6e2b95508c782d84c7,,
5581.0,zcadqewsx134679--PP2021_HW3_OpenMP,C++,0.0,git,https://github.com/zcadqewsx134679/PP2021_HW3_OpenMP.git,,0.0,False,a1b5e1b45f096f8ee131a6f9d73a8f0e2712da36,,
5582.0,PlumIk--OpenMP_mul_mat_diplom,C++,0.0,git,https://github.com/PlumIk/OpenMP_mul_mat_diplom.git,,0.0,False,ce13da5d64643a1ed845ed26785c9e0e6d89283b,,
8020.0,MihailLovch--OpenMp13_15,C++,0.0,git,https://github.com/MihailLovch/OpenMp13_15.git,,1.0,False,224c287183c39b9969229769ecf4e224138b70fc,,
8035.0,daltonkell--heat-1d-solver,C++,0.0,git,https://github.com/daltonkell/heat-1d-solver.git,default_make.sh,0.0,False,db33f79c06b55ab0bb6a051dfae0a73fa76077f5,,
5606.0,nyu-multicore--k-means,C++,0.0,git,https://github.com/nyu-multicore/k-means.git,default_cmake.sh,1.0,,3746ac3d06a226c9b736038c264bd83dd08e7b2f,,2022-04-24 03:51:48+00:00
8034.0,NingZhang1--Learn-OpenMP,C++,0.0,git,https://github.com/NingZhang1/Learn-OpenMP.git,,0.0,False,1d98cdca0faaecc543cfaccf5aed02b8a68013ad,,
5681.0,geilerh--matrix-vector_product-MPI-and-OpenMP,C,0.0,git,https://github.com/geilerh/matrix-vector_product-MPI-and-OpenMP.git,,0.0,False,92f259eca2c3806b4f965db62c74af141ad378ab,,
5680.0,francidellungo--Mean_Shift,C++,0.0,git,https://github.com/francidellungo/Mean_Shift.git,default_cmake.sh,1.0,,9225e4b1abc3a0b7073e735dcc64f2ed3ff775e1,,2022-04-03 09:42:15+00:00
5832.0,Raptorino--NeuralNetworkMIMD,C,0.0,git,https://github.com/Raptorino/NeuralNetworkMIMD.git,,0.0,False,a0fc5e06822dc799e829eedd57c11aaef4d63dff,,
5595.0,ginoliza--CPD-T7-OddEven,C,0.0,git,https://github.com/ginoliza/CPD-T7-OddEven.git,,0.0,False,d02bd4cf7fd9e47fce8dff6ce7eea7f82b4dd922,,
5597.0,GregorWey--JacobiOPENMP,C,0.0,git,https://github.com/GregorWey/JacobiOPENMP.git,,0.0,False,fec690403d6020d69f1bd03a24974554d799d1ac,,
5844.0,kaliczp--OpenMPteszt,C,0.0,git,https://github.com/kaliczp/OpenMPteszt.git,default_make.sh,0.0,False,2d25fab54436af97f583cfe6d7b3850ad608c4a9,,2022-01-31 04:25:26+00:00
5600.0,saitotm--openmpi-exercise,C++,0.0,git,https://github.com/saitotm/openmpi-exercise.git,,1.0,False,6756b8ae77494b4aa8d132e94af98316ed6c72cd,,
5686.0,Udbhavbisarya23--OpenMP-Codes,C,0.0,git,https://github.com/Udbhavbisarya23/OpenMP-Codes.git,,0.0,False,01c7cc133ca445c3b212be0dcc2f05833ccc077a,,
5771.0,antonisstou--Optimization-of-C-program-by-rearrange-computations-and-parallelization-with-openmp,C,0.0,git,https://github.com/antonisstou/Optimization-of-C-program-by-rearrange-computations-and-parallelization-with-openmp.git,,0.0,False,689443e90d23ae525cd114582169dcb1632cbd08,,
8038.0,sg0--louvain-offload,C++,0.0,git,https://github.com/sg0/louvain-offload.git,,0.0,False,0ef533b963a9563d4ff58ddf7cbe83851cf2ba16,,
8158.0,dirkarnez--openmp-playground,C++,0.0,git,https://github.com/dirkarnez/openmp-playground.git,default_cmake.sh,1.0,,9f2181716c41d399e0426bcb5b2207544f6c2fc9,,
4989.0,matheusaleso--PAD,C,0.0,git,https://github.com/matheusaleso/PAD.git,,0.0,False,d04c4e6c78bc4b1125416d16bf15b6cf1ae777ea,,
4986.0,dimizisis--high-performance-computing,C,0.0,git,https://github.com/dimizisis/high-performance-computing.git,,0.0,False,024019bc4cb24124bef1d402da1f814976821311,,
4982.0,minzhangmia--OpenMP-parallel-reduction,C,0.0,git,https://github.com/minzhangmia/OpenMP-parallel-reduction.git,,0.0,False,2b41e207d2b435ef9c3a192e4009c4d8f0262222,,
4977.0,HakAus--Caso6_Analisis_de_Algoritmos,C++,0.0,git,https://github.com/HakAus/Caso6_Analisis_de_Algoritmos.git,,0.0,False,387b689e54ddf8fedbe6de279433f89f1ede17fe,,
4993.0,Josue-Zenteno--OpenMP-Project,C,0.0,git,https://github.com/Josue-Zenteno/OpenMP-Project.git,,0.0,False,5051a69e634f8b2d76aefbd3ef25522281e62508,,
5018.0,yulia9112--OpenMP,C++,0.0,git,https://github.com/yulia9112/OpenMP.git,,0.0,False,a5098cab109bcc2c6bea51544fbf6ea654918bbe,,
5014.0,dangulos--OpenMPI_Practice,C++,0.0,git,https://github.com/dangulos/OpenMPI_Practice.git,,0.0,False,ea02570240a948dcc3c495fdfb9f6e7ee85cb211,,
5008.0,benzjakk--ComArch_Final,C,0.0,git,https://github.com/benzjakk/ComArch_Final.git,,0.0,False,58c2ccd0459cee776e343ded5268903d6c3660e5,,
5004.0,BiliouriV--OpenMP-Threads_wish_you_a_Merry_Christmas,C,0.0,git,https://github.com/BiliouriV/OpenMP-Threads_wish_you_a_Merry_Christmas.git,,0.0,False,c4a995c498ed4bfc26a4abc348d494b2cf2f7521,,
4999.0,itar3--C_OpenMPI_POSIX,C,0.0,git,https://github.com/itar3/C_OpenMPI_POSIX.git,,0.0,False,cb10e0b76cabe3509723f32f3f0fd1da1798168a,,
4971.0,a2gs--OMP_studies,C,0.0,git,https://github.com/a2gs/OMP_studies.git,default_make.sh,0.0,False,953ac8c04afab42d724988de16b70eb7dcf397a7,,2020-12-24 01:28:04+00:00
4940.0,Huy-Dinh--mandelbrot_openmp,C++,0.0,git,https://github.com/Huy-Dinh/mandelbrot_openmp.git,default_make.sh,0.0,False,296afa9eadfa4a15719dd60e28fe74ae03a4f708,,2021-01-02 15:56:19+00:00
8164.0,lmarzen--heated_plate_openmp,C,0.0,git,https://github.com/lmarzen/heated_plate_openmp.git,,0.0,False,d3be0a94f81125a0dcc92be80c7d9088eb0e2d0a,,
4932.0,EdgarOlv--Sistemas-Distribuidos-OpenMP,C,0.0,git,https://github.com/EdgarOlv/Sistemas-Distribuidos-OpenMP.git,,0.0,False,e9c66e3c0a3108fa58ab2f96d66eef7dc43e034d,,
4928.0,faxmishok--Parallel-Prog-OpenMP-pw2,C,0.0,git,https://github.com/faxmishok/Parallel-Prog-OpenMP-pw2.git,,0.0,False,aa841ff962ee6adc0089271f08da639a6d1208fa,,
4924.0,Prashant-JT--OpenMP-Examples,C++,0.0,git,https://github.com/Prashant-JT/OpenMP-Examples.git,,0.0,False,c437dd4067aecc15c27b4b9700b3ccca2ad2a2d4,,
4944.0,patricia-souza--JogoVidaOpenMP,C,0.0,git,https://github.com/patricia-souza/JogoVidaOpenMP.git,,0.0,False,9a32b5752eefed35018a27ffcad0deb20e79ba07,,
4964.0,dimkael--ParallelizationOfMatrixComputations,C++,0.0,git,https://github.com/dimkael/ParallelizationOfMatrixComputations.git,,0.0,False,c0128bdee14087ceb40055f56d724e119cd0eb21,,
4960.0,IzaanSohail1999--OpenMP-ShortestPathProblem-BellmanFord,C++,0.0,git,https://github.com/IzaanSohail1999/OpenMP-ShortestPathProblem-BellmanFord.git,,0.0,False,d5aa7faac129ead43a9311aed7b7366694ee310f,,
4956.0,amckenna41--OMP-MPI-parallel-programming,C,0.0,git,https://github.com/amckenna41/OMP-MPI-parallel-programming.git,,0.0,False,938f10c3cefaf7eab6e7c6a59df95a2fdd7d622b,,
4951.0,lyukov--parallel_wave_equation,C++,0.0,git,https://github.com/lyukov/parallel_wave_equation.git,,1.0,False,be79233aa344ac984c3c2ebf74e93c0273a02abd,,
5019.0,Altadsa--Parallel-Searching-using-OpenMP-and-MPI,C,0.0,git,https://github.com/Altadsa/Parallel-Searching-using-OpenMP-and-MPI.git,,0.0,False,7231af7579e55aee737b71463e7ff1bff7ae0b0d,,
5085.0,denis-beurive--openmp,C,0.0,git,https://github.com/denis-beurive/openmp.git,default_cmake.sh,1.0,,67b884d024da87c33c7cbb85911ee59cd094c99b,,2020-11-20 09:08:58+00:00
5081.0,lrubens--DiningPhilosopher,C++,0.0,git,https://github.com/lrubens/DiningPhilosopher.git,default_make.sh,0.0,False,5d2ccde964f1665463c3db12ea02d624c957105b,,2020-11-22 22:56:01+00:00
5077.0,Katherine506--C-OpenMP-MPI,C,0.0,git,https://github.com/Katherine506/C-OpenMP-MPI.git,,0.0,False,1f0305533ec4b3074a19fc658248fb8b3180022e,,
5072.0,liraRaphael--pad-openmp,C,0.0,git,https://github.com/liraRaphael/pad-openmp.git,,0.0,False,195ada9123599b6157f364e8e7c4d378fae68712,,
5068.0,aleri-a--Parallel-Systems--Frequency-calculation-of-characters-,C++,0.0,git,https://github.com/aleri-a/Parallel-Systems--Frequency-calculation-of-characters-.git,,0.0,False,3b7a9a188425c095c751dc1b860a3b7b78f23452,,
5088.0,ggeraldina--parallel_programming,C++,0.0,git,https://github.com/ggeraldina/parallel_programming.git,,0.0,False,9a7c9b945024c8b83f17ee7bcaeb6dbb707ab719,,
8130.0,HariAbram--Conjugate_Gradient,C++,0.0,git,https://github.com/HariAbram/Conjugate_Gradient.git,,1.0,False,f11c2e70cc77fbba5c37099744bba0bf9e2083a3,,
5100.0,blessedchitamba--biomolecular_simulation,C,0.0,git,https://github.com/blessedchitamba/biomolecular_simulation.git,,0.0,False,c36aa755bca5e0a4b40b1b6fd7cd80b6daa54af3,,
8132.0,IdoS88--ParallelProject2,C,0.0,git,https://github.com/IdoS88/ParallelProject2.git,,0.0,False,f90fcd9cfaf2a23f2c57ab79d29b87ba48c5413c,,
8135.0,ravindulasantha--OpenMP-HPC,C++,0.0,git,https://github.com/ravindulasantha/OpenMP-HPC.git,,0.0,False,29cceef8d051a1f2c63bd8428954211f7e0f2abc,,
8136.0,Rashmika2590--OpenMP-Parallel-Programing,C++,0.0,git,https://github.com/Rashmika2590/OpenMP-Parallel-Programing.git,,0.0,False,29bff1712e35c143155b26fe78de6c5918c66a54,,
5061.0,triod315--PDC,C++,0.0,git,https://github.com/triod315/PDC.git,,0.0,False,355c7ca195d696d2506240f6185160673089eab4,,
5034.0,ZeyuuOne--Lab_1_OpenMP,C++,0.0,git,https://github.com/ZeyuuOne/Lab_1_OpenMP.git,,0.0,False,3df168caefc826e1989a207c214ba75fdad7fd06,,
8145.0,StefanStefanov741--smallpt,C++,0.0,git,https://github.com/StefanStefanov741/smallpt.git,,0.0,False,07653057552c60b447b3aadd8c90a281a5fbf5d3,,
5028.0,rafaeldcampbell--GaussianEliminationParallel,C,0.0,git,https://github.com/rafaeldcampbell/GaussianEliminationParallel.git,,0.0,False,f5648b3750ab4175c76280dab50817186c14d2e5,,
8147.0,raissa-coelho--Checkers,C,0.0,git,https://github.com/raissa-coelho/Checkers.git,,0.0,False,9d789fad097436401cedcb1b6951a02e11a5357e,,
8152.0,TrinhXuanTam--weighted-coloring-problem,C++,0.0,git,https://github.com/TrinhXuanTam/weighted-coloring-problem.git,,0.0,False,a0083f5d1ffd0f09fb86041f9b4ee0d23cefa36d,,
5050.0,eoshtanko--OpenMP,C++,0.0,git,https://github.com/eoshtanko/OpenMP.git,,0.0,False,3d712609bdfb3d7e587bf66118cc8ad1a955ccc8,,
5055.0,arabianprinceee--OpenMP_cpp_HW,C++,0.0,git,https://github.com/arabianprinceee/OpenMP_cpp_HW.git,,0.0,False,31afd89b00a2f4c6eabab97cb48f6dd1344f6f50,,
5051.0,mcheikh1991--P5_C_CFD-MPI-OpenMP,C,0.0,git,https://github.com/mcheikh1991/P5_C_CFD-MPI-OpenMP.git,,0.0,False,2353291fc8d6f66d997831b1e4b5e15c2e822734,,
5047.0,PetrosPapandonopoulos--OpenMP-Strictly-Diagonally-Dominant,C,0.0,git,https://github.com/PetrosPapandonopoulos/OpenMP-Strictly-Diagonally-Dominant.git,,0.0,False,038b1e127e3c9eb6eb886758b1d9480f0c874642,,
5044.0,gh0stadian--OPENMP-OPENMPI,C++,0.0,git,https://github.com/gh0stadian/OPENMP-OPENMPI.git,,1.0,False,ab528e9c78e07a981ac29258e89422bf55e44846,,
4919.0,jiayi42--hybrid_mpi_openmp,C++,0.0,git,https://github.com/jiayi42/hybrid_mpi_openmp.git,,0.0,False,c18f686466030776d1e6347509904e220d4598df,,
4794.0,apallath--GameOfLife,C++,0.0,git,https://github.com/apallath/GameOfLife.git,default_cmake.sh,1.0,,a7ecabf45fdb6357cfbe886ea9ed1613e5485f18,,2021-02-19 00:32:33+00:00
4789.0,taniya-kapoor--OpenMP,C,0.0,git,https://github.com/taniya-kapoor/OpenMP.git,,0.0,False,376982ff0e9fe7ba395b561a404c95734cb3f3d9,,
4784.0,mabutko--CosmicDarkMatter,C,0.0,git,https://github.com/mabutko/CosmicDarkMatter.git,,0.0,False,b865cadb2b1854d7f0a3285592024e09f9fb3dae,,
8199.0,RuasGAR--COC472-OpenMP,C,0.0,git,https://github.com/RuasGAR/COC472-OpenMP.git,,0.0,False,1aa860ed7ef934904f6ee57eedfdd2a3161d809b,,
4776.0,Robert-M-Hughes--High-Preformance-Computing,C,0.0,git,https://github.com/Robert-M-Hughes/High-Preformance-Computing.git,default_make.sh,0.0,False,2d01577062c5d28931c8ff12aaeaede9edaedd3f,,2021-02-26 04:58:52+00:00
4828.0,anitakowalczyk--parallel-programming-Hybrid-OpenMP-MPI,C++,0.0,git,https://github.com/anitakowalczyk/parallel-programming-Hybrid-OpenMP-MPI.git,,0.0,False,b2585f48045545aebe30197e755e2d59f8b0ea22,,
8191.0,WildBitangent--VGE,C++,0.0,git,https://github.com/WildBitangent/VGE.git,,1.0,False,cfc9ba65ee10bfa4947ca1b197941f4a7bd03132,,
4820.0,OcraM17--ParallelMatrix,C,0.0,git,https://github.com/OcraM17/ParallelMatrix.git,,0.0,False,d14291291bfe9c927d13bd9dbf293c9e5734a3fa,,
4815.0,Faizan-Mushtaq--PADP-Lab-Programs,C,0.0,git,https://github.com/Faizan-Mushtaq/PADP-Lab-Programs.git,,0.0,False,303b22b0475262d318a0087e1f3cc37b01f81cc6,,
4810.0,vSterlin--OpenMP-Fibonacci,C,0.0,git,https://github.com/vSterlin/OpenMP-Fibonacci.git,,0.0,False,0d88c1d5d5aa65c46b876581f7d0b9ccc085172e,,
4804.0,shashank68--OpenMP_Programs,C,0.0,git,https://github.com/shashank68/OpenMP_Programs.git,,0.0,False,650e1849459f4f8fe0e38ca96b9b53438b0bd796,,
4771.0,gh0st17--Kaprekar-numbers,C++,0.0,git,https://github.com/gh0st17/Kaprekar-numbers.git,,0.0,False,2b6ba420c152603823a651eed53075d59213f610,,
8205.0,FELIN0366--Parallell_String_Sorting,C++,0.0,git,https://github.com/FELIN0366/Parallell_String_Sorting.git,,0.0,False,3aabe60687bcc5b46d3a3cc96ce25f7c8e262c05,,
4737.0,Trafle--openMP,C++,0.0,git,https://github.com/Trafle/openMP.git,,0.0,False,307c52eddf20221165cf1bc717b0dea76c068078,,
8207.0,Mohammadloni--Parallel-DSP-Implementation-Using-OpenMP,C++,0.0,git,https://github.com/Mohammadloni/Parallel-DSP-Implementation-Using-OpenMP.git,,0.0,False,5c3b0d603163aae6571fdaf6a40368aea066ce19,,
4728.0,mretolaza--MonteCarlo,C,0.0,git,https://github.com/mretolaza/MonteCarlo.git,,0.0,False,88a750f001e1cabe57040dfef0cc80ef604c5234,,
4743.0,FabianoRF--trab-openmp,C,0.0,git,https://github.com/FabianoRF/trab-openmp.git,,0.0,False,42bafb79855b89a1e9671df009ad4a806c7bedc4,,
4770.0,gigug--HPC,C,0.0,git,https://github.com/gigug/HPC.git,,0.0,False,ed26b4a5c9830b611d760c282f83551788e6ff59,,
4766.0,rustamlatypov--cpu-matrix-multiplication,C++,0.0,git,https://github.com/rustamlatypov/cpu-matrix-multiplication.git,,0.0,False,9297a48b6e6f9e0c32a0ac2e9bc029e498fd3780,,
4759.0,rodneyaboue--openMp,C,0.0,git,https://github.com/rodneyaboue/openMp.git,,0.0,False,928c72d2be9f8e77e93a78518419e2cc75f372b0,,
4756.0,waterfogSW--Quick_sort_OMP,C++,0.0,git,https://github.com/waterfogSW/Quick_sort_OMP.git,,0.0,False,a391579a01290a9e20a7105a558be114d85e0821,,
4751.0,sekelle--parallel-scan,C++,0.0,git,https://github.com/sekelle/parallel-scan.git,,0.0,False,698f3dab2c8422b1dca97f456a43a67fece1f5f0,,
4918.0,farukceylandag--OpenMPMatrixMultipy,C++,0.0,git,https://github.com/farukceylandag/OpenMPMatrixMultipy.git,,0.0,False,112d4d43e2fc88a398e8546edeaeba6e8db3890e,,
4889.0,ZeyuuOne--Lab_2_OpenMP,C++,0.0,git,https://github.com/ZeyuuOne/Lab_2_OpenMP.git,,0.0,False,fd45725caed7a73ff778e8c371f4c0ee12dc6acd,,
4885.0,dgpmakes--photo-filters,C++,0.0,git,https://github.com/dgpmakes/photo-filters.git,,0.0,False,d0550929b696b8823fe75fd7cbc1dafb84f34baf,,
4881.0,ZeyuuOne--Lab_3_OpenMP,C++,0.0,git,https://github.com/ZeyuuOne/Lab_3_OpenMP.git,,0.0,False,443d1992f311bd9cb722670f1681a4fec2a0addd,,
4878.0,Faisal-AlDhuwayhi--Parallel-Matrix-Multiplication,C,0.0,git,https://github.com/Faisal-AlDhuwayhi/Parallel-Matrix-Multiplication.git,,0.0,False,94597301ef2f8cd49746fd1ea92e6692c6ad8090,,
4874.0,l171080148--Subproyecto-OPENMP,C,0.0,git,https://github.com/l171080148/Subproyecto-OPENMP.git,,0.0,False,2c526e11b7dc301cae7b53a66f9421a63cb2f25e,,
4894.0,Hunteerq--ML-algorithms-openmp,C++,0.0,git,https://github.com/Hunteerq/ML-algorithms-openmp.git,,0.0,False,36d88aea5026fa0ae44f2b8ba0df188ea442f03c,,
4914.0,cbalkig--Parallel-Processing-Examples,C,0.0,git,https://github.com/cbalkig/Parallel-Processing-Examples.git,,1.0,False,9fe64dbd5a726228e87d18dfe8d64b09e9de55ee,,
8171.0,iliazhav--tree_openmp,C++,0.0,git,https://github.com/iliazhav/tree_openmp.git,,0.0,False,a62fa7911b92574a248e0b75b0d1c91a18c781c8,,
4905.0,fatihazir--OpenMP-Maximum-Value-Of-2d-Matris,C,0.0,git,https://github.com/fatihazir/OpenMP-Maximum-Value-Of-2d-Matris.git,,0.0,False,d0b1058a9c4698feb58c1906c0a67ea1473297cc,,
4902.0,gandhi56-zz--openmp_stuff,C++,0.0,git,https://github.com/gandhi56-zz/openmp_stuff.git,default_cmake.sh,1.0,,c7e41c6840acb2ae4ee9c4ce3867d07ec2e3dfd3,,2021-01-14 06:15:01+00:00
4872.0,n-bykoff--MPI-MIPT-COURSE,C,0.0,git,https://github.com/n-bykoff/MPI-MIPT-COURSE.git,,0.0,False,775c79cd374316b4bc6432a7752742dbca023d27,,
4848.0,pg443--Gaussian-Elimination-OpenMP,C,0.0,git,https://github.com/pg443/Gaussian-Elimination-OpenMP.git,,0.0,False,1bd6aff681e7f5d7cc4c53816d6ceb8d89de0038,,
4844.0,delafuente28--Parallel-Computing-Contrast-Enhancement,C++,0.0,git,https://github.com/delafuente28/Parallel-Computing-Contrast-Enhancement.git,,0.0,False,01165789781b7201ecd9a0fccf346948d1361c72,,
4840.0,r0-8y--openmp,C++,0.0,git,https://github.com/r0-8y/openmp.git,,0.0,False,73b72dc3e548be7064692beb69e412b77d459467,,
8188.0,mubinawaheed--PP_OpenMP_CEP,C++,0.0,git,https://github.com/mubinawaheed/PP_OpenMP_CEP.git,,0.0,False,4ff05baf6460e90089eab7b9e5c6cbdd7f9c5507,,
4833.0,apollo12221--AG-OMP,C,0.0,git,https://github.com/apollo12221/AG-OMP.git,,0.0,False,2230922293c38f8a5e129c61e21a67539b08372b,,
4849.0,jmoss40--parallel-final-project,C,0.0,git,https://github.com/jmoss40/parallel-final-project.git,,0.0,False,636a934f9384f011734856cecb534ef54771b15b,,
4867.0,mb98-unifi--K-Means_OpenMP,C++,0.0,git,https://github.com/mb98-unifi/K-Means_OpenMP.git,,0.0,False,4bc45d6a7533490182371466dc35ad6d4ffadebc,,
4863.0,YinLiu-91--openmpi,C++,0.0,git,https://github.com/YinLiu-91/openmpi.git,,0.0,False,29b4cfb66aa4b530880496a0b2604ae7cc9440b7,,
4851.0,angelos-sp--pad_auth_2,C,0.0,git,https://github.com/angelos-sp/pad_auth_2.git,,0.0,False,e64d4b4afe0a87a8cc24fa43bc90c150e1cfad70,,
8183.0,AryanP281--Distributed-And-Parallel-Computing-Projects,C,0.0,git,https://github.com/AryanP281/Distributed-And-Parallel-Computing-Projects.git,,0.0,False,0b624aba85027b370b8d4f6b681653782a7d5635,,
4852.0,magicChos--openmp_code,C++,0.0,git,https://github.com/magicChos/openmp_code.git,,0.0,False,9b6dfdca1811c280e3674fe50747fff772d19555,,
5387.0,jhsu32--OpenMP,C++,0.0,git,https://github.com/jhsu32/OpenMP.git,,0.0,False,0f65f97af56ef7b64284664f6e4953916d2e977a,,
5380.0,lexieli1228--Openmp-Implementation-of-Radius-Stepping-Algorithm,C++,0.0,git,https://github.com/lexieli1228/Openmp-Implementation-of-Radius-Stepping-Algorithm.git,,0.0,False,a05138c00f7308acbe008fb461dadda2fe50a77f,,
5375.0,konfou--openmp-course-sols,C,0.0,git,https://github.com/konfou/openmp-course-sols.git,,0.0,False,ef506e797cc355e6566aa1bf3a2fc01fdf7afcc5,,
5371.0,smohammadhejazi--genann-openmp,C,0.0,git,https://github.com/smohammadhejazi/genann-openmp.git,,0.0,False,2710ef814c60d938aa2a61fbc8199d0e4325f3fa,,
5366.0,cecibrus--tp-tsp-ga,C++,0.0,git,https://github.com/cecibrus/tp-tsp-ga.git,,0.0,False,2162cd3fc0e5243950509354e8e07ff2da34a456,,
5386.0,romansamgin--OpenMP-test,C++,0.0,git,https://github.com/romansamgin/OpenMP-test.git,,0.0,False,a314ae70b7e108bfa77cd3186f3d0c109731858b,,
5410.0,bhaskariitm--OpenMP-codes,C,0.0,git,https://github.com/bhaskariitm/OpenMP-codes.git,,0.0,False,1ea65de683fe448b79e79b3ecb09e3846019f200,,
5405.0,alibozkurtkyrd--OpenMP-C,C,0.0,git,https://github.com/alibozkurtkyrd/OpenMP-C.git,,0.0,False,675d0146ea87d60a98694dac951edac8d8dea7b5,,
5401.0,Shabtai204--Parallel-implementation-of-Sequence-Alignment,C,0.0,git,https://github.com/Shabtai204/Parallel-implementation-of-Sequence-Alignment.git,,0.0,False,d3d1b5c1dbf44fc0ab4bd4cc141c8e6d23a4735a,,
5397.0,igor-sumin--GraduateWork,C++,0.0,git,https://github.com/igor-sumin/GraduateWork.git,default_cmake.sh,1.0,,a6e632f1c89ebe8f15857140973953d4ab45554a,,2022-06-13 09:15:19+00:00
5393.0,angegonzalez--ParallelComputing,,0.0,git,https://github.com/angegonzalez/ParallelComputing.git,default_make.sh,0.0,False,540931f2152491073b8e1dcb5ff7f166353fbfd2,,
5360.0,Riceboy112--OpenMP-Implementations,C++,0.0,git,https://github.com/Riceboy112/OpenMP-Implementations.git,,0.0,False,86e34a977b45f0b9c3ec9d8f3441f446dc58aae1,,
5331.0,dupradosantini--MPI-Jacobi,C,0.0,git,https://github.com/dupradosantini/MPI-Jacobi.git,,0.0,False,8cdca646db011d1328509703ceebd04cba5b6b78,,
5327.0,ypatiapd--Parallel-and-distributed-systems,C,0.0,git,https://github.com/ypatiapd/Parallel-and-distributed-systems.git,,0.0,False,7069b91f12b215b861636d0dfe6e2bb117218f2e,,
5321.0,kawaiibilli--mandelbrot_renderer,C,0.0,git,https://github.com/kawaiibilli/mandelbrot_renderer.git,,0.0,False,7982aa9b4d91f4f0a848d4b838968e3e3326e78d,,
5316.0,Abelo9996--Particle_Simulation,C++,0.0,git,https://github.com/Abelo9996/Particle_Simulation.git,,0.0,False,2713fcf3f3b7eae2140177f97256c0cd7ca08e9f,,
5312.0,keyurchd11--Optimizing-Bioinformatics,C++,0.0,git,https://github.com/keyurchd11/Optimizing-Bioinformatics.git,,0.0,False,06eb151522b321edfe9420c39aa214cda99029b2,,
5335.0,alb3rtov--ARCO,C,0.0,git,https://github.com/alb3rtov/ARCO.git,,0.0,False,fd83dbf94a0b55d8652cf6f35415322d3281bf10,,
5353.0,aleen357--Parallel-Gomoku,C++,0.0,git,https://github.com/aleen357/Parallel-Gomoku.git,,0.0,False,67d2b9fabf5341668fc72234abe3591fe7ec0eaf,,
5349.0,IsaacLehman--Game-of-Life,C,0.0,git,https://github.com/IsaacLehman/Game-of-Life.git,,0.0,False,9c25422c5ff11f36401a5a899a630651a3351b54,,
5345.0,j4c0b094--MonteCarloSim_Parallelism,C++,0.0,git,https://github.com/j4c0b094/MonteCarloSim_Parallelism.git,,0.0,False,deebbb5888e44d2486728cc959e3b859c026ddc2,,
5340.0,dupradosantini--jacobi-MPI-OpenMP,C,0.0,git,https://github.com/dupradosantini/jacobi-MPI-OpenMP.git,,0.0,False,d1a44b255cdff71dfa0a17de6a44b22f2d3e7619,,
5411.0,matheusvnm--poseidon,C,0.0,git,https://github.com/matheusvnm/poseidon.git,,0.0,False,c7d0870cadbf5f9b15d63769d185b5b2fdf79a60,,
5489.0,mateus-fecassio--_UFPR_-ParalelaKnapsack,C,0.0,git,https://github.com/mateus-fecassio/_UFPR_-ParalelaKnapsack.git,,0.0,False,f30f0b65e568111b5131e285d14e9bb0576bb60d,,
8070.0,Gaurav11ME--OpenMP_Parallel_Programming,C++,0.0,git,https://github.com/Gaurav11ME/OpenMP_Parallel_Programming.git,,0.0,False,184d7befa4df096684c01734f6fe7fb5b58cecce,,
5480.0,bealj2503--OpenMP-Maze,C,0.0,git,https://github.com/bealj2503/OpenMP-Maze.git,default_make.sh,0.0,False,b0362e40f2681020e42eb3d2509fe215aa4946de,,2022-05-28 07:28:16+00:00
8073.0,Asc13--Bucket-Sort,C,0.0,git,https://github.com/Asc13/Bucket-Sort.git,,0.0,False,7a38d4a36ef9a9114de85a9f06da26bb68c77b59,,
8074.0,jfdev001--parallel-nbody,C,0.0,git,https://github.com/jfdev001/parallel-nbody.git,,0.0,False,acf2f5721d0a4482a6be67cea64930ae437499d2,,
5492.0,NdElb99--prog-para-sous-tableau-maximal,C,0.0,git,https://github.com/NdElb99/prog-para-sous-tableau-maximal.git,,0.0,False,c9977a30ce42ecc455ef46aeab7fc2c318c1fddd,,
5514.0,VladislavSmekhnov--OpenMP_tasks,C++,0.0,git,https://github.com/VladislavSmekhnov/OpenMP_tasks.git,,0.0,False,106c40a414231293ddd588aa7b08494c4b59bbab,,
5509.0,macluczak--Primes-OpenMP,C++,0.0,git,https://github.com/macluczak/Primes-OpenMP.git,,0.0,False,17ccd72139b772e0d9f734a470df647145f238e9,,
5505.0,Somu1234--OpenMP,C++,0.0,git,https://github.com/Somu1234/OpenMP.git,,0.0,False,7083de65a0c63904097bbd2dce0960e85adb6949,,
5500.0,SantonioTheFirst--MandelbrotSetCPP,C++,0.0,git,https://github.com/SantonioTheFirst/MandelbrotSetCPP.git,default_make.sh,0.0,False,dedf40cd1fc534cc7691bf3e653dec1e7ef48ff6,,2022-05-21 22:50:46+00:00
5495.0,mahikgot--openmp_practice,C,0.0,git,https://github.com/mahikgot/openmp_practice.git,,0.0,False,d9c9483a5e9aad43559ac699ba6cf0647e19909e,,
8079.0,athenalobo--pp_lab_openmp,C,0.0,git,https://github.com/athenalobo/pp_lab_openmp.git,,0.0,False,b4d9ef108c862c5b2be59d549ca58849c36ffb5e,,
5434.0,argha072k--openmp2,C,0.0,git,https://github.com/argha072k/openmp2.git,,0.0,False,0cb00017502e409077aa237b1b078135c06fd2ca,,
5429.0,gustkust--Primes-OpenMP,C++,0.0,git,https://github.com/gustkust/Primes-OpenMP.git,,0.0,False,553e14db49ab3c3acbfadd025fb29867a92ba387,,
5424.0,lgcantarelli--mandelrator,C,0.0,git,https://github.com/lgcantarelli/mandelrator.git,,0.0,False,4e6b8f7aeb8812039664139379e75edcc310baa3,,
5420.0,jtramm--omp_target_issues,C++,0.0,git,https://github.com/jtramm/omp_target_issues.git,,0.0,False,2989fe4104ce9f4280c715fe0287e9cbae5e9fdd,,
5416.0,anthony-kostalvazquez--OpenMP_Parallel_Code_Learning,C,0.0,git,https://github.com/anthony-kostalvazquez/OpenMP_Parallel_Code_Learning.git,,0.0,False,50d8bc30091a1510b943a7d09bab0eb76a568635,,
5451.0,Xerewulf--Paralel_Programing,C,0.0,git,https://github.com/Xerewulf/Paralel_Programing.git,,0.0,False,ed3244004b91cd3b8a49fb8cddaa9e02eb16a2a7,,
5458.0,chang-yu-yun--openmp,C,0.0,git,https://github.com/chang-yu-yun/openmp.git,,0.0,False,8bb9923b187e820ade6d3f70d224d778f0e37cb5,,
5452.0,DanielSepeda--RegressionPlusPlus,C++,0.0,git,https://github.com/DanielSepeda/RegressionPlusPlus.git,,0.0,False,a6c0add1cf52eb891e02dba94ed629039e85f48e,,
5448.0,sotheanithsok--CECS-574-Collection,C++,0.0,git,https://github.com/sotheanithsok/CECS-574-Collection.git,,0.0,False,5721ea9e38b6aa2bb440b05e15e07f471d97a048,,
5444.0,Qishna--nsu-supercomputing-2022,C++,0.0,git,https://github.com/Qishna/nsu-supercomputing-2022.git,,0.0,False,fe4cdefa946f4e1247803cf147b2de73c06626a2,,
5309.0,MarwanaMostafa--Parallel-Processing_K-means-Clustering_OpenMp,C,0.0,git,https://github.com/MarwanaMostafa/Parallel-Processing_K-means-Clustering_OpenMp.git,,0.0,False,9a4bba97d22605b5358644ce7e9d0cc09f9a51e1,,
5180.0,Juliakas--ParallelProg,C++,0.0,git,https://github.com/Juliakas/ParallelProg.git,,0.0,False,caf8abe24f4e45d63ae8845154a8c8d8fad397d1,,
5171.0,AleiynikovPavel--OpenMPLab12,C++,0.0,git,https://github.com/AleiynikovPavel/OpenMPLab12.git,,0.0,False,ff9d44e3bd1e5630e03ee98e23d3d5ef7697424c,,
8118.0,Muhammadaffan05--Apriori-algorithm-for-finding-frequent-itemsets,C++,0.0,git,https://github.com/Muhammadaffan05/Apriori-algorithm-for-finding-frequent-itemsets.git,,0.0,False,b975047a10bc29f18aab251b2d1e91df2e1d99a5,,
5163.0,Nanyuu--Matrix-multiplication-OpenMP,C++,0.0,git,https://github.com/Nanyuu/Matrix-multiplication-OpenMP.git,,0.0,False,78375d9222ae978b062b15560bfe9b465f5154bd,,
5159.0,ManuelCMS--HW-2.1,C,0.0,git,https://github.com/ManuelCMS/HW-2.1.git,,0.0,False,2b5e4db84cb08e6ac9c00ac4d4e211faa8ced20d,,
5306.0,FlaWww65535--Parallel_lab-4_OpenMP,C++,0.0,git,https://github.com/FlaWww65535/Parallel_lab-4_OpenMP.git,,0.0,False,b1c913dddb54ab88ac4e81bac273a815b1978f1e,,
5205.0,Dani1900--Homee,C,0.0,git,https://github.com/Dani1900/Homee.git,,0.0,False,6149c7a02eec910c797571bdf8f62b7b0351ffa4,,
5201.0,asafsuryano--Parallel-Sequence-alignment,C++,0.0,git,https://github.com/asafsuryano/Parallel-Sequence-alignment.git,,0.0,False,1434629ce753e2854f0ce4c4ca6758bc59c83571,,
5197.0,YujiSeto--Open-MP,C++,0.0,git,https://github.com/YujiSeto/Open-MP.git,,0.0,False,c37fbf3d22c68078f7c107590540038c9d871587,,
5192.0,DaveR27--Game-of-Life,C++,0.0,git,https://github.com/DaveR27/Game-of-Life.git,,0.0,False,9ef764cf15b4707bd4b808b3e183d11782db0967,,
5187.0,AleiynikovPavel--OpenMPLab7,C++,0.0,git,https://github.com/AleiynikovPavel/OpenMPLab7.git,default_cmake.sh,1.0,,e92c8b6986e9e19c97be749b315c23833f237dca,,2020-10-24 07:05:39+00:00
5154.0,thanoskoutr--OpenMP-Tutorial,C,0.0,git,https://github.com/thanoskoutr/OpenMP-Tutorial.git,default_make.sh,0.0,False,c8168e3974c2116b4c09eb611299976a9f105731,,2020-10-30 12:45:42+00:00
8122.0,keonhoroh--OpenMP-parallel-programming,C,0.0,git,https://github.com/keonhoroh/OpenMP-parallel-programming.git,,0.0,False,287281c1c7be80fd7826c81aed907c1748d86271,,
5120.0,joaocassianox7x--Parallel_Integral,C++,0.0,git,https://github.com/joaocassianox7x/Parallel_Integral.git,,0.0,False,79a8292592ed212fc396d0db2bc9849b57c0c494,,
5117.0,relytyler--OpenMP-Code-Optimising,C,0.0,git,https://github.com/relytyler/OpenMP-Code-Optimising.git,,0.0,False,e961b9d3df53e80a3c258578a127fb34e2f6bcb7,,
8127.0,muathgithub--Parallel_Sub_Matrices_Identification,C,0.0,git,https://github.com/muathgithub/Parallel_Sub_Matrices_Identification.git,,0.0,False,7b4e871f9b8d0ce50eeb022d9aba7f760b258cfe,,
5128.0,nkmashaev--OpenMP_Lab1,C++,0.0,git,https://github.com/nkmashaev/OpenMP_Lab1.git,,0.0,False,30ee44a85faff8d586ce37cee9ade387306395bd,,
5153.0,walterss22--project4,C,0.0,git,https://github.com/walterss22/project4.git,,0.0,False,e285f057b64caee0f65489531de64b6da057fa99,,
5148.0,ashwinikumar2--Parallel-Merge-Sort-Parallel-Quick-Sort-and-Parallel-Radix-Sort-using-OpenMPI,C++,0.0,git,https://github.com/ashwinikumar2/Parallel-Merge-Sort-Parallel-Quick-Sort-and-Parallel-Radix-Sort-using-OpenMPI.git,,0.0,False,01066063dedaa4a60ac2773b0d98907f65e788e4,,
5142.0,cmbrandt--openmp-design-patterns,C++,0.0,git,https://github.com/cmbrandt/openmp-design-patterns.git,,0.0,False,6260592d06856722ae315338b844cff86e4bfc21,,
5138.0,PranjalKalbag--Mergesort-MPI-OMP-Hybrid,C,0.0,git,https://github.com/PranjalKalbag/Mergesort-MPI-OMP-Hybrid.git,,0.0,False,d66eb8cceb11094bf7a228dcd830768bc8f94d89,,
5133.0,nivnaory--Parallal-Histogram-,C,0.0,git,https://github.com/nivnaory/Parallal-Histogram-.git,,0.0,False,2f5af3cd67b92e965f827f68b68ce24a02b37074,,
5210.0,258SusanLiu--Simple-OpenMP-Experiment,C++,0.0,git,https://github.com/258SusanLiu/Simple-OpenMP-Experiment.git,default_make.sh,0.0,False,29e8a5bfafafceb38b5483dcb4ee6279b428d217,,2022-09-07 05:00:42+00:00
8095.0,1LittleLobster--Particle-Effects-simulation,C,0.0,git,https://github.com/1LittleLobster/Particle-Effects-simulation.git,,1.0,,9b57932673cf55609efd6234fe2ffca99cf70e9f,,
5275.0,Deeps-01--openMp,C++,0.0,git,https://github.com/Deeps-01/openMp.git,,0.0,False,882c35c25548491164252e49b694a8097b452e55,,
5271.0,paralelodev--openmp_examples_in_c,C,0.0,git,https://github.com/paralelodev/openmp_examples_in_c.git,,0.0,False,c460d665b9be691ba82d0cf925f6eb1378763dcf,,
5267.0,gabrielmazz--Fibonnaci-recursivo-paralelizado,C,0.0,git,https://github.com/gabrielmazz/Fibonnaci-recursivo-paralelizado.git,default_make.sh,0.0,False,faaea3151af80f1a42a0115cba0e725f0bdae48b,,2022-08-10 23:59:20+00:00
5260.0,PedroLucasMiguel--stencils-openmpi,C,0.0,git,https://github.com/PedroLucasMiguel/stencils-openmpi.git,,0.0,False,1fc3f96ef7a30a87758eee03887b2f7314fe2527,,
5297.0,rzambre--mpi-openmp-bench,C,0.0,git,https://github.com/rzambre/mpi-openmp-bench.git,,0.0,False,52972816b1f3d9fae05ece4b2285b84e7546b80e,,
5302.0,Ranaihab--Frequency-Histogram,C,0.0,git,https://github.com/Ranaihab/Frequency-Histogram.git,,0.0,False,71144e3cfefe0e01ee1a9bb4e0b156053e22ab0b,,
5298.0,HabibaAmr46--HistogramUsingMPIand-OpenMP,C,0.0,git,https://github.com/HabibaAmr46/HistogramUsingMPIand-OpenMP.git,,0.0,False,3817bb1fc75d1ae5afbf1f0a1fa9af1affec8ba6,,
5294.0,GoshaSerbin--ChessAI-with-OpenMP,C++,0.0,git,https://github.com/GoshaSerbin/ChessAI-with-OpenMP.git,,0.0,False,6e3b325a3ebcd17925783cdc8711e3ed8b0a83e4,,
5290.0,xianghao-wang--openmp-intel,C,0.0,git,https://github.com/xianghao-wang/openmp-intel.git,,0.0,False,37d3ab4a2346267947526d346dabe42c85bed685,,
5257.0,JJWrs--openmp,C,0.0,git,https://github.com/JJWrs/openmp.git,,0.0,False,43e98453350ee682c8e50b17bcbc48258aade389,,
8107.0,RuviniSursnika--OpenMP_gauss2d,C,0.0,git,https://github.com/RuviniSursnika/OpenMP_gauss2d.git,,0.0,False,c63b153707fe355cf73363ca0c9db6b8bfc4d686,,
5226.0,sukeshch--TSP_openmp,C++,0.0,git,https://github.com/sukeshch/TSP_openmp.git,,0.0,False,9eaa8e881543394885f167c6eb04fbe39ab5df23,,
8110.0,ManojKumar-02--Validating-Sudoku-Solution-using-OpenMP-and-Pthreads,C++,0.0,git,https://github.com/ManojKumar-02/Validating-Sudoku-Solution-using-OpenMP-and-Pthreads.git,,0.0,False,ee878a1569d78e43212fac53288b2873dda06450,,
5217.0,rising-entropy--Learn-OpenMP,C,0.0,git,https://github.com/rising-entropy/Learn-OpenMP.git,,0.0,False,f52322b951273de66fd5d6297e1a7a9ac317e9ef,,
5213.0,Dimaneug--OpenMP,C++,0.0,git,https://github.com/Dimaneug/OpenMP.git,,0.0,False,438b4c5b5fad0a4e74c18cf93f561caf42c691ce,,
8106.0,RuviniSursnika--OpenMP_jacobi2d,C,0.0,git,https://github.com/RuviniSursnika/OpenMP_jacobi2d.git,,0.0,False,587ca9dd92cb758975fe0e5ec1e43810ceb20820,,
8101.0,matardy--OpenMP,C,0.0,git,https://github.com/matardy/OpenMP.git,,0.0,False,a7070136d896df0304e6c82e21d382943cd4b3af,,
5246.0,mylightgarden--Parallel_Computing_OpenMP_CUDA_OpenCL,C,0.0,git,https://github.com/mylightgarden/Parallel_Computing_OpenMP_CUDA_OpenCL.git,,0.0,False,d7fe2e00c54178550d2246f615ef919dd08da8c8,,
8103.0,xariskarv--OpenMP-Experiments,C,0.0,git,https://github.com/xariskarv/OpenMP-Experiments.git,,0.0,False,347a0a78e4e7a138dfc4f2323ef386f3abf40255,,
5238.0,manas-bhardwaj--Parallelized-RSA-Algorithm,C++,0.0,git,https://github.com/manas-bhardwaj/Parallelized-RSA-Algorithm.git,,0.0,False,04f0ab7effa9c4b02f423413a8d9d501d8d3827e,,
5310.0,SurturTawers--OpenMP-ReverbDSP,C++,0.0,git,https://github.com/SurturTawers/OpenMP-ReverbDSP.git,,0.0,False,7fc6310d465299895a219418452af0298a3e1647,,
6995.0,almishra--omp_gpu_benchmarks,C++,0.0,git,https://github.com/almishra/omp_gpu_benchmarks.git,,0.0,False,442d8ada12eb387cf34fc504d0f44769c04b3dd8,,
6991.0,70Null07--OpenMP-Arrays-Sum,C++,0.0,git,https://github.com/70Null07/OpenMP-Arrays-Sum.git,,0.0,False,0161009c6826002d850183e8ea8ee58d3c696057,,
7710.0,vvilliam26--quicksort_parallel,C,0.0,git,https://github.com/vvilliam26/quicksort_parallel.git,,0.0,False,16edb81eab1edfb93590c20acb408be0df625d0e,,
6981.0,alex-unofficial--scc,C,0.0,git,https://github.com/alex-unofficial/scc.git,default_make.sh,0.0,False,199424ff7e433799aab15215569488bb6f92198b,,
6976.0,iNatashka99--Solve-System,C++,0.0,git,https://github.com/iNatashka99/Solve-System.git,,0.0,False,30a336a25946c557ba5f27e8729a2ef741216284,,
6971.0,ddkozyreva--openmp_hw,C++,0.0,git,https://github.com/ddkozyreva/openmp_hw.git,,0.0,False,8e9dff282f3f48955e432731e429ac897db6c296,,
7010.0,mohannadmaklad--CPP-OpenMP,C++,0.0,git,https://github.com/mohannadmaklad/CPP-OpenMP.git,,0.0,False,b52ceb922ee827cd573d19f31f7f22b0cad38d7e,,
7701.0,sanonesan--parallel_comp_labs,C++,0.0,git,https://github.com/sanonesan/parallel_comp_labs.git,,0.0,False,a3c807cc3acfe218e28b33f83da42daa72ffeed6,,
7012.0,jc-juarez--parallel_matrix_multiplication,C++,0.0,git,https://github.com/jc-juarez/parallel_matrix_multiplication.git,default_make.sh,0.0,False,69309aef32fab9706f12a171eb86f8b98c3b64b9,,2022-11-24 05:46:16+00:00
7008.0,ecendejas--omp-verifica,C,0.0,git,https://github.com/ecendejas/omp-verifica.git,,0.0,False,6869aa7ea662a37c1dedc0e690e98d706f41f6f4,,
7005.0,muniz034--open-mp,C,0.0,git,https://github.com/muniz034/open-mp.git,,0.0,False,1d08f009feee13cbb88dad22f4f63f7870b86bce,,
7000.0,SM-Inv-Tech--OpenMP,C++,0.0,git,https://github.com/SM-Inv-Tech/OpenMP.git,default_cmake.sh,1.0,,7f384fad1723a387b4d68a55ed9f95af37824cf4,,2022-11-28 00:54:48+00:00
6932.0,mpv88--hpc_2022_final_assignment,C,0.0,git,https://github.com/mpv88/hpc_2022_final_assignment.git,,0.0,False,00b7a7f79a3c0dc09e1dd8a752606300ab62cc22,,
7724.0,jyothssena--Parallel-Impl.-of-TSP,C++,0.0,git,https://github.com/jyothssena/Parallel-Impl.-of-TSP.git,,0.0,False,edaddfe90001c9c22b5b2a836593258da1b16db0,,
6934.0,zilmarij--Hybrid_MPI-OpenMP_based_Sorting,C++,0.0,git,https://github.com/zilmarij/Hybrid_MPI-OpenMP_based_Sorting.git,,0.0,False,3bb9803cf62f8f6acc112a3e42230f139fbdf366,,
6929.0,thenon-binaryguy--0-1-Knapsack-using-CUDA,C,0.0,git,https://github.com/thenon-binaryguy/0-1-Knapsack-using-CUDA.git,,0.0,False,2fc62621d3c833a88a790b8604efdc8eb3102477,,
6925.0,psicho--OpenMP,C++,0.0,git,https://github.com/psicho/OpenMP.git,,0.0,False,d8c99611e610f147e239f7d51cddd95d68df5d02,,
6920.0,VIkDema--MPI_labs,C,0.0,git,https://github.com/VIkDema/MPI_labs.git,,0.0,False,b1b2810afb73753eb6abb6e48cc3f42a34011001,,
6955.0,taharaees--Sequential-and-Parallel-Merge-sort,C++,0.0,git,https://github.com/taharaees/Sequential-and-Parallel-Merge-sort.git,,0.0,False,3a6f02263a3c2f7dc3dddd83600367b99b2fcf4a,,
7715.0,kolbacer--HPC-edu,C++,0.0,git,https://github.com/kolbacer/HPC-edu.git,,0.0,False,6c60dbeaac333ee63a7860dd3be05df8bcb6c299,,
6957.0,renett-t--parallel-programming,C++,0.0,git,https://github.com/renett-t/parallel-programming.git,,0.0,False,79981f35c42e8ddce79345ed070e19cdc893486e,,
6953.0,shree675--Parallel-Traversals-PC,C++,0.0,git,https://github.com/shree675/Parallel-Traversals-PC.git,default_make.sh,0.0,False,3860ebb1959bdb16952b7ce9c77144ea509852cd,,2022-12-13 12:27:17+00:00
7717.0,chaszm--MatrixMult_OpenMP,C,0.0,git,https://github.com/chaszm/MatrixMult_OpenMP.git,,0.0,False,1b6cc96423f0947d88407005f689429050081230,,
6946.0,pr0kuk--openmp,C++,0.0,git,https://github.com/pr0kuk/openmp.git,,0.0,False,648bf190aa7c9ee99dc23ef80c1f58ed62f8bee4,,
7080.0,dadoPuccio--N-Gram,C++,0.0,git,https://github.com/dadoPuccio/N-Gram.git,,1.0,False,771c89c7de65b504bcd51542e6ac914a05f19d30,,
7086.0,Daemon19--openmp_game_of_life,C++,0.0,git,https://github.com/Daemon19/openmp_game_of_life.git,,0.0,False,d8ce5a9e14cebac46a8760b1b45ad01195bbb53e,,
7082.0,Petrus97--sieve-of-eratosthenes,C,0.0,git,https://github.com/Petrus97/sieve-of-eratosthenes.git,,0.0,False,dcbbd28d8a53f04897f299cd718f8966a293814c,,
7078.0,DmitriBogdanov--OpenMP-LU-decomposition,C++,0.0,git,https://github.com/DmitriBogdanov/OpenMP-LU-decomposition.git,,0.0,False,65d006ae5df6eec174aee82f823f7ab40b3fc490,,
7074.0,effectiveAvacados--simple-parallel-programs,C,0.0,git,https://github.com/effectiveAvacados/simple-parallel-programs.git,,0.0,False,92bf83fd558f45bdeb60e4ef0e0aa040571e1485,,
7070.0,ColdmaterL--Parallel_Programing_using_OpenMP,C,0.0,git,https://github.com/ColdmaterL/Parallel_Programing_using_OpenMP.git,,0.0,False,3975b9bd1eeed553b131b1ba80b88afa32741a2f,,
7107.0,Santhosh2010-ramesh--OpenMP,C,0.0,git,https://github.com/Santhosh2010-ramesh/OpenMP.git,,0.0,False,71c762e760852ef75e6ff1ca30bc27face071303,,
7113.0,vamsi360--openmp-fftw-exercise,C++,0.0,git,https://github.com/vamsi360/openmp-fftw-exercise.git,,0.0,False,ea605a45e17a30d700af0f2281cf70fe83244caf,,
7678.0,KoushikAS--Parallel_Programming_with_OpenMP,C,0.0,git,https://github.com/KoushikAS/Parallel_Programming_with_OpenMP.git,,0.0,False,09e36d81d3d373ef6cf87a007c6f3bfa8aac8861,,
7105.0,jayteaftw--OpenMP-Matrix-Multi,C++,0.0,git,https://github.com/jayteaftw/OpenMP-Matrix-Multi.git,default_make.sh,0.0,False,e1dfba8f475638eba7867d3f111ff17157e4c033,,2022-10-19 06:41:50+00:00
7100.0,ChanAndKlee--OpenMP-Rank-Sort,C,0.0,git,https://github.com/ChanAndKlee/OpenMP-Rank-Sort.git,,0.0,False,d69c8e8d1a1b1d1281a7096228d47f205b357cba,,
7682.0,yeeshuen-c--parallel_programming,C,0.0,git,https://github.com/yeeshuen-c/parallel_programming.git,,0.0,False,b39b09acee93ec4ba1e3d1a7983feda302d69767,,
7031.0,Harry0559--Multithreaded-Parallel-Needleman-Wunsch,C++,0.0,git,https://github.com/Harry0559/Multithreaded-Parallel-Needleman-Wunsch.git,,0.0,False,5b5bf45010f43735e0db7814343584e6f03ffa7d,,
7695.0,Zhdanov-Dmitrii--openMP,C++,0.0,git,https://github.com/Zhdanov-Dmitrii/openMP.git,default_cmake.sh,1.0,,fe6198a06830a66c2737f5bf028468889cd90286,,2023-12-26 06:58:32+00:00
7033.0,BharathiTulabandu1--DBSCAN_openMP,C++,0.0,git,https://github.com/BharathiTulabandu1/DBSCAN_openMP.git,,0.0,False,22b80f48dc6601ad530a095e82365f4f267027a8,,
7029.0,OshkarVTec--Cloud-computing,C++,0.0,git,https://github.com/OshkarVTec/Cloud-computing.git,,0.0,False,a948bf437ac3fcdf4d7c288b55df6f52d616ec2f,,
7025.0,powcoder--C-MPI-OpenMP-CUDA-Game-Of-Life,C,0.0,git,https://github.com/powcoder/C-MPI-OpenMP-CUDA-Game-Of-Life.git,,0.0,False,5cca094858e7b5f6410c61924250caa68de4e921,,
7021.0,elefantaka--openmp_lagrange_interpolation,C++,0.0,git,https://github.com/elefantaka/openmp_lagrange_interpolation.git,default_make.sh,0.0,False,b57e7d57aaaebd5fc607cd786a52b6aa8ac0bb54,,2022-11-21 18:42:52+00:00
7690.0,Anas-Albaqeri--Parallelizing-the-nBody-problem-using-CUDA-Pthreads-openMP-and-MPI,C,0.0,git,https://github.com/Anas-Albaqeri/Parallelizing-the-nBody-problem-using-CUDA-Pthreads-openMP-and-MPI.git,,0.0,False,bb9b25b26044a4963f52d53a8636bf3b60948e96,,
7060.0,tharencandi--heat-transfer-simulation,C,0.0,git,https://github.com/tharencandi/heat-transfer-simulation.git,default_make.sh,0.0,False,485d0fe9bde3c51aca7a27c0b1e480745339fef7,,2022-11-07 19:28:44+00:00
7055.0,harsha-ys--openMP,C,0.0,git,https://github.com/harsha-ys/openMP.git,,0.0,False,dafd679921b1f592b36487407a21ce07d310d0b8,,
7052.0,ianbig--openmp-performance,C,0.0,git,https://github.com/ianbig/openmp-performance.git,,0.0,False,419a14bc8d93a0b32c1f6ac0e23a94cb8a7685bf,,
7048.0,youssefA9--Sum-of-Convergent-Series-MPI-OpenMP,C,0.0,git,https://github.com/youssefA9/Sum-of-Convergent-Series-MPI-OpenMP.git,,0.0,False,b9aa743b985048ceba6799b47dff44496fd2f0c2,,
7044.0,AlexRyzhickov--OpenMPvsMPI,C,0.0,git,https://github.com/AlexRyzhickov/OpenMPvsMPI.git,,0.0,False,6b2d60bc7c18a72ddf8b37381eb50481466d47e8,,
6782.0,BlooHoosker--ni-mcc-parallel-matrix-multiplication,C++,0.0,git,https://github.com/BlooHoosker/ni-mcc-parallel-matrix-multiplication.git,default_make.sh,1.0,,73509994abe697d2cd77e0c5d8991716d6c6db3a,,
6777.0,gattuzzo0--openMP,C++,0.0,git,https://github.com/gattuzzo0/openMP.git,,0.0,False,b6fca4a716babe882fbd952d274e365624c396e0,,
6773.0,Jacob-R-Little--ECE-506-Project-1-Parallel-Programming,C,0.0,git,https://github.com/Jacob-R-Little/ECE-506-Project-1-Parallel-Programming.git,,0.0,False,3924c36b51bd4f2f8d91baa3220db1d7ae212f7d,,
7754.0,tothetop430--Abad-s-openmp,C,0.0,git,https://github.com/tothetop430/Abad-s-openmp.git,,0.0,False,fc522f138f819fae62ffa95852de9759d94b4a7d,,
6764.0,ismaqg--MiniOmp,C,0.0,git,https://github.com/ismaqg/MiniOmp.git,,0.0,False,d7543694718ab5e2f85050eebe9ef2cb45714543,,
6791.0,thuyet-mt--Matrix-Multiplication-OpenMP,C,0.0,git,https://github.com/thuyet-mt/Matrix-Multiplication-OpenMP.git,,0.0,False,73321921fc7e61c53b4efefd01a542a31fff9acf,,
6812.0,touahriayacine--Parallelization-of-AES-encryption-with-Cuda-and-openMP,C,0.0,git,https://github.com/touahriayacine/Parallelization-of-AES-encryption-with-Cuda-and-openMP.git,,0.0,False,38d7b39108fc948860a8ca9dd0361e26caa75db0,,
6808.0,astijusar--Parallel-optimization,C++,0.0,git,https://github.com/astijusar/Parallel-optimization.git,,0.0,False,62cbd66dd7e24b03f36f7fbab51245951797bcd7,,
6793.0,notprg--Parallel-Tarjan,C,0.0,git,https://github.com/notprg/Parallel-Tarjan.git,,0.0,False,f28ac6606e76267019ba3e44e580062524ac5aab,,
6800.0,vallesda--SumArreglosParalelos,C++,0.0,git,https://github.com/vallesda/SumArreglosParalelos.git,,0.0,False,f7e72361a36bf9b3c642085f5dea9b41c74c8b48,,
7751.0,juliorodrigues07--parallel_primes,C,0.0,git,https://github.com/juliorodrigues07/parallel_primes.git,,0.0,False,5250cb8bb8fee8f363ca4b9ca2087c721488b9dc,,
6760.0,videturfortuna--OpenMP-galaxy,C,0.0,git,https://github.com/videturfortuna/OpenMP-galaxy.git,,0.0,False,b1c58844b841d3c050b34ba5e9d6b8f250b38ff1,,
6735.0,ginoventura--TPFINAL-PC,C,0.0,git,https://github.com/ginoventura/TPFINAL-PC.git,,0.0,False,7002e162935c46e876965f3b121268a5a90635fb,,
7770.0,kouzze--OpenMP,C++,0.0,git,https://github.com/kouzze/OpenMP.git,default_make.sh,0.0,False,757004046030b556a2a3687fe1cc5ecd2f430a76,,
6738.0,CHENNI-Nidhaleddine--AES_CTR_MODE_OPTIMIZATION_USING_OPENMP,C,0.0,git,https://github.com/CHENNI-Nidhaleddine/AES_CTR_MODE_OPTIMIZATION_USING_OPENMP.git,,0.0,False,abdb4e146b7a5f18486a2acc7288c4ad44dfa53f,,
6724.0,lineu96--progpar,C,0.0,git,https://github.com/lineu96/progpar.git,,0.0,False,a3dda7d6a033804336078a54397120126974c2c2,,
6720.0,yuichiis--tests-openmp,C,0.0,git,https://github.com/yuichiis/tests-openmp.git,,0.0,False,e4607f6061e52fa6f73c42c6055e242e23898a80,,
7759.0,mustafazaidi98--Gaussian-Elimination,C,0.0,git,https://github.com/mustafazaidi98/Gaussian-Elimination.git,,0.0,False,54bde088112a44c900e3906af240007a752ef0d7,,
6757.0,70Null07--OpenMP-TBB-Linear-Filtering,C++,0.0,git,https://github.com/70Null07/OpenMP-TBB-Linear-Filtering.git,,0.0,False,32bcaf99535dc617d3d7263fd5574cf63bb5ad83,,
6752.0,Lancelof2019--Wlg_OpenMP03,C++,0.0,git,https://github.com/Lancelof2019/Wlg_OpenMP03.git,,0.0,False,752ae110719560468d04bf29c2a00aeae44ecc6b,,
6740.0,yyy-jeson--openmp,C,0.0,git,https://github.com/yyy-jeson/openmp.git,,0.0,False,7ebe2551ea02a93744b0f31e8ff9e36df060d1e0,,
6746.0,anshnigam--Parallel-Computing,C,0.0,git,https://github.com/anshnigam/Parallel-Computing.git,,0.0,False,d370985d4de16c073585852746c024d5d3185cc8,,
6742.0,Victor-Pradoo--Openmp-Vector-Search-,C,0.0,git,https://github.com/Victor-Pradoo/Openmp-Vector-Search-.git,,0.0,False,4627fec4a36952f10c9f565368f3ee8fdcbeb988,,
6817.0,Zenonist--Parallel-OpenMP-Bucket-Sort,C,0.0,git,https://github.com/Zenonist/Parallel-OpenMP-Bucket-Sort.git,,0.0,False,69e603641c2b68a7179c04e1bca5be00d847d464,,
6880.0,jayanth241998--Gaussian_elimination,C,0.0,git,https://github.com/jayanth241998/Gaussian_elimination.git,,0.0,False,877d4d2ebad704c43754567da090bb354b4360f4,,
7733.0,lunapapa-finland--EDISS-PARALLEL,C,0.0,git,https://github.com/lunapapa-finland/EDISS-PARALLEL.git,,0.0,False,e24809d41871edf41ffff4e4a614674ff3357176,,
6884.0,dianorlova--parallel-programming-openMP,C++,0.0,git,https://github.com/dianorlova/parallel-programming-openMP.git,,0.0,False,316d0bd7d65523c457529a7f6d349daca980731e,,
7735.0,DylanReidRamelli--OpenMP-Learn,C++,0.0,git,https://github.com/DylanReidRamelli/OpenMP-Learn.git,,0.0,False,4668bf83f1a7a46a48661419753a38800a95a0db,,
6867.0,InigoGastesi--minero_openmp,C,0.0,git,https://github.com/InigoGastesi/minero_openmp.git,default_make.sh,0.0,False,7bb51c6c52d807f1e699305a9e719cdbe6a2ca1f,,2023-01-05 18:08:38+00:00
6864.0,kroelos--OpenMPLab,C++,0.0,git,https://github.com/kroelos/OpenMPLab.git,,0.0,False,875bae9081c241da9ed2ed717321361ca88093bb,,
6912.0,zyn10--OpenMPI,C,0.0,git,https://github.com/zyn10/OpenMPI.git,,0.0,False,a0a1eb4e872ab635be92e7f53939ef868eb66088,,
6906.0,IliaPetrovskii--OpenMP,C++,0.0,git,https://github.com/IliaPetrovskii/OpenMP.git,,0.0,False,b0615aab41e21dfc6d9ab2b2e0675ceeec03c54c,,
7732.0,cannondeb--openMP1DHeat,C,0.0,git,https://github.com/cannondeb/openMP1DHeat.git,,0.0,False,4a8b2a266d4d03a7eeb6365931d8ad48d9280972,,
6894.0,Ahmed-Hemida--MPI-and-OpenMP,C++,0.0,git,https://github.com/Ahmed-Hemida/MPI-and-OpenMP.git,,0.0,False,cf8be938708861dc440d61d6e57ea1513878303c,,
7731.0,marcellorussox--MIMD-SM-Parallel-Matrix-x-Vector,C,0.0,git,https://github.com/marcellorussox/MIMD-SM-Parallel-Matrix-x-Vector.git,,0.0,False,4485d94cc3c90d2e390bd3389e2c0ae0c7b1fdb1,,
6818.0,pwdrc--openmp,C,0.0,git,https://github.com/pwdrc/openmp.git,,0.0,False,31b9ecedc943741cbf9622d20ee52287040964c4,,
6835.0,Utkarshp1--CS-410-Parallel-Computing,C++,0.0,git,https://github.com/Utkarshp1/CS-410-Parallel-Computing.git,,0.0,False,ed9bf559d922d5594495b26f1d771eff6f3da6ad,,
6833.0,RohanL1--OpenMP_sparse_matrix_mult,C++,0.0,git,https://github.com/RohanL1/OpenMP_sparse_matrix_mult.git,default_make.sh,0.0,False,4eda898ae6965b209838e16777d044819d4e2f8f,,2023-01-12 18:56:23+00:00
6838.0,lilsus--parallel-prog-openmp,C++,0.0,git,https://github.com/lilsus/parallel-prog-openmp.git,,0.0,False,acf32775af99056a934411c93fab8be499857f3d,,
6825.0,puzzlef--copra-communities-openmp,C++,0.0,git,https://github.com/puzzlef/copra-communities-openmp.git,,0.0,False,dd6f14792e312855a9e59baca80091290118ea56,,
6821.0,rizzleduq--Linear_system_with_OpenMP,C++,0.0,git,https://github.com/rizzleduq/Linear_system_with_OpenMP.git,,0.0,False,dd62887d03340356abd9a04f384c7e77036f9b58,,
6863.0,Artem147--OpenMP,C++,0.0,git,https://github.com/Artem147/OpenMP.git,,0.0,False,97ee803274d1edcc94e1a75f3e680c8605a0dc59,,
6859.0,our-pp--simple-parallel-mlp,C++,0.0,git,https://github.com/our-pp/simple-parallel-mlp.git,,0.0,False,3c62e5555f89d81a7d58a52d18eec3f52e9e8b3b,,
7739.0,hairay--omp_test,C,0.0,git,https://github.com/hairay/omp_test.git,default_make.sh,0.0,False,c0af9a740b724a47a566a57dd4450d617732282f,,2023-12-16 06:17:02+00:00
6840.0,DanielKokovin--OpenMP,C++,0.0,git,https://github.com/DanielKokovin/OpenMP.git,,0.0,False,4e6c26be2da7d145a081174721bb520678b47cdb,,
6847.0,Kosarev23--Matrix_multiplication-OpenMP-,C++,0.0,git,https://github.com/Kosarev23/Matrix_multiplication-OpenMP-.git,,0.0,False,ff794b4a851ba949c6ed95a2e9fe1f7293653824,,
6843.0,DanielLangr--AQsort,C++,0.0,git,https://github.com/DanielLangr/AQsort.git,,0.0,False,2e73e4854c72b8a7a2065cdf5da3f506eaa79d14,,
7673.0,Durganshu--Abalone-Game,C++,0.0,git,https://github.com/Durganshu/Abalone-Game.git,default_make.sh,0.0,False,95e0a256e88da603c3746e14bbd9217baad4221c,,2024-01-03 03:13:06+00:00
7399.0,rindow--rindow-matlib,C++,0.0,git,https://github.com/rindow/rindow-matlib.git,default_cmake.sh,1.0,,185d60ab9fee40e6519d01aee1d8b00cf9922572,,2024-03-17 07:17:16+00:00
7395.0,24pnps--merge_sort_omp,C,0.0,git,https://github.com/24pnps/merge_sort_omp.git,,0.0,False,754771895a4f3fb477d117f1a2b1d83495e069e6,,
7391.0,lucasgpulcinelli--openmp-tutorials,C,0.0,git,https://github.com/lucasgpulcinelli/openmp-tutorials.git,,0.0,False,6ee656d5ef74905fbc512a6dde42567dab2bc96e,,
7388.0,dtele--sudoku_validator,C++,0.0,git,https://github.com/dtele/sudoku_validator.git,,0.0,False,5e54f452aead89403014c9ebe2f0831d9b10f9ae,,
7384.0,ibrohimmn1994--OpenMP-FEM-reaction-diffusion-,C,0.0,git,https://github.com/ibrohimmn1994/OpenMP-FEM-reaction-diffusion-.git,,0.0,False,e979fd4f1ff1f63a3d66367b3a9178c6884bee4c,,
7403.0,asiltureli--dijkstra_openmpi,C++,0.0,git,https://github.com/asiltureli/dijkstra_openmpi.git,,1.0,False,1d148948ed8732d37cbb80c450879178316b818e,,
7425.0,Rushika08--Parallel-Programming-OpenMP-Assignment,C,0.0,git,https://github.com/Rushika08/Parallel-Programming-OpenMP-Assignment.git,,0.0,False,4873de9b1e027ae8d5685478a95c1d258f822e80,,
7422.0,thibaultmougin--AMSIO3,C++,0.0,git,https://github.com/thibaultmougin/AMSIO3.git,,0.0,False,6757d670f500c6b7e04610b636f2e5c16c8a4def,,
7416.0,joshua-crews--Particles,C,0.0,git,https://github.com/joshua-crews/Particles.git,,1.0,,04f853174e5470c5f13313b8bc0f83b2c256e0e3,,
7563.0,Sorpirit--OpenMP_Lab,C++,0.0,git,https://github.com/Sorpirit/OpenMP_Lab.git,,0.0,False,af31e2ab9f7157d34356de3ded64f4f74d75c977,,
7565.0,a-giorgi--ParallelComputing,C++,0.0,git,https://github.com/a-giorgi/ParallelComputing.git,,0.0,False,ee55d06ba44e67cac67a841ed447c55687c0cef9,,
7380.0,ibrohimmn1994--OpenMPI-projects,C,0.0,git,https://github.com/ibrohimmn1994/OpenMPI-projects.git,,0.0,False,ba41d93133c5109b77636d36e7b5fbf47e0a6bab,,
7350.0,guyreuveni33--LinkedList_OpenMP,C,0.0,git,https://github.com/guyreuveni33/LinkedList_OpenMP.git,default_cmake.sh,1.0,,86d52809cdd85575bf78a33d3d3b07a9551f94b6,,2024-03-25 23:29:47+00:00
7345.0,mun-iulian--openmp-fork,C++,0.0,git,https://github.com/mun-iulian/openmp-fork.git,,1.0,False,acf21213dab03cf0c734709b87a45014e995546c,,
7337.0,deoxyribonuclease--OpenMP5,C++,0.0,git,https://github.com/deoxyribonuclease/OpenMP5.git,,0.0,False,a5dfa480f09853a1fb2c8bb418c638cfba5aae9b,,
7591.0,puzzlef--pagerank-barrierfree-openmp-dynamic,C++,0.0,git,https://github.com/puzzlef/pagerank-barrierfree-openmp-dynamic.git,,0.0,False,452597f512150475b3d7a7670ee71ba3aec32168,,
7330.0,orlandopalmeira--Trabalho-CP-2023-2024,C++,0.0,git,https://github.com/orlandopalmeira/Trabalho-CP-2023-2024.git,,0.0,False,deff537de0f131b105a253dc9c9170634483bdbb,,
7586.0,EvelynAylin--OpenMP,C++,0.0,git,https://github.com/EvelynAylin/OpenMP.git,,0.0,False,addc24c06a561bdd837cf334a3f84cb846dfdaa0,,
7375.0,st1gmat--highperf_tasks,C++,0.0,git,https://github.com/st1gmat/highperf_tasks.git,,0.0,False,1eb90d225c2948cb095a3dcbb919ef3ca096db83,,
7578.0,AlexiosSou--diffusion-omp,C,0.0,git,https://github.com/AlexiosSou/diffusion-omp.git,default_make.sh,0.0,False,f10d07aca381eeb381ca9358f9248ea46e5d18d9,,2024-01-30 09:42:14+00:00
7579.0,LH-1169213--A01169213_OpenMP_V2,C++,0.0,git,https://github.com/LH-1169213/A01169213_OpenMP_V2.git,,0.0,False,51104ce8a36a7c68c0ecdd3c1b820a1795de7093,,
7362.0,HiPeRT--particle_filter_dta,C++,0.0,git,https://github.com/HiPeRT/particle_filter_dta.git,,1.0,False,6bcd3c7dc151d866e7ca7f535c5d136693f958d1,,
7357.0,KleinSpeedy--intel-openmp-tutorial,C,0.0,git,https://github.com/KleinSpeedy/intel-openmp-tutorial.git,,0.0,False,7be35755543894ab72a137cbcfbd312e25831708,,
7428.0,fverri--collatz-sequence,C,0.0,git,https://github.com/fverri/collatz-sequence.git,,0.0,False,d4bc4d21ffb862ade07b30463710a5236edae549,,
7496.0,tnear--OpenMP,C++,0.0,git,https://github.com/tnear/OpenMP.git,,0.0,False,bdd289511dd7a83c1f59089f2f598fc734b6dfb8,,
7489.0,hanliangyu--OpenMP,C++,0.0,git,https://github.com/hanliangyu/OpenMP.git,,1.0,False,6a46e36a04f53c9d0a7bcbe0a9336d19fb9e25e3,,
7485.0,ibzzsfw--high-performance-computing,C,0.0,git,https://github.com/ibzzsfw/high-performance-computing.git,,0.0,False,3827c39aa5976db0cb43742df90267128690b95f,,
7482.0,JosephTNW--sorting-comparison-parallel-serial,C++,0.0,git,https://github.com/JosephTNW/sorting-comparison-parallel-serial.git,,1.0,False,0820d3f209647a80116d4ad64bee83f3c704fe51,,
7479.0,GeorgeD615--ParallelAlgorithms,C++,0.0,git,https://github.com/GeorgeD615/ParallelAlgorithms.git,,0.0,False,1f3a24aa2cfe91cb4bfe7708b1c03369410cdc60,,
7500.0,josembadia--mm_offloading,C,0.0,git,https://github.com/josembadia/mm_offloading.git,,0.0,False,95eb5bee029ef56b044d761c6ed13689089ff4b5,,
7520.0,Wolfram18--openmp-demo,C++,0.0,git,https://github.com/Wolfram18/openmp-demo.git,,0.0,False,4c94aead54843497cb1115a7e79ae8a02efc7e6d,,
7517.0,marcoame2001--Paralllelism_OpenMp,C++,0.0,git,https://github.com/marcoame2001/Paralllelism_OpenMp.git,,0.0,False,fe40af13cc586d19142ef9719481c50661558d59,,
7514.0,acham--barriers,C,0.0,git,https://github.com/acham/barriers.git,default_make.sh,0.0,False,b8782de770ef30f07ddacc268e75b369743aaa0b,,
7511.0,mayank1818--openmp,C++,0.0,git,https://github.com/mayank1818/openmp.git,,0.0,False,a05854a60a2e4cb7618aede096d8bc4dff06463e,,
7506.0,battcheeks--csc-506-program2,C,0.0,git,https://github.com/battcheeks/csc-506-program2.git,,0.0,False,755e0ff944104576c8db0cd75764411806cf9566,,
7474.0,Seeclover--ant-algorithm-with-MPI-and-openMP,C++,0.0,git,https://github.com/Seeclover/ant-algorithm-with-MPI-and-openMP.git,,0.0,False,bcd08e233ac78ca7ec29c3ddbb37882a7e462113,,
7448.0,AnnPalna--Paralelnoe_programmirovanie_OpenMPI,C++,0.0,git,https://github.com/AnnPalna/Paralelnoe_programmirovanie_OpenMPI.git,,0.0,False,907d2fe00974400cece2f4ddd61efc70ff521021,,
7445.0,cescedes--Heat-Equation-2D-with-OpenMP,C++,0.0,git,https://github.com/cescedes/Heat-Equation-2D-with-OpenMP.git,,0.0,False,57e8eb5039a7b2104adacf4d28ca1b0c6faba3e6,,
7439.0,missing-user--barnes-hut,C++,0.0,git,https://github.com/missing-user/barnes-hut.git,,1.0,False,7c52c4332a8019fa121af6f1024fce1d5396d0e3,,
7553.0,DeepMoonkiZz--Project-CHP-2A,C,0.0,git,https://github.com/DeepMoonkiZz/Project-CHP-2A.git,,0.0,False,b6c3dd1be210734ffaa555f308fa2a413e3c5a62,,
7556.0,RINO-GAELICO--ImageSegmentation,C,0.0,git,https://github.com/RINO-GAELICO/ImageSegmentation.git,,1.0,False,b34be5e462e86d845633fd93e11171c5a9473f4f,,
7451.0,ph0t0nchik--OpenMP,C,0.0,git,https://github.com/ph0t0nchik/OpenMP.git,,0.0,False,8a0113d0bfaac22acb7958260044e524eaa52792,,
7471.0,puzzlef--rak-communities-openmp,C++,0.0,git,https://github.com/puzzlef/rak-communities-openmp.git,,0.0,False,487da5ae535190fe2b56cb835a917d80c82136d0,,
7539.0,ozlemkucuksagir--MPI_OpenMP,C,0.0,git,https://github.com/ozlemkucuksagir/MPI_OpenMP.git,,0.0,False,addd86d7c4ab1d81fea581373e05cda755aff93a,,
7463.0,Anoushka21--CUDA-vs-OpenMP,C++,0.0,git,https://github.com/Anoushka21/CUDA-vs-OpenMP.git,,0.0,False,e6dce9a8c1384a2eaf76640242f397d6c5bac3f5,,
7459.0,AuraKaliya--openmp_learn_and_test,C++,0.0,git,https://github.com/AuraKaliya/openmp_learn_and_test.git,,0.0,False,b56b96f875620e533f7104d6a13e5c470bba5f4f,,
7544.0,PurnimaKumarii--openmp_program,C,0.0,git,https://github.com/PurnimaKumarii/openmp_program.git,,0.0,False,433b41ae0f6cee5f3d84a88152a1bbf56d50db22,,
7327.0,codepk37--SPP-matrix_vector,C,0.0,git,https://github.com/codepk37/SPP-matrix_vector.git,default_make.sh,0.0,False,b8f0120e7805a2d3d4bc1a0c0165d24fa8ff7aaa,,2024-03-30 13:30:42+00:00
7194.0,nyahn01--finite_element_parallelization_OpenMP_MPI,C++,0.0,git,https://github.com/nyahn01/finite_element_parallelization_OpenMP_MPI.git,,0.0,False,dcdf8732484f13e1cfd29dda85c9a6481aa8bfa2,,
7190.0,ZhentyaiLentyai--OpenMP_IntegralCalculation,C++,0.0,git,https://github.com/ZhentyaiLentyai/OpenMP_IntegralCalculation.git,,0.0,False,d8d3eb01e7d75e06a204836c7ad4050fbefe133f,,
7660.0,Ndriqim-H--Assignment-2-OpenMP,C++,0.0,git,https://github.com/Ndriqim-H/Assignment-2-OpenMP.git,,0.0,False,98f2ef24c664e63088784fa57de661de5a1c73e5,,
7184.0,LOOP115--OpenMP_Study,C,0.0,git,https://github.com/LOOP115/OpenMP_Study.git,,0.0,False,3c6c38933d6ff0e72233c81fd5a89b1f4257f58a,,
7180.0,RonShmaya--Parallel_Computing_using_MPI_openMp_Cuda,C,0.0,git,https://github.com/RonShmaya/Parallel_Computing_using_MPI_openMp_Cuda.git,,0.0,False,53808ce32d794857911fad48805d7bf5c039c6c0,,
7198.0,EnzeXu--OpenMP,C++,0.0,git,https://github.com/EnzeXu/OpenMP.git,,0.0,False,7ba28fa75c58bbd72268aea30992202e1d142d99,,
7221.0,AAbhijithA--DFS-Parallelization,C++,0.0,git,https://github.com/AAbhijithA/DFS-Parallelization.git,,0.0,False,891d00efe78bfb5a20b6070b063779967b75cd28,,
7656.0,Liliana431--OpenMp,C++,0.0,git,https://github.com/Liliana431/OpenMp.git,,0.0,False,9013c16f41ead0602139501adcbe046f4a2ac5be,,
7211.0,jmj52--OpenMP_MNIST_NN,C,0.0,git,https://github.com/jmj52/OpenMP_MNIST_NN.git,default_make.sh,0.0,False,324bda592b29021db120ef037b51bbbf4592c414,,
7208.0,JVALPASS--Function_vectorization,C,0.0,git,https://github.com/JVALPASS/Function_vectorization.git,,0.0,False,7958ea71878065dd1c42d00143babe6dead35968,,
7202.0,AmanPateI--Numerical-Integration,C++,0.0,git,https://github.com/AmanPateI/Numerical-Integration.git,,0.0,False,e66a7b09ce3415e5aebea348c894b94b931a7676,,
7175.0,SooJuWen--SGA-OpenMP-,C++,0.0,git,https://github.com/SooJuWen/SGA-OpenMP-.git,,0.0,False,9714660a0e04857a7df699167c88006b8f3369d7,,
7668.0,tareqmahmood--TeamSAT,C++,0.0,git,https://github.com/tareqmahmood/TeamSAT.git,,0.0,False,f0676bea47a5212948683de3d921e49d63ab9f40,,
7139.0,Tyson44-rus--OpenMP1,C++,0.0,git,https://github.com/Tyson44-rus/OpenMP1.git,,0.0,False,fa06c9a3bf2ae49cd57ef5ee179ccbd635061962,,
7132.0,mridul21harish--High-Performance-Computing,C,0.0,git,https://github.com/mridul21harish/High-Performance-Computing.git,,0.0,False,7045cf72774d88c5f25dd7f55de989d31f4cfff9,,
7129.0,u-noob-i--OpenMP-tutorial,C,0.0,git,https://github.com/u-noob-i/OpenMP-tutorial.git,,0.0,False,f772e9fa73384535c8ef168525e8b571b4b052de,,
7124.0,AkankshaTelagamsetty12--OpenMP_Programming,C,0.0,git,https://github.com/AkankshaTelagamsetty12/OpenMP_Programming.git,,0.0,False,bff05faf75a95a0bb0613f0252e02472e1abd75b,,
7666.0,PantelisMakrygiannis--ParallelComputing,C,0.0,git,https://github.com/PantelisMakrygiannis/ParallelComputing.git,,0.0,False,42b8619dcb38794383742e64f8633eb4c94000f7,,
7168.0,tomaszStr1020--parallel_programming,C,0.0,git,https://github.com/tomaszStr1020/parallel_programming.git,,0.0,False,9bc5b351b1d509a91747b995e9e89b96a2179940,,
7164.0,RonBless--image-processing-parallel-computing,C,0.0,git,https://github.com/RonBless/image-processing-parallel-computing.git,,0.0,False,6668b7ab28efe0d3b8347bca064c4caaf3a2abff,,
7159.0,Kuchibecka--GST_OpenMP,C++,0.0,git,https://github.com/Kuchibecka/GST_OpenMP.git,default_cmake.sh,1.0,,4c671f0f90c7bae27a962339e144f358f25348e9,,2022-09-30 01:35:08+00:00
7664.0,Mr-Philo--Simple-CPU-Parallel,C,0.0,git,https://github.com/Mr-Philo/Simple-CPU-Parallel.git,,0.0,False,06b0420876de5a2a0779ce7263e668248beffa8c,,
7154.0,sebasalazar--cpyd-taller-03,C++,0.0,git,https://github.com/sebasalazar/cpyd-taller-03.git,,0.0,False,648754384cd170a92ff0cd3f0bcaefd9d1390e47,,
7226.0,n1klze--Parallel-Programming,C,0.0,git,https://github.com/n1klze/Parallel-Programming.git,,0.0,False,80692cfe6fc570d557b39809968302c8e36e2771,,
7299.0,mati2251--canny-edge-detetction,C,0.0,git,https://github.com/mati2251/canny-edge-detetction.git,,1.0,False,a9decdcb5567911a6b1dde1b457a2bf8ec7f1bbd,,
7614.0,accoumar12--HPC-OpenMP,C,0.0,git,https://github.com/accoumar12/HPC-OpenMP.git,,0.0,False,e9bf1c57ee35c0bce864196ea0217e5a7452327f,,
7290.0,camjay99--CS5220Final_Project,C++,0.0,git,https://github.com/camjay99/CS5220Final_Project.git,,0.0,False,2f8b47c30f9693929f1e4c9cba92bfd5f40ca51e,,
7287.0,rkg266--Tensors-FromScratch-Cpp,C++,0.0,git,https://github.com/rkg266/Tensors-FromScratch-Cpp.git,,1.0,False,b35de6c6b870ac06c61a10caccd0af90591df33b,,
7285.0,aless-x-code--MonteCarlo-OpenMP,C++,0.0,git,https://github.com/aless-x-code/MonteCarlo-OpenMP.git,,0.0,False,4e3808e11dde2527280b6e89cb2f0118b15dc163,,
7304.0,Sean-Higgins--Epidemiology-Models,C,0.0,git,https://github.com/Sean-Higgins/Epidemiology-Models.git,,0.0,False,309c4aeb49fc4c50965545bf0386a73ff1bc2d8f,,
7597.0,aaamourao--clDES,C++,0.0,git,https://github.com/aaamourao/clDES.git,,1.0,False,2e0199016c1ed0a0b205b838e92a3f047f3478af,,
7319.0,wybin4--lab_omp,C++,0.0,git,https://github.com/wybin4/lab_omp.git,,0.0,False,987c773726d85c77fde2f9062839ec644f52dae6,,
7313.0,JustWhit3--cppfetch,C++,0.0,git,https://github.com/JustWhit3/cppfetch.git,,1.0,False,938b750312850c98a3179c809b68b7c61aed1ddc,,
7604.0,LuigiPagani--Monte-Carlo-Methods-for-the-2D-ising-Model,C++,0.0,git,https://github.com/LuigiPagani/Monte-Carlo-Methods-for-the-2D-ising-Model.git,,0.0,False,d33d4d68651eca960a05c2fbb26f9996de6dae00,,
7307.0,tasath26--Game-of-Life-OpenMP,C,0.0,git,https://github.com/tasath26/Game-of-Life-OpenMP.git,default_make.sh,0.0,False,0a9b1a2f02a27b5fc011864f0c823597d206efc1,,2024-04-03 18:40:43+00:00
7623.0,ogzhn1k--OpenMP-Architecture,C++,0.0,git,https://github.com/ogzhn1k/OpenMP-Architecture.git,,0.0,False,6da9cf908038cd8bbfd09414e64d594bbfc35734,,
7644.0,IDragonThunderI--Multithreading-OpenMP_RecursiveParallelism,C++,0.0,git,https://github.com/IDragonThunderI/Multithreading-OpenMP_RecursiveParallelism.git,,0.0,False,b5e3044633262695fae6433bad5767a1518108f7,,
7646.0,IDragonThunderI--Multithreading-OpenMP_ParallelLoops,C++,0.0,git,https://github.com/IDragonThunderI/Multithreading-OpenMP_ParallelLoops.git,,0.0,False,9c7f402285c02fd12757ce7752aafc8dc4d12d47,,
7243.0,critixa--Parallel-KMeans-Clustering,C,0.0,git,https://github.com/critixa/Parallel-KMeans-Clustering.git,,0.0,False,ee73a4fcf4633809308c67e989458a3b497874ee,,
7237.0,aaabdulaevvv--OpenMP_PerfectNumbers,C++,0.0,git,https://github.com/aaabdulaevvv/OpenMP_PerfectNumbers.git,,0.0,False,b4dccbc9f679da8b69d169807304634bcb8757e0,,
7233.0,shruthimohan03--Parallel-Database-Architecture,C++,0.0,git,https://github.com/shruthimohan03/Parallel-Database-Architecture.git,,0.0,False,0498299932362c2c1a35e0eb71a9ea54b7679bf7,,
7640.0,hoanganh1506--Parallel-and-Serial-BellmanFord-Algorithm,C++,0.0,git,https://github.com/hoanganh1506/Parallel-and-Serial-BellmanFord-Algorithm.git,,0.0,False,7e2bc564262e903a5047742e9a6226ce512a498d,,
7279.0,septianrazi--ImageProcessingInOpenMPCuda,C,0.0,git,https://github.com/septianrazi/ImageProcessingInOpenMPCuda.git,,0.0,False,bdf8566c4e75004551395b5b5ed49f111577b40f,,
7277.0,Alvin0131--RealTme-Rendering,C++,0.0,git,https://github.com/Alvin0131/RealTme-Rendering.git,,0.0,False,173e88cd03f718d2bb383e64221789577cf51910,,
7633.0,jfboy233--openmpi-test,C,0.0,git,https://github.com/jfboy233/openmpi-test.git,,0.0,False,e92c6f4750220f79f0f8123b3f972f4c6e1a63da,,
7634.0,TIAGOOOLIVEIRA--Master-HighPerformanceComputing-UniversidadSantiagoCompostela_code_cuda-mpi-omp,C,0.0,git,https://github.com/TIAGOOOLIVEIRA/Master-HighPerformanceComputing-UniversidadSantiagoCompostela_code_cuda-mpi-omp.git,,0.0,False,41884b472b6f64a6ce50e52f088c50c988fcb76b,,
7637.0,Xinyu302--Cholesky-OpenMP,C,0.0,git,https://github.com/Xinyu302/Cholesky-OpenMP.git,,0.0,False,7e1ad7673b1096cb0e966629b37bc6014d7db24a,,
6716.0,CHPS-HITS-SALSA--hits-salsa,C++,0.0,git,https://github.com/CHPS-HITS-SALSA/hits-salsa.git,,1.0,False,23f376182133a56afcfe2b76ae527e83e7b1ec45,,
7902.0,bhemati--openmp_blur_task_taskloop,C++,0.0,git,https://github.com/bhemati/openmp_blur_task_taskloop.git,,0.0,False,7023cb7261805b75239ac623ae8ff4dc487a4a2d,,
6179.0,tiwariarjun91--Parallel-Programming-OpenMP,C,0.0,git,https://github.com/tiwariarjun91/Parallel-Programming-OpenMP.git,,0.0,False,f16f687f227396631d10ddbccc86fc140b407af3,,
6175.0,bart1259--ConwayOpenMP,C++,0.0,git,https://github.com/bart1259/ConwayOpenMP.git,,0.0,False,0d396d7c5a766995c5712e702005f22e6cc4a549,,
6170.0,osvaldolimeirasantos--PGCC011-OpenMP,C++,0.0,git,https://github.com/osvaldolimeirasantos/PGCC011-OpenMP.git,,0.0,False,c5b8b8d938673c95bbd4008b639866fbd8a6edfe,,
6164.0,sankdev0--multi-demo-01,C++,0.0,git,https://github.com/sankdev0/multi-demo-01.git,,0.0,False,dff17d2c2b34d2512b41b1c796e396d48d224fb2,,
6187.0,Dan-Yeh--Parallel-Kd-Tree,C++,0.0,git,https://github.com/Dan-Yeh/Parallel-Kd-Tree.git,,0.0,False,f9a61c214eca0700a60262948b2c30d22e94882a,,
6210.0,IshanBorkar--Backpropagation_OpenMP_Project,C,0.0,git,https://github.com/IshanBorkar/Backpropagation_OpenMP_Project.git,,0.0,False,2451de2aa5f25b46f9fe18e86d6771c48d8c56b8,,
6206.0,koksing456--Solving-Massive-Linear-Equations,C++,0.0,git,https://github.com/koksing456/Solving-Massive-Linear-Equations.git,,0.0,False,3eed6628e54118161edbbce3c5e96f2a3aa67074,,
6203.0,kostascc--PDS-Project-4,C++,0.0,git,https://github.com/kostascc/PDS-Project-4.git,,0.0,False,33cedd1a5800a4e2b6cb51a7c6635b2eaa82dd19,,
6197.0,tristingreenstein--Optimization-Techniques-using-Parallel-Task-in-OpenMP,C,0.0,git,https://github.com/tristingreenstein/Optimization-Techniques-using-Parallel-Task-in-OpenMP.git,,0.0,False,e2d28334a504d373d764e142f6f796bbecb37a10,,
7896.0,MohShahin--Assignment-2-Parallelizing-Matrix-Multiplication-using-Pthreads-and-OpenMP,C,0.0,git,https://github.com/MohShahin/Assignment-2-Parallelizing-Matrix-Multiplication-using-Pthreads-and-OpenMP.git,,0.0,False,420d2157f24b1b367f337931ff61f5d2b9545611,,