forked from wangzeke/graph-database-accel-survey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
refs.bib
1294 lines (1149 loc) · 47 KB
/
refs.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
@inproceedings{charousset2014caf,
title={Caf-the c++ actor framework for scalable and resource-efficient applications},
author={Charousset, Dominik and Hiesgen, Raphael and Schmidt, Thomas C},
booktitle={Proceedings of the 4th International Workshop on Programming based on Actors Agents
\& Decentralized Control},
pages={15--28},
year={2014},
organization={ACM}
}
@inproceedings{hiesgen2015manyfold,
title={Manyfold actors: extending the C++ actor framework to heterogeneous many-core machines
using OpenCL},
author={Hiesgen, Raphael and Charousset, Dominik and Schmidt, Thomas C},
booktitle={Proceedings of the 5th International Workshop on Programming Based on Actors,
Agents, and Decentralized Control},
pages={45--56},
year={2015},
organization={ACM}
}
@article{wu2014q100,
title={Q100: the architecture and design of a database processing unit},
author={Wu, Lisa and Lottarini, Andrea and Paine, Timothy K and Kim, Martha A and Ross, Kenneth
A},
journal={ACM SIGPLAN Notices},
volume={49},
number={4},
pages={255--268},
year={2014},
publisher={ACM}
}
@article{wu2015q100,
title={The Q100 Database Processing Unit},
author={Wu, Lisa and Lottarini, Andrea and Paine, Timothy K and Kim, Martha A and Ross, Kenneth
A},
journal={IEEE Micro},
volume={35},
number={3},
pages={34--46},
year={2015},
publisher={IEEE}
}
@inproceedings{chung2013linqits,
title={Linqits: Big data on little clients},
author={Chung, Eric S and Davis, John D and Lee, Jaewon},
booktitle={ACM SIGARCH Computer Architecture News},
volume={41},
number={3},
pages={261--272},
year={2013},
organization={ACM}
}
@article{guotowards,
title={Towards Adaptive Resource Allocation for Database Workloads},
author={Guo, Cong and Karsten, Martin}
}
@inproceedings{soundararajan2009dynamic,
title={Dynamic Resource Allocation for Database Servers Running on Virtual Storage.},
author={Soundararajan, Gokul and Lupei, Daniel and Ghanbari, Saeed and Popescu, Adrian Daniel and Chen, Jin and Amza, Cristiana},
booktitle={FAST},
volume={9},
pages={71--84},
year={2009}
}
@inproceedings{sadoghi2012multi,
title={Multi-query stream processing on fpgas},
author={Sadoghi, Mohammad and Javed, Rija and Tarafdar, Naif and Singh, Harsh and Palaniappan, Rohan and Jacobsen, Hans-Arno},
booktitle={2012 IEEE 28th International Conference on Data Engineering},
pages={1229--1232},
year={2012},
organization={IEEE}
}
@article{chen2015accelerating,
title={Accelerating Equi-Join on a CPU-FPGA Heterogeneous Platform},
author={Chen, Ren and Prasanna, Viktor K}
}
@article{papadimitriou2011performance,
title={Performance of aprtial reconfiguration in FPGA systems: A survey and a cost model},
author={Papadimitriou, Kyprianos and Dollas, Apostolos and Hauck, Scott},
journal={ACM Transactions on Reconfigurable Technology and Systems (TRETS)},
volume={4},
number={4},
pages={36},
year={2011},
publisher={ACM}
}
@article{zhang2013omnidb,
title={Omnidb: Towards portable and efficient query processing on parallel cpu/gpu architectures},
author={Zhang, Shuhao and He, Jiong and He, Bingsheng and Lu, Mian},
journal={Proceedings of the VLDB Endowment},
volume={6},
number={12},
pages={1374--1377},
year={2013},
publisher={VLDB Endowment}
}
@inproceedings{nurvitadhi2014graphgen,
title={GraphGen: An FPGA framework for vertex-centric graph computation},
author={Nurvitadhi, Eriko and Weisz, Gabriel and Wang, Yu and Hurkat, Skand and Nguyen, Marie and Hoe, James C and Mart{\'\i}nez, Jos{\'e} F and Guestrin, Carlos},
booktitle={Field-Programmable Custom Computing Machines (FCCM), 2014 IEEE 22nd Annual International Symposium on},
pages={25--28},
year={2014},
organization={IEEE}
}
@inproceedings{ozdal2016energy,
title={Energy efficient architecture for graph analytics accelerators},
author={Ozdal, Muhammet Mustafa and Yesil, Serif and Kim, Taemin and Ayupov, Andrey and Greth, John and Burns, Steven and Ozturk, Ozcan},
booktitle={Computer Architecture (ISCA), 2016 ACM/IEEE 43rd Annual International Symposium on},
pages={166--177},
year={2016},
organization={IEEE}
}
@article{hamgra2016graphicionado,
title={Graphicionado: A High-Performance and Energy-Efficient Accelerator for Graph Analytics},
author={Ham, Tae Jun and Wu, Lisa and Sundaram, Narayanan and Satish, Nadathur and Martonosi, Margaret}
}
@article{sundaram2015graphmat,
title={GraphMat: High performance graph analytics made productive},
author={Sundaram, Narayanan and Satish, Nadathur and Patwary, Md Mostofa Ali and Dulloor, Subramanya R and Anderson, Michael J and Vadlamudi, Satya Gautam and Das, Dipankar and Dubey, Pradeep},
journal={Proceedings of the VLDB Endowment},
volume={8},
number={11},
pages={1214--1225},
year={2015},
publisher={VLDB Endowment}
}
@article{sukhwani2015hardware,
title={A hardware/software approach for database query acceleration with fpgas},
author={Sukhwani, Bharat and Thoennes, Mathew and Min, Hong and Dube, Parijat and Brezzo, Bernard and Asaad, Sameh and Dillenberger, Donna},
journal={International Journal of Parallel Programming},
volume={43},
number={6},
pages={1129--1159},
year={2015},
publisher={Springer}
}
@article{vaquero2013xdgp,
title={xDGP: A dynamic graph processing system with adaptive partitioning},
author={Vaquero, Luis and Cuadrado, F{\'e}lix and Logothetis, Dionysios and Martella, Claudio},
journal={arXiv preprint arXiv:1309.1049},
year={2013}
}
@article{mccune2015thinking,
title={Thinking like a vertex: a survey of vertex-centric frameworks for large-scale distributed graph processing},
author={McCune, Robert Ryan and Weninger, Tim and Madey, Greg},
journal={ACM Computing Surveys (CSUR)},
volume={48},
number={2},
pages={25},
year={2015},
publisher={ACM}
}
@inproceedings{gonzalez2014graphx,
title={Graphx: Graph processing in a distributed dataflow framework},
author={Gonzalez, Joseph E and Xin, Reynold S and Dave, Ankur and Crankshaw, Daniel and Franklin, Michael J and Stoica, Ion},
booktitle={11th USENIX Symposium on Operating Systems Design and Implementation (OSDI 14)},
pages={599--613},
year={2014}
}
@inproceedings{salihoglu2013gps,
title={GPS: a graph processing system},
author={Salihoglu, Semih and Widom, Jennifer},
booktitle={Proceedings of the 25th International Conference on Scientific and Statistical Database Management},
pages={22},
year={2013},
organization={ACM}
}
@inproceedings{malewicz2010pregel,
title={Pregel: a system for large-scale graph processing},
author={Malewicz, Grzegorz and Austern, Matthew H and Bik, Aart JC and Dehnert, James C and Horn, Ilan and Leiser, Naty and Czajkowski, Grzegorz},
booktitle={Proceedings of the 2010 ACM SIGMOD International Conference on Management of data},
pages={135--146},
year={2010},
organization={ACM}
}
@inproceedings{kyrola2012graphchi,
title={GraphChi: large-scale graph computation on just a PC},
author={Kyrola, Aapo and Blelloch, Guy and Guestrin, Carlos},
booktitle={Presented as part of the 10th USENIX Symposium on Operating Systems Design and Implementation (OSDI 12)},
pages={31--46},
year={2012}
}
@inproceedings{dennl2012fly,
title={On-the-fly composition of FPGA-based SQL query accelerators using a partially reconfigurable module library},
author={Dennl, Christopher and Ziener, Daniel and Teich, Jurgen},
booktitle={Field-Programmable Custom Computing Machines (FCCM), 2012 IEEE 20th Annual International Symposium on},
pages={45--52},
year={2012},
organization={IEEE}
}
@article{zhou2015graph,
title={Graph compression},
author={Zhou, Fang},
journal={Department of Computer Science and Helsinki Institute for Information Technology HIIT},
pages={1--12},
year={2015}
}
@inproceedings{halstead2015fpga,
title={FPGA-based Multithreading for In-Memory Hash Joins.},
author={Halstead, Robert J and Absalyamov, Ildar and Najjar, Walid A and Tsotras, Vassilis J},
booktitle={CIDR},
year={2015}
}
@inproceedings{wang2015study,
title={A study of data partitioning on OpenCL-based FPGAs},
author={Wang, Zeke and He, Bingsheng and Zhang, Wei},
booktitle={2015 25th International Conference on Field Programmable Logic and Applications (FPL)},
pages={1--8},
year={2015},
organization={IEEE}
}
@INPROCEEDINGS{bondhugula2006parallel-APSP,
author={U. Bondhugula and A. Devulapalli and J. Fernando and P. Wyckoff and P. Sadayappan},
booktitle={Proceedings 20th IEEE International Parallel Distributed Processing Symposium},
title={Parallel FPGA-based all-pairs shortest-paths in a directed graph},
year={2006},
pages={10 pp.-},
keywords={directed graphs;field programmable gate arrays;parallel algorithms;Cray XD1 processor;Floyd-Warshall algorithm;VLSI technology;all-pair shortest-path problem;bioinformatics application;directed graph;field programmable gate array;high performance computing;parallel FPGA design;parallel computing;very large scale integration;Algorithm design and analysis;Application software;Bonding;Design optimization;Field programmable gate arrays;High performance
computing;Parallel processing;Signal processing algorithms;Supercomputers;Very large scale integration},
doi={10.1109/IPDPS.2006.1639347},
ISSN={1530-2075},
month={April},
}
@INPROCEEDINGS{abdolrashidi2016continual,
author={A. Abdolrashidi and L. Ramaswamy},
booktitle={2016 IEEE International Congress on Big Data (BigData Congress)},
title={Continual and Cost-Effective Partitioning of Dynamic Graphs for Optimizing Big Graph Processing Systems},
year={2016},
pages={18-25},
keywords={Distributed Vertex-Centric Graph Processing;Graph Partitioning;Performance Evaluation;Time-Evolving Graphs},
doi={10.1109/BigDataCongress.2016.12},
month={June},
}
@inproceedings{dai2016fpgp,
author = {Dai, Guohao and Chi, Yuze and Wang, Yu and Yang, Huazhong},
title = {FPGP: Graph Processing Framework on FPGA A Case Study of Breadth-First Search},
booktitle = {Proceedings of the 2016 ACM/SIGDA International Symposium on Field-Programmable Gate Arrays},
series = {FPGA '16},
year = {2016},
isbn = {978-1-4503-3856-1},
location = {Monterey, California, USA},
pages = {105--110},
numpages = {6},
url = {http://doi.acm.org/10.1145/2847263.2847339},
doi = {10.1145/2847263.2847339},
acmid = {2847339},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {fpga framework, large scale graph processing},
}
@INPROCEEDINGS{sadogi2012multi-query,
author={M. Sadoghi and R. Javed and N. Tarafdar and H. Singh and R. Palaniappan and H. A. Jacobsen},
booktitle={2012 IEEE 28th International Conference on Data Engineering},
title={Multi-query Stream Processing on FPGAs},
year={2012},
pages={1229-1232},
keywords={field programmable gate arrays;logic design;query processing;FPGA;algorithmic trading;complex event processing;high-frequency event streams;line-rate multiquery processing;low-level logic design;multiquery event stream platform;multiquery stream processing;parallelism;pipelining;real-time data analytics;reconfigurable hardware;targeted advertisement;Algebra;Bandwidth;Field programmable gate arrays;Hardware;Hardware design languages;Parallel processing;Semantics},
doi={10.1109/ICDE.2012.39},
ISSN={1063-6382},
month={April},
}
@INPROCEEDINGS{engelhardt2016gravf,
author={N. Engelhardt and H. K. H. So},
booktitle={2016 26th International Conference on Field Programmable Logic and Applications (FPL)},
title={GraVF: A vertex-centric distributed graph processing framework on FPGAs},
year={2016},
pages={1-4},
keywords={Algorithm design and analysis;Computational modeling;Computer architecture;Field programmable gate arrays;Hardware;Kernel;Programming},
doi={10.1109/FPL.2016.7577360},
month={Aug},
}
@article{sparsh2012survey,
author = {Mittal, Sparsh},
title = {A Survey of Architectural Techniques for DRAM Power Management},
journal = {Int. J. High Perform. Syst. Archit.},
issue_date = {December 2012},
volume = {4},
number = {2},
month = dec,
year = {2012},
issn = {1751-6528},
pages = {110--119},
numpages = {10},
url = {http://dx.doi.org/10.1504/IJHPSA.2012.050990},
doi = {10.1504/IJHPSA.2012.050990},
acmid = {2421513},
publisher = {Inderscience Publishers},
address = {Inderscience Publishers, Geneva, SWITZERLAND},
}
@ARTICLE{zhong2014medusa,
author={J. Zhong and B. He},
journal={IEEE Transactions on Parallel and Distributed Systems},
title={Medusa: Simplified Graph Processing on GPUs},
year={2014},
volume={25},
number={6},
pages={1543-1552},
keywords={C++ language;application program interfaces;data structures;graph theory;graphics processing units;optimisation;source code (software);API;GPGPU programs;GPU graph operations;Medusa;data structures;graph processing;graph-centric optimizations;graphics processing unit;runtime system;sequential C-C++ code;source code;Algorithm design and analysis;Data structures;Graphics processing units;Memory management;Optimization;Parallel processing;Programming;GPGPU;GPU
programming;graph processing;runtime framework},
doi={10.1109/TPDS.2013.111},
ISSN={1045-9219},
month={June},
}
@INPROCEEDINGS{bordawekar2016accelerating,
author={R. R. Bordawekar and M. Sadoghi},
booktitle={2016 IEEE 32nd International Conference on Data Engineering (ICDE)},
title={Accelerating database workloads by software-hardware-system co-design},
year={2016},
pages={1428-1431},
keywords={SQL;business data processing;field programmable gate arrays;graphics processing units;hardware-software codesign;query processing;relational databases;FPGA;GPU;NoSQL database;data stream management system;database workload acceleration;enterprise data management workload;field-programmable gate array;graphics processing unit;query execution pipeline;relational database;software-hardware-system codesign;system-level
characterization;Acceleration;Computer architecture;Databases;Field programmable gate arrays;Graphics processing units;Hardware;Programming},
doi={10.1109/ICDE.2016.7498362},
month={May},
}
@inproceedings{Guo2015TowardsAR,
title={Towards Adaptive Resource Allocation for Database Workloads},
author={Cong Guo and Martin Karsten},
booktitle={ADMS@VLDB},
year={2015}
}
@inproceedings{chen1996efficient,
author = {Chen, S. and Reif, J. H.},
title = {Efficient Lossless Compression of Trees and Graphs},
booktitle = {Proceedings of the Conference on Data Compression},
series = {DCC '96},
year = {1996},
isbn = {0-8186-7358-3},
pages = {428--},
url = {http://dl.acm.org/citation.cfm?id=789084.789454},
acmid = {789454},
publisher = {IEEE Computer Society},
address = {Washington, DC, USA},
}
@inproceedings{paul2016gpl,
author = {Paul, Johns and He, Jiong and He, Bingsheng},
title = {GPL: A GPU-based Pipelined Query Processing Engine},
booktitle = {Proceedings of the 2016 International Conference on Management of Data},
series = {SIGMOD '16},
year = {2016},
isbn = {978-1-4503-3531-7},
location = {San Francisco, California, USA},
pages = {1935--1950},
numpages = {16},
url = {http://doi.acm.org/10.1145/2882903.2915224},
doi = {10.1145/2882903.2915224},
acmid = {2915224},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {KBE, channel, pipelined execution, tiling},
}
@inproceedings{casper2014hardware,
author = {Casper, Jared and Olukotun, Kunle},
title = {Hardware Acceleration of Database Operations},
booktitle = {Proceedings of the 2014 ACM/SIGDA International Symposium on Field-programmable Gate Arrays},
series = {FPGA '14},
year = {2014},
isbn = {978-1-4503-2671-1},
location = {Monterey, California, USA},
pages = {151--160},
numpages = {10},
url = {http://doi.acm.org/10.1145/2554688.2554787},
doi = {10.1145/2554688.2554787},
acmid = {2554787},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {database, fpga, hardware acceleration, join, sort},
}
@inproceedings{Lang2016DataBH,
title={Data Blocks: Hybrid OLTP and OLAP on Compressed Storage using both Vectorization and Compilation},
author={Harald Lang and Tobias M\"{u}hlbauer and Florian Funke and Peter A. Boncz and Thomas Neumann and Alfons Kemper},
booktitle={SIGMOD Conference},
year={2016}
}
@inbook{Beckmann2013,
author={Beckmann, Andreas and Meyer, Ulrich and Veith, David},
editor={Bodlaender, Hans L.and Italiano, Giuseppe F.},
title={An Implementation of I/O-Efficient Dynamic Breadth-First Search Using Level-Aligned Hierarchical Clustering},
bookTitle={Algorithms -- ESA 2013: 21st Annual European Symposium, Sophia Antipolis, France, September 2-4, 2013. Proceedings},
year={2013},
publisher={Springer Berlin Heidelberg},
address={Berlin, Heidelberg},
pages={121--132},
isbn={978-3-642-40450-4},
doi={10.1007/978-3-642-40450-4_11},
url={http://dx.doi.org/10.1007/978-3-642-40450-4_11}
}
@article{maneth2015survey,
author = {Sebastian Maneth and Fabian Peternek},
title = {A Survey on Methods and Systems for Graph Compression},
journal = {CoRR},
volume = {abs/1504.00616},
year = {2015},
url = {http://arxiv.org/abs/1504.00616},
timestamp = {Sat, 02 May 2015 17:50:32 +0200},
biburl = {http://dblp.uni-trier.de/rec/bib/journals/corr/ManethP15},
bibsource = {dblp computer science bibliography, http://dblp.org}
}
@article{He2011high,
author = {He, Bingsheng and Yu, Jeffrey Xu},
title = {High-throughput Transaction Executions on Graphics Processors},
journal = {Proc. VLDB Endow.},
issue_date = {February 2011},
volume = {4},
number = {5},
month = feb,
year = {2011},
issn = {2150-8097},
pages = {314--325},
numpages = {12},
url = {http://dx.doi.org/10.14778/1952376.1952381},
doi = {10.14778/1952376.1952381},
acmid = {1952381},
publisher = {VLDB Endowment},
}
@article{Mittal2016survey,
author = {Mittal, Sparsh and Vetter, Jeffrey S.},
title = {A Survey Of Architectural Approaches for Data Compression in Cache and Main Memory Systems},
journal = {IEEE Trans. Parallel Distrib. Syst.},
issue_date = {May 2016},
volume = {27},
number = {5},
month = may,
year = {2016},
issn = {1045-9219},
pages = {1524--1536},
numpages = {13},
url = {http://dx.doi.org/10.1109/TPDS.2015.2435788},
doi = {10.1109/TPDS.2015.2435788},
acmid = {2927579},
publisher = {IEEE Press},
address = {Piscataway, NJ, USA},
}
@article{Sukhwani2014database,
author = {Bharat Sukhwani, and Hong Min, and Mathew Thoennes, and Parijat Dube, and Bernard Brezzo, and Sameh Asaad, and Donna Eng Dillenberger, },
title = {Database Analytics: A Reconfigurable-Computing Approach},
journal = {IEEE Micro},
volume = {34},
number = {1},
issn = {0272-1732},
year = {2014},
pages = {19-29},
doi = {doi.ieeecomputersociety.org/10.1109/MM.2013.107},
publisher = {IEEE Computer Society},
address = {Los Alamitos, CA, USA},
}
@inproceedings{Chen2016study,
author = {Chen, Shuang and Jiang, Shunning and He, Bingsheng and Tang, Xueyan},
title = {A Study of Sorting Algorithms on Approximate Memory},
booktitle = {Proceedings of the 2016 International Conference on Management of Data},
series = {SIGMOD '16},
year = {2016},
isbn = {978-1-4503-3531-7},
location = {San Francisco, California, USA},
pages = {647--662},
numpages = {16},
url = {http://doi.acm.org/10.1145/2882903.2882908},
doi = {10.1145/2882903.2882908},
acmid = {2882908},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {approximate storage, database, hybrid storage, phase change memory, sorting algorithms},
}
@inproceedings{Wang2016accelerating,
author = {Wang, Zeke and Cheah, Huiyan and Paul, Johns and He, Bingsheng and Zhang, Wei},
title = {Accelerating Database Query Processing on OpenCL-based FPGAs (Abstract Only)},
booktitle = {Proceedings of the 2016 ACM/SIGDA International Symposium on Field-Programmable Gate Arrays},
series = {FPGA '16},
year = {2016},
isbn = {978-1-4503-3856-1},
location = {Monterey, California, USA},
pages = {274--274},
numpages = {1},
url = {http://doi.acm.org/10.1145/2847263.2847295},
doi = {10.1145/2847263.2847295},
acmid = {2847295},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {fpga, opencl, query processing},
}
@INPROCEEDINGS{quoc2014automated,
author={C. Pham-Quoc and Z. Al-Ars and K. Bertels},
booktitle={Parallel Distributed Processing Symposium Workshops (IPDPSW), 2014 IEEE International},
title={Automated Hybrid Interconnect Design for FPGA Accelerators Using Data Communication Profiling},
year={2014},
pages={151-160},
keywords={data communication;field programmable gate arrays;interconnections;network-on-chip;shared memory systems;FPGA bus-based accelerator system;NoC;adaptive mapping function;automated hybrid interconnect design;communication behavior;custom interconnect design algorithm;data communication profiling;energy reduction;kernels;quantitative communication profiling;shared local memory solution;Algorithm design and analysis;Computer architecture;DH-HEMTs;Data
communication;Field programmable gate arrays;Kernel;Optimization;FPGA-based accelerator;communication profiling;custom interconnect},
doi={10.1109/IPDPSW.2014.21},
month={May},
}
@inproceedings{Castellana2015HLS,
author = {Castellana, Vito Giovanni and Minutoli, Marco and Morari, Alessandro and Tumeo, Antonino and Lattuada, Marco and Ferrandi, Fabrizio},
title = {High Level Synthesis of RDF Queries for Graph Analytics},
booktitle = {Proceedings of the IEEE/ACM International Conference on Computer-Aided Design},
series = {ICCAD '15},
year = {2015},
isbn = {978-1-4673-8389-9},
location = {Austin, TX, USA},
pages = {323--330},
numpages = {8},
url = {http://dl.acm.org/citation.cfm?id=2840819.2840865},
acmid = {2840865},
publisher = {IEEE Press},
address = {Piscataway, NJ, USA},
}
@inproceedings{Aridhi2016bladyg,
author = {Aridhi, Sabeur and Montresor, Alberto and Velegrakis, Yannis},
title = {BLADYG: A Novel Block-Centric Framework for the Analysis of Large Dynamic Graphs},
booktitle = {Proceedings of the ACM Workshop on High Performance Graph Processing},
series = {HPGP '16},
year = {2016},
isbn = {978-1-4503-4350-3},
location = {Kyoto, Japan},
pages = {39--42},
numpages = {4},
url = {http://doi.acm.org/10.1145/2915516.2915525},
doi = {10.1145/2915516.2915525},
acmid = {2915525},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {akka framework, distributed graph processing, dynamic graphs},
}
@article{Chi2015NXgraph,
author = {Yuze Chi and Guohao Dai and Yu Wang and Guangyu Sun and Guoliang Li and Huazhong Yang},
title = {NXgraph: An Efficient Graph Processing System on a Single Machine},
journal = {CoRR},
volume = {abs/1510.06916},
year = {2015},
url = {http://arxiv.org/abs/1510.06916},
timestamp = {Wed, 03 Aug 2016 14:57:48 +0200},
biburl = {http://dblp.uni-trier.de/rec/bib/journals/corr/ChiDWSLY15},
bibsource = {dblp computer science bibliography, http://dblp.org}
}
@inproceedings{Ahn2015pim,
author = {Ahn, Junwhan and Hong, Sungpack and Yoo, Sungjoo and Mutlu, Onur and Choi, Kiyoung},
title = {A Scalable Processing-in-memory Accelerator for Parallel Graph Processing},
booktitle = {Proceedings of the 42Nd Annual International Symposium on Computer Architecture},
series = {ISCA '15},
year = {2015},
isbn = {978-1-4503-3402-0},
location = {Portland, Oregon},
pages = {105--117},
numpages = {13},
url = {http://doi.acm.org/10.1145/2749469.2750386},
doi = {10.1145/2749469.2750386},
acmid = {2750386},
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{sengupta2016graphin,
title={Graphin: An online high performance incremental graph processing framework},
author={Sengupta, Dipanjan and Sundaram, Narayanan and Zhu, Xia and Willke, Theodore L and Young, Jeffrey and Wolf, Matthew and Schwan, Karsten},
booktitle={European Conference on Parallel Processing},
pages={319--333},
year={2016},
organization={Springer}
}
@inproceedings{niu2015eureca,
title={EURECA: On-chip configuration generation for effective dynamic data access},
author={Niu, Xinyu and Luk, Wayne and Wang, Yu},
booktitle={Proceedings of the 2015 ACM/SIGDA International Symposium on Field-Programmable Gate Arrays},
pages={74--83},
year={2015},
organization={ACM}
}
@article{xirogiannopoulos2015graphgen,
title={GraphGen: exploring interesting graphs in relational data},
author={Xirogiannopoulos, Konstantinos and Khurana, Udayan and Deshpande, Amol},
journal={Proceedings of the VLDB Endowment},
volume={8},
number={12},
pages={2032--2035},
year={2015},
publisher={VLDB Endowment}
}
@inproceedings{khayyat2013mizan,
title={Mizan: a system for dynamic load balancing in large-scale graph processing},
author={Khayyat, Zuhair and Awara, Karim and Alonazi, Amani and Jamjoom, Hani and Williams, Dan and Kalnis, Panos},
booktitle={Proceedings of the 8th ACM European Conference on Computer Systems},
pages={169--182},
year={2013},
organization={ACM}
}
@article{doekemeijer2014survey,
title={A survey of parallel graph processing frameworks},
author={Doekemeijer, Niels and Varbanescu, Ana Lucia},
journal={Delft University of Technology},
year={2014}
}
@article{steinbauer2016dynamograph-journal,
title={DynamoGraph: extending the Pregel paradigm for large-scale temporal graph processing},
author={Steinbauer, Matthias and Anderst-Kotsis, Gabriele},
journal={International Journal of Grid and Utility Computing},
volume={7},
number={2},
pages={141--151},
year={2016},
publisher={Inderscience Publishers (IEL)}
}
@inproceedings{steinbauer2016dynamograph-conf,
title={DynamoGraph: A Distributed System for Large-scale, Temporal Graph Processing, its Implementation and First Observations},
author={Steinbauer, Matthias and Anderst-Kotsis, Gabriele},
booktitle={Proceedings of the 25th International Conference Companion on World Wide Web},
pages={861--866},
year={2016},
organization={International World Wide Web Conferences Steering Committee}
}
@inproceedings{Iyer2016time-evolving,
author = {Iyer, Anand Padmanabha and Li, Li Erran and Das, Tathagata and Stoica, Ion},
title = {Time-evolving Graph Processing at Scale},
booktitle = {Proceedings of the Fourth International Workshop on Graph Data Management Experiences and Systems},
series = {GRADES '16},
year = {2016},
isbn = {978-1-4503-4780-8},
location = {Redwood Shores, California},
pages = {5:1--5:6},
articleno = {5},
numpages = {6},
url = {http://doi.acm.org/10.1145/2960414.2960419},
doi = {10.1145/2960414.2960419},
acmid = {2960419},
publisher = {ACM},
address = {New York, NY, USA},
}
@article{Shun2013ligra,
author = {Shun, Julian and Blelloch, Guy E.},
title = {Ligra: A Lightweight Graph Processing Framework for Shared Memory},
journal = {SIGPLAN Not.},
issue_date = {August 2013},
volume = {48},
number = {8},
month = feb,
year = {2013},
issn = {0362-1340},
pages = {135--146},
numpages = {12},
url = {http://doi.acm.org/10.1145/2517327.2442530},
doi = {10.1145/2517327.2442530},
acmid = {2442530},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {graph algorithms, parallel programming, shared memory},
}
@inproceedings{Shun2015ligra+,
author = {Shun, Julian and Dhulipala, Laxman and Blelloch, Guy E.},
title = {Smaller and Faster: Parallel Processing of Compressed Graphs with Ligra+},
booktitle = {Proceedings of the 2015 Data Compression Conference},
series = {DCC '15},
year = {2015},
isbn = {978-1-4799-8430-5},
pages = {403--412},
numpages = {10},
url = {http://dx.doi.org/10.1109/DCC.2015.8},
doi = {10.1109/DCC.2015.8},
acmid = {2860198},
publisher = {IEEE Computer Society},
address = {Washington, DC, USA},
keywords = {Graph compression, Parallel algorithms},
}
@article{Shun2016parallel,
author = {Julian Shun and
Farbod Roosta{-}Khorasani and
Kimon Fountoulakis and
Michael W. Mahoney},
title = {Parallel Local Graph Clustering},
journal = {CoRR},
volume = {abs/1604.07515},
year = {2016},
url = {http://arxiv.org/abs/1604.07515},
timestamp = {Mon, 02 May 2016 18:22:52 +0200},
biburl =
{http://dblp.uni-trier.de/rec/bib/journals/corr/ShunRFM16},
bibsource = {dblp computer science bibliography,
http://dblp.org}
}
@inproceedings{wang2016gunrock,
title={Gunrock: A high-performance graph processing library on the GPU},
author={Wang, Yangzihao and Davidson, Andrew and Pan, Yuechao and Wu,
Yuduo and Riffel, Andy and Owens, John D},
booktitle={Proceedings of the 21st ACM SIGPLAN Symposium on Principles
and Practice of Parallel Programming},
pages={11},
year={2016},
organization={ACM}
}
@inproceedings{Davidson2014work-efficient,
author = {Davidson, Andrew and Baxter, Sean and Garland, Michael and Owens,
John D.},
title = {Work-Efficient Parallel GPU Methods for Single-Source Shortest
Paths},
booktitle = {Proceedings of the 2014 IEEE 28th International Parallel and
Distributed Processing Symposium},
series = {IPDPS '14},
year = {2014},
isbn = {978-1-4799-3800-1},
pages = {349--359},
numpages = {11},
url = {http://dx.doi.org/10.1109/IPDPS.2014.45},
doi = {10.1109/IPDPS.2014.45},
acmid = {2650649},
publisher = {IEEE Computer Society},
address = {Washington, DC, USA},
keywords = {GPU computing, graph traversal, single-source
shortest paths, sparse graphs},
}
@article{singh2016modified,
title={Modified Dijkstra’s Algorithm for Dense Graphs on GPU using CUDA},
author={Singh, Dhirendra Pratap and Khare, Nilay},
journal={Indian Journal of Science and Technology},
volume={9},
number={33},
year={2016}
}
@article{singh2016efficient,
title={Efficient Parallel Implementation of Single Source Shortest Path
Algorithm on GPU Using CUDA},
author={Singh, Dhirendra Pratap and Khare, Nilay and Rasool, Akhtar},
journal={International Journal of Applied Engineering Research},
volume={11},
number={4},
pages={2560--2567},
year={2016}
}
@article{delling2013phast,
title={Phast: Hardware-accelerated shortest path trees},
author={Delling, Daniel and Goldberg, Andrew V and Nowatzyk, Andreas and
Werneck, Renato F},
journal={Journal of Parallel and Distributed Computing},
volume={73},
number={7},
pages={940--952},
year={2013},
publisher={Elsevier}
}
@article{meyer2003delta,
title={$\Delta$-stepping: a parallelizable shortest path algorithm},
author={Meyer, Ulrich and Sanders, Peter},
journal={Journal of Algorithms},
volume={49},
number={1},
pages={114--152},
year={2003},
publisher={Elsevier}
}
@inproceedings{merrill2012scalable,
title={Scalable GPU graph traversal},
author={Merrill, Duane and Garland, Michael and Grimshaw, Andrew},
booktitle={ACM SIGPLAN Notices},
volume={47},
number={8},
pages={117--128},
year={2012},
organization={ACM}
}
@ARTICLE{Castellana2015in-memory,
author={V. G. Castellana and A. Morari and J. Weaver and A. Tumeo and D.
Haglin and O. Villa and J. Feo},
journal={Computer},
title={In-Memory Graph Databases for Web-Scale Data},
year={2015},
volume={48},
number={3},
pages={24-35},
keywords={Internet;database management systems;graph theory;pattern
clustering;Web-scale data;commodity clusters;graph-based
methods;heterogeneous data;inmemory graph databases;scalable
resource description framework databases;software stack;Algorithm
design and analysis;Clustering algorithms;Data structures;Pattern
matching;Resource description framework;Resource management;Software
development;RDF databases;SPARQL;big data;graph
databases;high-performance computing;multithreading},
doi={10.1109/MC.2015.74},
ISSN={0018-9162},
month={Mar},
}
@inproceedings{zeng2013distributed,
title={A distributed graph engine for web scale RDF data},
author={Zeng, Kai and Yang, Jiacheng and Wang, Haixun and Shao, Bin and
Wang, Zhongyuan},
booktitle={Proceedings of the VLDB Endowment},
volume={6},
number={4},
pages={265--276},
year={2013},
organization={VLDB Endowment}
}
@misc{microsoft2013trinity,
author = {Microsoft},
title = {{Trinity}},
howpublished =
"\url{https://www.microsoft.com/en-us/research/project/trinity/}",
year = {2013},
note = "[Online; accessed 10-November-2016]"
}
@inproceedings{kocberber2013meet,
title={Meet the walkers: Accelerating index traversals for in-memory
databases},
author={Kocberber, Onur and Grot, Boris and Picorel, Javier and Falsafi,
Babak and Lim, Kevin and Ranganathan, Parthasarathy},
booktitle={Proceedings of the 46th Annual IEEE/ACM International
Symposium on Microarchitecture},
pages={468--479},
year={2013},
organization={ACM}
}
@inproceedings{shi2016fast,
author = {Jiaxin Shi and Youyang Yao and Rong Chen and Haibo Chen and Feifei Li},
title = {Fast and Concurrent {RDF} Queries with RDMA-Based Distributed Graph Exploration},
booktitle = {12th {USENIX} Symposium on Operating Systems Design and
Implementation,
{OSDI} 2016, Savannah, GA, USA, November 2-4,
2016.},
pages = {317--332},
year = {2016},
url =
{https://www.usenix.org/conference/osdi16/technical-sessions/presentation/shi},
timestamp = {Tue, 08 Nov 2016 07:18:04 +0100},
biburl =
{http://dblp.uni-trier.de/rec/bib/conf/osdi/ShiYCCL16},
bibsource = {dblp computer science bibliography,
http://dblp.org}
}
@inproceedings{chen2015powerlyra,
title={Powerlyra: Differentiated graph computation and partitioning on
skewed graphs},
author={Chen, Rong and Shi, Jiaxin and Chen, Yanzhe and Chen, Haibo},
booktitle={Proceedings of the Tenth European Conference on Computer
Systems},
pages={1},
year={2015},
organization={ACM}
}
@inproceedings{fu2014mapgraph,
title={Mapgraph: A high level API for fast development of high performance
graph analytics on GPUs},
author={Fu, Zhisong and Personick, Michael and Thompson, Bryan},
booktitle={Proceedings of Workshop on GRAph Data management
Experiences and Systems},
pages={1--6},
year={2014},
organization={ACM}
}
@inproceedings{dorrance2014scalable,
title={A scalable sparse matrix-vector multiplication kernel for
energy-efficient sparse-blas on FPGAs},
author={Dorrance, Richard and Ren, Fengbo and Markovi{\'c}, Dejan},
booktitle={Proceedings of the 2014 ACM/SIGDA international symposium
on Field-programmable gate arrays},
pages={161--170},
year={2014},
organization={ACM}
}
@inproceedings{Khorasani2014CuSha,
author = {Khorasani, Farzad and Vora, Keval and Gupta, Rajiv and Bhuyan,
Laxmi N.},
title = {CuSha: Vertex-centric Graph Processing on GPUs},
booktitle = {Proceedings of the 23rd International Symposium on
High-performance Parallel and Distributed Computing},
series = {HPDC '14},
year = {2014},
isbn = {978-1-4503-2749-7},
location = {Vancouver, BC, Canada},
pages = {239--252},
numpages = {14},
url = {http://doi.acm.org/10.1145/2600212.2600227},
doi = {10.1145/2600212.2600227},
acmid = {2600227},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {coalesced memory accesses, concatenated windows,
g-shards, gpu, graph representation},
}
@inproceedings{wu2013complexity,
author = {Wu, Bo and Zhao, Zhijia and Zhang, Eddy Zheng and Jiang, Yunlian
and Shen, Xipeng},
title = {Complexity Analysis and Algorithm Design for Reorganizing Data to
Minimize Non-coalesced Memory Accesses on GPU},
booktitle = {Proceedings of the 18th ACM SIGPLAN Symposium on Principles
and Practice of Parallel Programming},
series = {PPoPP '13},
year = {2013},
isbn = {978-1-4503-1922-5},
location = {Shenzhen, China},
pages = {57--68},
numpages = {12},
url = {http://doi.acm.org/10.1145/2442516.2442523},
doi = {10.1145/2442516.2442523},
acmid = {2442523},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {computational complexity, data transformation,
gpgpu, memory coalescing, runtime optimizations,
thread-data remapping},
}
@article{Zhang2011elimination,
author = {Zhang, Eddy Z. and Jiang, Yunlian and Guo, Ziyu and Tian, Kai and
Shen, Xipeng},
title = {On-the-fly Elimination of Dynamic Irregularities for GPU
Computing},