-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathms.bib
1659 lines (1564 loc) · 62.2 KB
/
ms.bib
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
@report{GraphBLASv13,
author = {Aydin Bulu{\c{c}} and others},
xxauthor = {Aydin Bulu{\c{c}} and
Timothy Mattson and
Jos{\'{e}} E. Moreira and
Scott McMillan and
Carl Yang},
title = {The {GraphBLAS} {C} {API} Specification. {V}ersion 1.3.0},
year = {2019},
note = "\url{https://people.eecs.berkeley.edu/~aydin/GraphBLAS_API_C_v13.pdf}",
}
@online{GxBUserGuide,
author = {Timothy A. Davis},
title = {User Guide for {SuiteSparse:GraphBLAS}, version 3.3.3},
note = {\url{https://people.engr.tamu.edu/davis/GraphBLAS.html}},
year = {2020},
}
@article{DBLP:journals/toms/Davis19,
author = {Timothy A. Davis},
title = {Algorithm 1000: {SuiteSparse:GraphBLAS}: {G}raph Algorithms in the Language of Sparse Linear Algebra},
journal = {{ACM} Trans. Math. Softw.},
xxvolume = {45},
xxnumber = {4},
xxpages = {44:1--44:25},
year = {2019},
url = {https://doi.org/10.1145/3322125},
doi = {10.1145/3322125},
timestamp = {Mon, 27 Jan 2020 10:41:32 +0100},
biburl = {https://dblp.org/rec/journals/toms/Davis19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/ipps/MattsonDKBMMY19,
author = {Tim Mattson and others},
xxauthor = {Tim Mattson and
Timothy A. Davis and
Manoj Kumar and
Aydin Bulu{\c{c}} and
Scott McMillan and
Jos{\'{e}} E. Moreira and
Carl Yang},
title = {{LAGraph}: {A} Community Effort to Collect Graph Algorithms Built on
Top of the {GraphBLAS}},
xxbooktitle = {{IEEE} International Parallel and Distributed Processing Symposium
Workshops, {IPDPSW} 2019, Rio de Janeiro, Brazil, May 20-24, 2019},
booktitle = {GrAPL at IPDPS},
xxpages = {276--284},
year = {2019},
url = {https://doi.org/10.1109/IPDPSW.2019.00053},
doi = {10.1109/IPDPSW.2019.00053},
timestamp = {Wed, 16 Oct 2019 14:14:51 +0200},
biburl = {https://dblp.org/rec/bib/conf/ipps/MattsonDKBMMY19},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/ppsc/ZhangAH20,
author = {Yongzhe Zhang and others},
xxauthor = {Yongzhe Zhang and
Ariful Azad and
Zhenjiang Hu},
title = {{FastSV}: {A} Distributed-Memory Connected Component Algorithm with Fast Convergence},
booktitle = {{PPSC}},
pages = {46--57},
publisher = {{SIAM}},
year = {2020},
url = {https://doi.org/10.1137/1.9781611976137.5},
doi = {10.1137/1.9781611976137.5},
timestamp = {Tue, 26 May 2020 11:42:06 +0200},
biburl = {https://dblp.org/rec/conf/ppsc/ZhangAH20.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/sc/WinterMZSS18,
xxauthor = {Martin Winter and others},
author = {Martin Winter and
Daniel Mlakar and
Rhaleb Zayer and
Hans{-}Peter Seidel and
Markus Steinberger},
title = {{faimGraph}: {H}igh performance management of fully-dynamic graphs under tight memory constraints on the {GPU}},
booktitle = {SC},
xxbooktitle = {Proceedings of the International Conference for High Performance Computing,
Networking, Storage, and Analysis, {SC} 2018, Dallas, TX, USA, November
11-16, 2018},
xxpages = {60:1--60:13},
publisher = {{IEEE} / {ACM}},
year = {2018},
url = {http://dl.acm.org/citation.cfm?id=3291736},
timestamp = {Mon, 12 Nov 2018 09:20:44 +0100},
biburl = {https://dblp.org/rec/bib/conf/sc/WinterMZSS18},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/cf/KumarMP18,
xxauthor = {Manoj Kumar and others},
author = {Manoj Kumar and
Jos{\'{e}} E. Moreira and
Pratap Pattnaik},
title = {{GraphBLAS}: {H}andling performance concerns in large graph analytics},
booktitle = {CF},
xxbooktitle = {Proceedings of the 15th {ACM} International Conference on Computing
Frontiers, {CF} 2018, Ischia, Italy, May 08-10, 2018},
pages = {260--267},
publisher = {{ACM}},
year = {2018},
url = {https://doi.org/10.1145/3203217.3205342},
doi = {10.1145/3203217.3205342},
timestamp = {Wed, 21 Nov 2018 12:44:06 +0100},
biburl = {https://dblp.org/rec/bib/conf/cf/KumarMP18},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/hpec/KepnerABBFGHKLM16,
author = {Jeremy Kepner and others},
xxauthor = {Jeremy Kepner and
Peter Aaltonen and
David A. Bader and
Aydin Bulu{\c{c}} and
Franz Franchetti and
John R. Gilbert and
Dylan Hutchison and
Manoj Kumar and
Andrew Lumsdaine and
Henning Meyerhenke and
Scott McMillan and
Carl Yang and
John D. Owens and
Marcin Zalewski and
Timothy G. Mattson and
Jos{\'{e}} E. Moreira},
title = {Mathematical foundations of the {GraphBLAS}},
xxbooktitle = {2016 {IEEE} High Performance Extreme Computing Conference, {HPEC}
2016, Waltham, MA, USA, September 13-15, 2016},
booktitle = {HPEC},
publisher = {IEEE},
xxpages = {1--9},
year = {2016},
url = {https://doi.org/10.1109/HPEC.2016.7761646},
doi = {10.1109/HPEC.2016.7761646},
timestamp = {Sat, 19 Oct 2019 20:21:03 +0200},
biburl = {https://dblp.org/rec/bib/conf/hpec/KepnerABBFGHKLM16},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/siamcsc/AznavehC0HKMS20,
author = {Mohsen Aznaveh and others},
xxauthor = {Mohsen Aznaveh and
Jinhao Chen and
Timothy A. Davis and
B{\'{a}}lint Hegyi and
Scott P. Kolodziej and
Timothy G. Mattson and
G{\'{a}}bor Sz{\'{a}}rnyas},
title = {Parallel {GraphBLAS} with {OpenMP}},
booktitle = {{CSC}},
pages = {138--148},
publisher = {{SIAM}},
year = {2020},
url = {https://doi.org/10.1137/1.9781611976229.14},
doi = {10.1137/1.9781611976229.14},
timestamp = {Thu, 28 May 2020 19:11:22 +0200},
biburl = {https://dblp.org/rec/conf/siamcsc/AznavehC0HKMS20.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/sigmod/ErlingALCGPPB15,
xxauthor = {Orri Erling and others},
author = {Orri Erling and
Alex Averbuch and
Josep{-}Lluis Larriba{-}Pey and
Hassan Chafi and
Andrey Gubichev and
Arnau Prat{-}P{\'{e}}rez and
Minh{-}Duc Pham and
Peter A. Boncz},
title = {The {LDBC Social Network Benchmark}: {Interactive} Workload},
booktitle = {SIGMOD},
pages = {619--630},
year = {2015},
url = {http://doi.acm.org/10.1145/2723372.2742786},
doi = {10.1145/2723372.2742786},
timestamp = {Thu, 12 Nov 2015 16:33:38 +0100},
biburl = {http://dblp.uni-trier.de/rec/bib/conf/sigmod/ErlingALCGPPB15},
bibsource = {dblp computer science bibliography, http://dblp.org}
}
@inproceedings{DBLP:conf/rcdl/ChernishevSSS14,
author = {George A. Chernishev and others},
xxauthor = {George A. Chernishev and
Vsevolod Sevostyanov and
Kirill Smirnov and
Ilya Shkuratov},
title = {On Several Social Network Analysis Problems},
booktitle = {All-Russian Scientific Conference "Digital libraries: Advanced Methods and Technologies, Digital Collections"},
xxbooktitle = {Selected Papers of {XVI} All-Russian Scientific Conference "Digital
libraries: Advanced Methods and Technologies, Digital Collections",
Dubna, Russia, October 13-16, 2014},
xxseries = {{CEUR} Workshop Proceedings},
xxvolume = {1297},
pages = {234--242},
xxpublisher = {CEUR-WS.org},
year = {2014},
url = {http://ceur-ws.org/Vol-1297/234-242_paper-34.pdf},
timestamp = {Wed, 12 Feb 2020 16:44:31 +0100},
biburl = {https://dblp.org/rec/conf/rcdl/ChernishevSSS14.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{DBLP:journals/pvldb/ThenKCHPK0V14,
xxauthor = {Manuel Then and others},
author = {Manuel Then and
Moritz Kaufmann and
Fernando Chirigati and
Tuan{-}Anh Hoang{-}Vu and
Kien Pham and
Alfons Kemper and
Thomas Neumann and
Huy T. Vo},
title = {The More the Merrier: {E}fficient Multi-Source Graph Traversal},
journal = {{PVLDB}},
volume = {8},
number = {4},
pages = {449--460},
year = {2014},
url = {http://www.vldb.org/pvldb/vol8/p449-then.pdf},
doi = {10.14778/2735496.2735507},
timestamp = {Thu, 16 Aug 2018 11:33:45 +0200},
biburl = {https://dblp.org/rec/journals/pvldb/ThenKCHPK0V14.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/ipps/ElekesS20,
author = {M{\'{a}}rton Elekes and
G{\'{a}}bor Sz{\'{a}}rnyas},
title = {An incremental {GraphBLAS} solution for the 2018 {TTC} {S}ocial {M}edia case study},
booktitle = {GrAPL at IPDPS},
pages = {203--206},
publisher = {{IEEE}},
year = {2020},
url = {https://doi.org/10.1109/IPDPSW50202.2020.00045},
doi = {10.1109/IPDPSW50202.2020.00045},
timestamp = {Fri, 14 Aug 2020 17:20:17 +0200},
biburl = {https://dblp.org/rec/conf/ipps/ElekesS20.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@Article{DBLP:journals/corr/abs-2001-02299,
author = {Renzo Angles and others},
xxauthor = {Renzo Angles and J{\'{a}}nos Benjamin Antal and Alex Averbuch and Peter A. Boncz and Orri Erling and Andrey Gubichev and Vlad Haprian and Moritz Kaufmann and Josep{-}Llu{\'{\i}}s Larriba{-}Pey and Norbert Mart{\'{\i}}nez{-}Bazan and J{\'{o}}zsef Marton and Marcus Paradies and Minh{-}Duc Pham and Arnau Prat{-}P{\'{e}}rez and Mirko Spasic and Benjamin A. Steer and G{\'{a}}bor Sz{\'{a}}rnyas and Jack Waudby},
journal = {CoRR},
title = {The {LDBC} {S}ocial {N}etwork {B}enchmark},
year = {2020},
volume = {abs/2001.02299},
archiveprefix = {arXiv},
bibsource = {dblp computer science bibliography, https://dblp.org},
biburl = {https://dblp.org/rec/journals/corr/abs-2001-02299.bib},
eprint = {2001.02299},
url = {http://arxiv.org/abs/2001.02299},
note = "\url{http://arxiv.org/abs/2001.02299}",
}
@online{pygraphblas,
author = {Michel Pelletier},
title = {{pygraphblas}},
year = {2020},
note = "\url{https://github.com/michelp/pygraphblas}",
}
@inproceedings{DBLP:conf/edbt/KaufmannTK017,
author = {Moritz Kaufmann and others},
xxauthor = {Moritz Kaufmann and
Manuel Then and
Alfons Kemper and
Thomas Neumann},
title = {Parallel Array-Based Single- and Multi-Source Breadth First Searches on Large Dense Graphs},
booktitle = {EDBT},
xxpages = {1--12},
year = {2017},
url = {https://doi.org/10.5441/002/edbt.2017.02},
doi = {10.5441/002/edbt.2017.02},
timestamp = {Fri, 30 Nov 2018 13:31:06 +0100},
biburl = {https://dblp.org/rec/conf/edbt/KaufmannTK017.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/grades/ThenKK016,
author = {Manuel Then and others},
xxauthor = {Manuel Then and
Moritz Kaufmann and
Alfons Kemper and
Thomas Neumann},
title = {Evaluation of parallel graph loading techniques},
booktitle = {GRADES at SIGMOD},
publisher = {{ACM}},
year = {2016},
url = {https://doi.org/10.1145/2960414.2960418},
doi = {10.1145/2960414.2960418},
timestamp = {Tue, 06 Nov 2018 16:58:01 +0100},
biburl = {https://dblp.org/rec/conf/grades/ThenKK016.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@book{DBLP:books/siam/11/KG2011,
editor = {Jeremy Kepner and
John R. Gilbert},
title = {Graph Algorithms in the Language of Linear Algebra},
xxseries = {Software, environments, tools},
xxvolume = {22},
publisher = {{SIAM}},
year = {2011},
url = {https://doi.org/10.1137/1.9780898719918},
doi = {10.1137/1.9780898719918},
isbn = {978-0-89871-990-1},
timestamp = {Tue, 02 Jul 2019 08:09:44 +0200},
biburl = {https://dblp.org/rec/bib/books/siam/11/KG2011},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@incollection{DBLP:books/siam/11/FinemanR11crossref,
author = {Jeremy T. Fineman and
Eric Robinson},
title = {Fundamental Graph Algorithms},
booktitle = {Graph Algorithms in the Language of Linear Algebra},
pages = {45--58},
year = {2011},
xxcrossref = {DBLP:books/siam/11/KG2011},
url = {https://doi.org/10.1137/1.9780898719918.ch5},
doi = {10.1137/1.9780898719918.ch5},
timestamp = {Tue, 02 Jul 2019 08:09:44 +0200},
biburl = {https://dblp.org/rec/books/siam/11/FinemanR11.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@incollection{DBLP:books/siam/11/FinemanR11nocrossref,
author = {Jeremy T. Fineman and
Eric Robinson},
editor = {Jeremy Kepner and
John R. Gilbert},
title = {Fundamental Graph Algorithms},
booktitle = {Graph Algorithms in the Language of Linear Algebra},
xxseries = {Software, environments, tools},
xxvolume = {22},
pages = {45--58},
publisher = {{SIAM}},
year = {2011},
url = {https://doi.org/10.1137/1.9780898719918.ch5},
doi = {10.1137/1.9780898719918.ch5},
timestamp = {Tue, 02 Jul 2019 08:09:44 +0200},
biburl = {https://dblp.org/rec/books/siam/11/FinemanR11.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/sc/BeamerAP12,
author = {Scott Beamer and others},
xxauthor = {Scott Beamer and
Krste Asanovic and
David A. Patterson},
title = {Direction-optimizing breadth-first search},
booktitle = {{SC}},
publisher = {{IEEE/ACM}},
year = {2012},
url = {https://doi.org/10.1109/SC.2012.50},
doi = {10.1109/SC.2012.50},
timestamp = {Wed, 16 Oct 2019 14:14:57 +0200},
biburl = {https://dblp.org/rec/conf/sc/BeamerAP12.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/icpp/YangBO18,
author = {Carl Yang and others},
xxauthor = {Carl Yang and
Aydin Bulu{\c{c}} and
John D. Owens},
title = {Implementing Push-Pull Efficiently in {GraphBLAS}},
booktitle = {{ICPP}},
pages = {89:1--89:11},
publisher = {{ACM}},
year = {2018},
url = {https://doi.org/10.1145/3225058.3225122},
doi = {10.1145/3225058.3225122},
timestamp = {Wed, 21 Nov 2018 12:44:17 +0100},
biburl = {https://dblp.org/rec/conf/icpp/YangBO18.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{GraphChallenge,
author = {Siddharth Samsi and others},
xxauthor = {Siddharth Samsi and
Vijay Gadepally and
Michael B. Hurley and
Michael Jones and
Edward K. Kao and
Sanjeev Mohindra and
Paul Monticciolo and
Albert Reuther and
Steven Thomas Smith and
William Song and
Diane Staheli and
Jeremy Kepner},
title = {{GraphChallenge.org}: {R}aising the Bar on Graph Analytic Performance},
booktitle = {{HPEC}},
xxbooktitle = {2018 {IEEE} High Performance Extreme Computing Conference, {HPEC}
2018, Waltham, MA, USA, September 25-27, 2018},
xxpages = {1--7},
publisher = {{IEEE}},
year = {2018},
url = {https://doi.org/10.1109/HPEC.2018.8547527},
doi = {10.1109/HPEC.2018.8547527},
timestamp = {Wed, 16 Oct 2019 14:14:52 +0200},
biburl = {https://dblp.org/rec/conf/hpec/SamsiGH0KMMRSSS18.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{DBLP:journals/pvldb/IosupHNHPMCCSAT16,
author = {Alexandru Iosup and others},
xxauthor = {Alexandru Iosup and
Tim Hegeman and
Wing Lung Ngai and
Stijn Heldens and
Arnau Prat{-}P{\'{e}}rez and
Thomas Manhardt and
Hassan Chafi and
Mihai Capota and
Narayanan Sundaram and
Michael J. Anderson and
Ilie Gabriel Tanase and
Yinglong Xia and
Lifeng Nai and
Peter A. Boncz},
title = {{LDBC Graphalytics}: {A} Benchmark for Large-Scale Graph Analysis on Parallel and Distributed Platforms},
journal = {VLDB},
volume = {9},
number = {13},
pages = {1317--1328},
year = {2016},
url = {http://www.vldb.org/pvldb/vol9/p1317-iosup.pdf},
doi = {10.14778/3007263.3007270},
timestamp = {Fri, 09 Sep 2016 17:23:24 +0200},
biburl = {http://dblp.org/rec/bib/journals/pvldb/IosupHNHPMCCSAT16},
bibsource = {dblp computer science bibliography, http://dblp.org}
}
@article{DBLP:journals/csur/AnglesABHRV17,
author = {Renzo Angles and others},
xxauthor = {Renzo Angles and
Marcelo Arenas and
Pablo Barcel{\'{o}} and
Aidan Hogan and
Juan L. Reutter and
Domagoj Vrgoc},
title = {Foundations of Modern Query Languages for Graph Databases},
journal = {{ACM} Comput. Surv.},
volume = {50},
number = {5},
pages = {68:1--68:40},
year = {2017},
url = {https://doi.org/10.1145/3104031},
doi = {10.1145/3104031},
timestamp = {Tue, 06 Nov 2018 12:50:49 +0100},
biburl = {https://dblp.org/rec/journals/csur/AnglesABHRV17.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/hpec/MattsonYMBM17,
author = {Timothy G. Mattson and others},
xxauthor = {Timothy G. Mattson and
Carl Yang and
Scott McMillan and
Aydin Bulu{\c{c}} and
Jos{\'{e}} E. Moreira},
title = {{GraphBLAS} {C} {API}: {I}deas for future versions of the specification},
booktitle = {HPEC},
xxbooktitle = {2017 {IEEE} High Performance Extreme Computing Conference, {HPEC}
2017, Waltham, MA, USA, September 12-14, 2017},
xxpages = {1--6},
publisher = {{IEEE}},
year = {2017},
url = {https://doi.org/10.1109/HPEC.2017.8091095},
doi = {10.1109/HPEC.2017.8091095},
timestamp = {Wed, 16 Oct 2019 14:14:52 +0200},
biburl = {https://dblp.org/rec/conf/hpec/MattsonYMBM17.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/sigmod/FrancisGGLLMPRS18,
author = {Nadime Francis and others},
xxauthor = {Nadime Francis and
Alastair Green and
Paolo Guagliardo and
Leonid Libkin and
Tobias Lindaaker and
Victor Marsault and
Stefan Plantikow and
Mats Rydberg and
Petra Selmer and
Andr{\'{e}}s Taylor},
title = {{Cypher}: {An} Evolving Query Language for Property Graphs},
booktitle = {SIGMOD},
pages = {1433--1445},
publisher = {{ACM}},
year = {2018},
url = {http://doi.acm.org/10.1145/3183713.3190657},
doi = {10.1145/3183713.3190657},
timestamp = {Sun, 27 May 2018 19:31:52 +0200},
biburl = {https://dblp.org/rec/bib/conf/sigmod/FrancisGGLLMPRS18},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/ipps/CailliauDGKLLO19,
author = {Pieter Cailliau and others},
xxauthor = {Pieter Cailliau and
Tim Davis and
Vijay Gadepally and
Jeremy Kepner and
Roi Lipman and
Jeffrey Lovitz and
Keren Ouaknine},
title = {{RedisGraph} {GraphBLAS} Enabled Graph Database},
booktitle = {{GrAPL} at {IPDPS}},
pages = {285--286},
publisher = {{IEEE}},
year = {2019},
url = {https://doi.org/10.1109/IPDPSW.2019.00054},
doi = {10.1109/IPDPSW.2019.00054},
timestamp = {Wed, 16 Oct 2019 14:14:51 +0200},
biburl = {https://dblp.org/rec/conf/ipps/CailliauDGKLLO19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/eurosys/JamourACK19,
author = {Fuad T. Jamour and others},
xxauthor = {Fuad T. Jamour and
Ibrahim Abdelaziz and
Yuanzhao Chen and
Panos Kalnis},
title = {Matrix Algebra Framework for Portable, Scalable and Efficient Query Engines for {RDF} Graphs},
xxbooktitle = {Proceedings of the Fourteenth EuroSys Conference 2019, Dresden, Germany,
March 25-28, 2019},
booktitle = {{EuroSys}},
pages = {27:1--27:15},
publisher = {{ACM}},
year = {2019},
url = {https://doi.org/10.1145/3302424.3303962},
doi = {10.1145/3302424.3303962},
timestamp = {Tue, 26 Nov 2019 08:38:56 +0100},
biburl = {https://dblp.org/rec/conf/eurosys/JamourACK19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/hpec/Davis18,
author = {Timothy A. Davis},
title = {Graph algorithms via {SuiteSparse:GraphBLAS}: {T}riangle counting and {K}-truss},
booktitle = {{HPEC}},
xxbooktitle = {2018 {IEEE} High Performance Extreme Computing Conference, {HPEC}
2018, Waltham, MA, USA, September 25-27, 2018},
publisher = {{IEEE}},
year = {2018},
url = {https://doi.org/10.1109/HPEC.2018.8547538},
doi = {10.1109/HPEC.2018.8547538},
timestamp = {Wed, 16 Oct 2019 14:14:52 +0200},
biburl = {https://dblp.org/rec/conf/hpec/Davis18.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{DBLP:journals/corr/BeamerAP15,
author = {Scott Beamer and others},
xxauthor = {Scott Beamer and
Krste Asanovic and
David A. Patterson},
title = {The {GAP} {B}enchmark {S}uite},
journal = {CoRR},
volume = {abs/1508.03619},
year = {2015},
url = {http://arxiv.org/abs/1508.03619},
archivePrefix = {arXiv},
eprint = {1508.03619},
timestamp = {Mon, 13 Aug 2018 16:46:47 +0200},
biburl = {https://dblp.org/rec/journals/corr/BeamerAP15.bib},
bibsource = {dblp computer science bibliography, https://dblp.org},
note = "\url{http://arxiv.org/abs/1508.03619}",
}
@article{DBLP:journals/corr/abs-1908-01407,
author = {Carl Yang and others},
xxauthor = {Carl Yang and
Aydin Bulu{\c{c}} and
John D. Owens},
title = {{GraphBLAST}: {A} High-Performance Linear Algebra-based Graph Framework on the {GPU}},
journal = {CoRR},
volume = {abs/1908.01407},
year = {2019},
url = {http://arxiv.org/abs/1908.01407},
archivePrefix = {arXiv},
eprint = {1908.01407},
timestamp = {Fri, 09 Aug 2019 12:15:56 +0200},
biburl = {https://dblp.org/rec/journals/corr/abs-1908-01407.bib},
bibsource = {dblp computer science bibliography, https://dblp.org},
note = "\url{http://arxiv.org/abs/1908.01407}",
}
@inproceedings{DBLP:conf/ipps/AzadBG15,
author = {Ariful Azad and others},
xxauthor = {Ariful Azad and
Aydin Bulu{\c{c}} and
John R. Gilbert},
title = {Parallel Triangle Counting and Enumeration Using Matrix Algebra},
booktitle = {GABB at IPDPS},
pages = {804--811},
publisher = {{IEEE} Computer Society},
year = {2015},
url = {https://doi.org/10.1109/IPDPSW.2015.75},
doi = {10.1109/IPDPSW.2015.75},
timestamp = {Wed, 16 Oct 2019 14:14:51 +0200},
biburl = {https://dblp.org/rec/conf/ipps/AzadBG15.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/ipps/LowSMP20,
author = {Tze Meng Low and others},
xxauthor = {Tze Meng Low and
Daniele G. Spampinato and
Scott McMillan and
Michel Pelletier},
title = {Linear Algebraic Louvain Method in Python},
booktitle = {GrAPL at IPDPS},
pages = {223--226},
publisher = {{IEEE}},
year = {2020},
url = {https://doi.org/10.1109/IPDPSW50202.2020.00050},
doi = {10.1109/IPDPSW50202.2020.00050},
timestamp = {Wed, 05 Aug 2020 14:05:53 +0200},
biburl = {https://dblp.org/rec/conf/ipps/LowSMP20.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/ipps/SridharBMSLM19,
author = {Upasana Sridhar and others},
xxauthor = {Upasana Sridhar and
Mark Blanco and
Rahul Mayuranath and
Daniele G. Spampinato and
Tze Meng Low and
Scott McMillan},
title = {Delta-Stepping {SSSP:} {F}rom Vertices and Edges to GraphBLAS Implementations},
booktitle = {GrAPL at IPDPS},
pages = {241--250},
publisher = {{IEEE}},
year = {2019},
url = {https://doi.org/10.1109/IPDPSW.2019.00047},
doi = {10.1109/IPDPSW.2019.00047},
timestamp = {Wed, 16 Oct 2019 14:14:51 +0200},
biburl = {https://dblp.org/rec/conf/ipps/SridharBMSLM19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/hpec/0001AK19,
author = {Timothy A. Davis and others},
xxauthor = {Timothy A. Davis and
Mohsen Aznaveh and
Scott P. Kolodziej},
title = {Write Quick, Run Fast: {S}parse Deep Neural Network in 20 Minutes of
Development Time via {S}uite{S}parse:{G}raph{BLAS}},
booktitle = {HPEC},
pages = {1--6},
publisher = {{IEEE}},
year = {2019},
url = {https://doi.org/10.1109/HPEC.2019.8916550},
doi = {10.1109/HPEC.2019.8916550},
timestamp = {Sun, 08 Dec 2019 12:54:12 +0100},
biburl = {https://dblp.org/rec/conf/hpec/0001AK19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/hpec/KepnerKMPST17,
author = {Jeremy Kepner and others},
xxauthor = {Jeremy Kepner and
Manoj Kumar and
Jos{\'{e}} E. Moreira and
Pratap Pattnaik and
Mauricio J. Serrano and
Henry M. Tufo},
title = {Enabling massive deep neural networks with the {GraphBLAS}},
booktitle = {HPEC},
pages = {1--10},
publisher = {{IEEE}},
year = {2017},
url = {https://doi.org/10.1109/HPEC.2017.8091098},
doi = {10.1109/HPEC.2017.8091098},
timestamp = {Tue, 21 Jan 2020 16:22:05 +0100},
biburl = {https://dblp.org/rec/conf/hpec/KepnerKMPST17.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{HPEC2020Contest,
title = {A {GraphBLAS} solution to the {SIGMOD} 2014 Programming Contest using multi-source {BFS}},
booktitle = {HPEC},
year = {2020},
publisher = {IEEE},
author = {M{\'a}rton Elekes and Attila Nagy and D{\'a}vid S{\'a}ndor and J{\'a}nos Benjamin Antal and Timothy A. Davis and G{\'a}bor Sz{\'a}rnyas},
}
@inproceedings{DBLP:conf/pldi/SpampinatoSL19,
author = {Daniele G. Spampinato and others},
xxauthor = {Daniele G. Spampinato and
Upasana Sridhar and
Tze Meng Low},
title = {Linear algebraic depth-first search},
booktitle = {{ARRAY} at {PLDI}},
pages = {93--104},
publisher = {{ACM}},
year = {2019},
url = {https://doi.org/10.1145/3315454.3329962},
doi = {10.1145/3315454.3329962},
timestamp = {Fri, 14 Jun 2019 11:37:28 +0200},
biburl = {https://dblp.org/rec/conf/pldi/SpampinatoSL19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/grades/AzimovG18,
author = {Rustam Azimov and
Semyon Grigorev},
title = {Context-free path querying by matrix multiplication},
booktitle = {{GRADES-NDA} at {SIGMOD}},
pages = {5:1--5:10},
publisher = {{ACM}},
year = {2018},
url = {https://doi.org/10.1145/3210259.3210264},
doi = {10.1145/3210259.3210264},
timestamp = {Wed, 21 Nov 2018 12:44:17 +0100},
biburl = {https://dblp.org/rec/conf/grades/AzimovG18.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/sigmod/TerekhovKAG20,
author = {Arseniy Terekhov and
Artyom Khoroshev and
Rustam Azimov and
Semyon Grigorev},
title = {Context-Free Path Querying with Single-Path Semantics by Matrix Multiplication},
booktitle = {{GRADES-NDA} at {SIGMOD}},
pages = {5:1--5:12},
publisher = {{ACM}},
year = {2020},
url = {https://doi.org/10.1145/3398682.3399163},
doi = {10.1145/3398682.3399163},
timestamp = {Thu, 11 Jun 2020 19:34:28 +0200},
biburl = {https://dblp.org/rec/conf/sigmod/TerekhovKAG20.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/adbis/OrachevEAG20,
author = {Egor Orachev and others},
xxauthor = {Egor Orachev and
Ilya Epelbaum and
Rustam Azimov and
Semyon Grigorev},
title = {Context-Free Path Querying by {K}ronecker Product},
booktitle = {{ADBIS}},
series = {Lecture Notes in Computer Science},
volume = {12245},
pages = {49--59},
publisher = {Springer},
year = {2020},
url = {https://doi.org/10.1007/978-3-030-54832-2_6},
doi = {10.1007/978-3-030-54832-2_6},
timestamp = {Wed, 26 Aug 2020 11:05:35 +0200},
biburl = {https://dblp.org/rec/conf/adbis/OrachevEAG20.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{DBLP:journals/pcs/AzimovG19,
author = {Rustam Azimov and
Semyon Grigorev},
title = {Path Querying with Conjunctive Grammars by Matrix Multiplication},
journal = {Programming and Computer Software},
volume = {45},
number = {7},
pages = {357--364},
year = {2019},
url = {https://doi.org/10.1134/S0361768819070041},
doi = {10.1134/S0361768819070041},
timestamp = {Wed, 18 Dec 2019 15:28:04 +0100},
biburl = {https://dblp.org/rec/journals/pcs/AzimovG19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/grades/MishinSSKNGG19,
author = {Nikita Mishin and others},
xxauthor = {Nikita Mishin and
Iaroslav Sokolov and
Egor Spirin and
Vladimir Kutuev and
Egor Nemchinov and
Sergey Gorbatyuk and
Semyon Grigorev},
title = {Evaluation of the Context-Free Path Querying Algorithm Based on Matrix Multiplication},
booktitle = {{GRADES-NDA} at {SIGMOD}},
pages = {12:1--12:5},
publisher = {{ACM}},
year = {2019},
url = {https://doi.org/10.1145/3327964.3328503},
doi = {10.1145/3327964.3328503},
timestamp = {Wed, 03 Jul 2019 13:31:00 +0200},
biburl = {https://dblp.org/rec/conf/grades/MishinSSKNGG19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/hpec/MattsonBBBDFFGGHKLLPPRSWY13,
author = {Tim Mattson and others},
xxauthor = {Tim Mattson and
David A. Bader and
Jonathan W. Berry and
Aydin Bulu{\c{c}} and
Jack J. Dongarra and
Christos Faloutsos and
John Feo and
John R. Gilbert and
Joseph Gonzalez and
Bruce Hendrickson and
Jeremy Kepner and
Charles E. Leiserson and
Andrew Lumsdaine and
David A. Padua and
Stephen Poole and
Steven P. Reinhardt and
Mike Stonebraker and
Steve Wallach and
Andrew Yoo},
title = {Standards for graph algorithm primitives},
booktitle = {HPEC},
pages = {1--2},
publisher = {{IEEE}},
year = {2013},
url = {https://doi.org/10.1109/HPEC.2013.6670338},
doi = {10.1109/HPEC.2013.6670338},
timestamp = {Tue, 05 May 2020 12:45:26 +0200},
biburl = {https://dblp.org/rec/conf/hpec/MattsonBBBDFFGGHKLLPPRSWY13.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/ipps/MoreiraKH18,
author = {Jos{\'{e}} E. Moreira and others},
xxauthor = {Jos{\'{e}} E. Moreira and
Manoj Kumar and
William P. Horn},
title = {Implementing the {GraphBLAS} {C} {API}},
booktitle = {{GrAPL} at {IPDPS}},
pages = {298--309},
publisher = {{IEEE} Computer Society},
year = {2018},
url = {https://doi.org/10.1109/IPDPSW.2018.00058},
doi = {10.1109/IPDPSW.2018.00058},
timestamp = {Tue, 21 Jan 2020 16:22:05 +0100},
biburl = {https://dblp.org/rec/conf/ipps/MoreiraKH18.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/ipps/ChamberlinZML18,
author = {Jesse Chamberlin and others},
xxauthor = {Jesse Chamberlin and
Marcin Zalewski and
Scott McMillan and
Andrew Lumsdaine},
title = {{PyGB}: {GraphBLAS} {DSL} in {P}ython with Dynamic Compilation Into Efficient {C++}},
booktitle = {{GABB} at {IPDPS}},
pages = {310--319},
publisher = {{IEEE} Computer Society},
year = {2018},
url = {https://doi.org/10.1109/IPDPSW.2018.00059},
doi = {10.1109/IPDPSW.2018.00059},
timestamp = {Wed, 16 Oct 2019 14:14:51 +0200},
biburl = {https://dblp.org/rec/conf/ipps/ChamberlinZML18.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/ipps/AzadB17a,
author = {Ariful Azad and
Aydin Bulu{\c{c}}},
title = {Towards a {GraphBLAS} Library in {C}hapel},
booktitle = {{GrAPL} at {IPDPS}},
pages = {1095--1104},
publisher = {{IEEE} Computer Society},
year = {2017},
url = {https://doi.org/10.1109/IPDPSW.2017.118},
doi = {10.1109/IPDPSW.2017.118},
timestamp = {Wed, 16 Oct 2019 14:14:51 +0200},
biburl = {https://dblp.org/rec/conf/ipps/AzadB17a.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/ipps/BulucMMMY17,
author = {Aydin Bulu{\c{c}} and others},
xxauthor = {Aydin Bulu{\c{c}} and
Tim Mattson and
Scott McMillan and
Jos{\'{e}} E. Moreira and
Carl Yang},
title = {Design of the {GraphBLAS} {API} for {C}},
booktitle = {{GrAPL} at {IPDPS}},
pages = {643--652},
publisher = {{IEEE} Computer Society},
year = {2017},
url = {https://doi.org/10.1109/IPDPSW.2017.117},
doi = {10.1109/IPDPSW.2017.117},
timestamp = {Wed, 16 Oct 2019 14:14:51 +0200},
biburl = {https://dblp.org/rec/conf/ipps/BulucMMMY17.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/iccS/KepnerBBGMM15,
author = {Jeremy Kepner and others},
xxauthor = {Jeremy Kepner and
David A. Bader and
Aydin Bulu{\c{c}} and
John R. Gilbert and
Timothy G. Mattson and
Henning Meyerhenke},
title = {Graphs, Matrices, and the {GraphBLAS}: {S}even Good Reasons},
booktitle = {{ICCS}},
series = {Procedia Computer Science},
volume = {51},
pages = {2453--2462},
publisher = {Elsevier},
year = {2015},
url = {https://doi.org/10.1016/j.procs.2015.05.353},
doi = {10.1016/j.procs.2015.05.353},
timestamp = {Sat, 19 Oct 2019 20:13:23 +0200},
biburl = {https://dblp.org/rec/conf/iccS/KepnerBBGMM15.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/ipps/BrockBMMM20,
author = {Benjamin Brock and others},
xxauthor = {Benjamin Brock and
Aydin Bulu{\c{c}} and
Timothy G. Mattson and
Scott McMillan and
Jos{\'{e}} E. Moreira},
title = {A Roadmap for the {GraphBLAS} {C++} {API}},
booktitle = {{GrAPL} at {IPDPS}},
pages = {219--222},
publisher = {{IEEE}},
year = {2020},
url = {https://doi.org/10.1109/IPDPSW50202.2020.00049},
doi = {10.1109/IPDPSW50202.2020.00049},
timestamp = {Wed, 05 Aug 2020 14:05:53 +0200},
biburl = {https://dblp.org/rec/conf/ipps/BrockBMMM20.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/ipps/BrockBMMMPSS20,
author = {Benjamin Brock and others},
xxauthor = {Benjamin Brock and
Aydin Bulu{\c{c}} and
Timothy G. Mattson and
Scott McMillan and
Jos{\'{e}} E. Moreira and
Roger Pearce and
Oguz Selvitopi and
Trevor Steil},
title = {Considerations for a Distributed {GraphBLAS} {API}},
booktitle = {{GrAPL} at {IPDPS}},
pages = {215--218},
publisher = {{IEEE}},
year = {2020},
url = {https://doi.org/10.1109/IPDPSW50202.2020.00048},
doi = {10.1109/IPDPSW50202.2020.00048},
timestamp = {Wed, 05 Aug 2020 14:05:53 +0200},
biburl = {https://dblp.org/rec/conf/ipps/BrockBMMMPSS20.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DBLP:conf/ipps/KepnerDBABBGHH020,
author = {Jeremy Kepner and others},
xxauthor = {Jeremy Kepner and
Tim Davis and
Chansup Byun and
William Arcand and
David Bestor and
William Bergeron and
Vijay Gadepally and
Matthew Hubbell and
Michael Houle and
Michael Jones and
Anna Klein and
Peter Michaleas and
Lauren Milechin and
Julie Mullen and
Andrew Prout and
Antonio Rosa and
Siddharth Samsi and
Charles Yee and
Albert Reuther},
title = {75,000,000,000 Streaming Inserts/Second Using Hierarchical Hypersparse
{GraphBLAS} Matrices},
booktitle = {{GrAPL} at {IPDPS}},
pages = {207--210},