-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathacm.bib
More file actions
1964 lines (1964 loc) · 78.3 KB
/
acm.bib
File metadata and controls
1964 lines (1964 loc) · 78.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@inproceedings{10.1145/3317550.3321434,
author = {Adya, Atul and Grandl, Robert and Myers, Daniel and Qin, Henry},
title = {Fast Key-Value Stores: An Idea Whose Time Has Come and Gone},
year = {2019},
isbn = {9781450367271},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3317550.3321434},
doi = {10.1145/3317550.3321434},
booktitle = {Proceedings of the Workshop on Hot Topics in Operating Systems},
pages = {113–119},
numpages = {7},
keywords = {Caches, Key-Value Stores, Distributed Systems},
location = {Bertinoro, Italy},
series = {HotOS ’19}
}
@inproceedings{10.1145/3106237.3117767,
author = {Adzic, Gojko and Chatley, Robert},
title = {Serverless Computing: Economic and Architectural Impact},
year = {2017},
isbn = {9781450351058},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3106237.3117767},
doi = {10.1145/3106237.3117767},
booktitle = {Proceedings of the 2017 11th Joint Meeting on Foundations of Software Engineering},
pages = {884–889},
numpages = {6},
keywords = {Cloud Computing, Serverless, Economics},
location = {Paderborn, Germany},
series = {ESEC/FSE 2017}
}
@inproceedings{10.5555/3277355.3277444,
author = {Akkus, Istemi Ekin and Chen, Ruichuan and Rimac, Ivica and Stein, Manuel and Satzke, Klaus and Beck, Andre and Aditya, Paarijaat and Hilt, Volker},
title = {SAND: Towards High-Performance Serverless Computing},
year = {2018},
isbn = {9781931971447},
publisher = {USENIX Association},
address = {USA},
booktitle = {Proceedings of the 2018 USENIX Conference on Usenix Annual Technical Conference},
pages = {923–935},
numpages = {13},
location = {Boston, MA, USA},
series = {USENIX ATC ’18}
}
@article{10.1145/3276488,
author = {Alpernas, Kalev and Flanagan, Cormac and Fouladi, Sadjad and Ryzhyk, Leonid and Sagiv, Mooly and Schmitz, Thomas and Winstein, Keith},
title = {Secure Serverless Computing Using Dynamic Information Flow Control},
year = {2018},
issue_date = {October 2018},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
volume = {2},
number = {OOPSLA},
url = {https://doi.org/10.1145/3276488},
doi = {10.1145/3276488},
journal = {Proc. ACM Program. Lang.},
month = oct,
articleno = {Article 118},
numpages = {26},
keywords = {Information Flow Control, Serverless, Cloud Computing}
}
@article{10.1016/j.eswa.2017.08.013,
author = {Alphonse, A. Sherly and Dharma, Dejey},
title = {Enhanced Gabor (E-Gabor), Hypersphere-Based Normalization and Pearson General Kernel-Based Discriminant Analysis for Dimension Reduction and Classification of Facial Emotions},
year = {2017},
issue_date = {December 2017},
publisher = {Pergamon Press, Inc.},
address = {USA},
volume = {90},
number = {C},
issn = {0957-4174},
url = {https://doi.org/10.1016/j.eswa.2017.08.013},
doi = {10.1016/j.eswa.2017.08.013},
journal = {Expert Syst. Appl.},
month = dec,
pages = {127–145},
numpages = {19},
keywords = {Discriminant analysis, Emotion, ELM, Facial expression, Gabor}
}
@article{10.1007/s11222-016-9644-3,
author = {Amaral, Sergio and Allaire, Douglas and Willcox, Karen},
title = {Optimal $$L_2$$L2-Norm Empirical Importance Weights for the Change of Probability Measure},
year = {2017},
issue_date = {May 2017},
publisher = {Kluwer Academic Publishers},
address = {USA},
volume = {27},
number = {3},
issn = {0960-3174},
url = {https://doi.org/10.1007/s11222-016-9644-3},
doi = {10.1007/s11222-016-9644-3},
journal = {Statistics and Computing},
month = may,
pages = {625–643},
numpages = {19},
keywords = {Importance weight, Empirical measure, Radon---Nikodym theorem, Change of measure, Density ratio, Quadratic program}
}
@inproceedings{10.1145/3267809.3267815,
author = {Ao, Lixiang and Izhikevich, Liz and Voelker, Geoffrey M. and Porter, George},
title = {Sprocket: A Serverless Video Processing Framework},
year = {2018},
isbn = {9781450360111},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3267809.3267815},
doi = {10.1145/3267809.3267815},
booktitle = {Proceedings of the ACM Symposium on Cloud Computing},
pages = {263–274},
numpages = {12},
location = {Carlsbad, CA, USA},
series = {SoCC ’18}
}
@inproceedings{10.1145/3308560.3316466,
author = {Aragon, Harold and Braganza, Samuel and Boza, Edwin and Parrales, Jonathan and Abad, Cristina},
title = {Workload Characterization of a Software-as-a-Service Web Application Implemented with a Microservices Architecture},
year = {2019},
isbn = {9781450366755},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3308560.3316466},
doi = {10.1145/3308560.3316466},
booktitle = {Companion Proceedings of The 2019 World Wide Web Conference},
pages = {746–750},
numpages = {5},
keywords = {workload characterization, software-as-a-service, microservices},
location = {San Francisco, USA},
series = {WWW ’19}
}
@inproceedings{10.1145/3229710.3229742,
author = {Aske, Austin and Zhao, Xinghui},
title = {Supporting Multi-Provider Serverless Computing on the Edge},
year = {2018},
isbn = {9781450365239},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3229710.3229742},
doi = {10.1145/3229710.3229742},
booktitle = {Proceedings of the 47th International Conference on Parallel Processing Companion},
articleno = {Article 20},
numpages = {6},
keywords = {Serverless Computing, Performance, Scheduling, Edge Computing, Function-as-a-Service},
location = {Eugene, OR, USA},
series = {ICPP ’18}
}
@inproceedings{10.1145/2939672.2939694,
author = {Ayhan, Samet and Samet, Hanan},
title = {Aircraft Trajectory Prediction Made Easy with Predictive Analytics},
year = {2016},
isbn = {9781450342322},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/2939672.2939694},
doi = {10.1145/2939672.2939694},
booktitle = {Proceedings of the 22nd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining},
pages = {21–30},
numpages = {10},
keywords = {time series, predictive analytics, aircraft trajectory prediction, hidden markov model, air traffic management},
location = {San Francisco, California, USA},
series = {KDD ’16}
}
@inproceedings{10.1145/3003965.3003968,
author = {Ayhan, Samet and Samet, Hanan},
title = {Time Series Clustering of Weather Observations in Predicting Climb Phase of Aircraft Trajectories},
year = {2016},
isbn = {9781450345774},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3003965.3003968},
doi = {10.1145/3003965.3003968},
booktitle = {Proceedings of the 9th ACM SIGSPATIAL International Workshop on Computational Transportation Science},
pages = {25–30},
numpages = {6},
keywords = {predictive analytics, time series clustering, hidden Markov model, aircraft trajectory prediction},
location = {Burlingame, California},
series = {IWCTS ’16}
}
@inproceedings{10.1145/3337821.3337840,
author = {Bacou, Mathieu and Todeschi, Gr\'{e}goire and Hagimont, Daniel and Tchana, Alain},
title = {Nested Virtualization Without the Nest},
year = {2019},
isbn = {9781450362955},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3337821.3337840},
doi = {10.1145/3337821.3337840},
booktitle = {Proceedings of the 48th International Conference on Parallel Processing},
articleno = {Article 12},
numpages = {10},
keywords = {nested virtualization, network, container, virtualization, orchestrator},
location = {Kyoto, Japan},
series = {ICPP 2019}
}
@inproceedings{10.1145/3133850.3133855,
author = {Baldini, Ioana and Cheng, Perry and Fink, Stephen J. and Mitchell, Nick and Muthusamy, Vinod and Rabbah, Rodric and Suter, Philippe and Tardieu, Olivier},
title = {The Serverless Trilemma: Function Composition for Serverless Computing},
year = {2017},
isbn = {9781450355308},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3133850.3133855},
doi = {10.1145/3133850.3133855},
booktitle = {Proceedings of the 2017 ACM SIGPLAN International Symposium on New Ideas, New Paradigms, and Reflections on Programming and Software},
pages = {89–103},
numpages = {15},
keywords = {composition, serverless, functional, cloud},
location = {Vancouver, BC, Canada},
series = {Onward! 2017}
}
@article{10.1145/3226644,
author = {Baresi, L. and Mendon\c{c}a, D. F. and Garriga, M. and Guinea, S. and Quattrocchi, G.},
title = {A Unified Model for the Mobile-Edge-Cloud Continuum},
year = {2019},
issue_date = {April 2019},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
volume = {19},
number = {2},
issn = {1533-5399},
url = {https://doi.org/10.1145/3226644},
doi = {10.1145/3226644},
journal = {ACM Trans. Internet Technol.},
month = apr,
articleno = {Article 29},
numpages = {21},
keywords = {real-time systems, edge computing, Computing continuum, fog computing, mobile computing, ops automation, Functions-as-a-Service}
}
@article{10.14778/3137765.3137782,
author = {Bonetta, Daniele and Brantner, Matthias},
title = {FAD.Js: Fast JSON Data Access Using JIT-Based Speculative Optimizations},
year = {2017},
issue_date = {August 2017},
publisher = {VLDB Endowment},
volume = {10},
number = {12},
issn = {2150-8097},
url = {https://doi.org/10.14778/3137765.3137782},
doi = {10.14778/3137765.3137782},
journal = {Proc. VLDB Endow.},
month = aug,
pages = {1778–1789},
numpages = {12}
}
@inproceedings{10.5555/3277355.3277417,
author = {Boucher, Sol and Kalia, Anuj and Andersen, David G. and Kaminsky, Michael},
title = {Putting the “Micro” Back in Microservice},
year = {2018},
isbn = {9781931971447},
publisher = {USENIX Association},
address = {USA},
booktitle = {Proceedings of the 2018 USENIX Conference on Usenix Annual Technical Conference},
pages = {645–650},
numpages = {6},
location = {Boston, MA, USA},
series = {USENIX ATC ’18}
}
@inproceedings{10.1145/2769493.2769498,
author = {Boukhechba, Mehdi and Bouzouane, Abdenour and Bouchard, Bruno and Gouin-Vallerand, Charles and Giroux, Sylvain},
title = {Online Recognition of People’s Activities from Raw GPS Data: Semantic Trajectory Data Analysis},
year = {2015},
isbn = {9781450334525},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/2769493.2769498},
doi = {10.1145/2769493.2769498},
booktitle = {Proceedings of the 8th ACM International Conference on PErvasive Technologies Related to Assistive Environments},
articleno = {Article 40},
numpages = {8},
keywords = {online clustering, semantic enrichment, GPS data, human activities},
location = {Corfu, Greece},
series = {PETRA ’15}
}
@article{10.1016/j.cam.2016.03.002,
author = {Brown, David A. and Zingg, David W.},
title = {Efficient Numerical Differentiation of Implicitly-Defined Curves for Sparse Systems},
year = {2016},
issue_date = {October 2016},
publisher = {Elsevier Science Publishers B. V.},
address = {NLD},
volume = {304},
number = {C},
issn = {0377-0427},
url = {https://doi.org/10.1016/j.cam.2016.03.002},
doi = {10.1016/j.cam.2016.03.002},
journal = {J. Comput. Appl. Math.},
month = oct,
pages = {138–159},
numpages = {22},
keywords = {Implicitly-defined curves, High-order predictor, Sparse systems, Continuation, Numerical differentiation, Homotopy}
}
@article{10.1145/3241737,
author = {Buyya, Rajkumar and Srirama, Satish Narayana and Casale, Giuliano and Calheiros, Rodrigo and Simmhan, Yogesh and Varghese, Blesson and Gelenbe, Erol and Javadi, Bahman and Vaquero, Luis Miguel and Netto, Marco A. S. and et al.},
title = {A Manifesto for Future Generation Cloud Computing: Research Directions for the Next Decade},
year = {2018},
issue_date = {January 2019},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
volume = {51},
number = {5},
issn = {0360-0300},
url = {https://doi.org/10.1145/3241737},
doi = {10.1145/3241737},
journal = {ACM Comput. Surv.},
month = nov,
articleno = {Article 105},
numpages = {38},
keywords = {sustainability, Cloud computing, application development, scalability, data management, InterCloud, serverless computing, Fog computing, Cloud economics}
}
@article{10.1007/s00791-017-0278-6,
author = {Carfagna, Melania and Grillo, Alfio},
title = {The Spherical Design Algorithm in the Numerical Simulation of Biological Tissues with Statistical Fibre-Reinforcement},
year = {2017},
issue_date = {August 2017},
publisher = {Springer-Verlag},
address = {Berlin, Heidelberg},
volume = {18},
number = {4–5},
issn = {1432-9360},
url = {https://doi.org/10.1007/s00791-017-0278-6},
doi = {10.1007/s00791-017-0278-6},
journal = {Comput. Vis. Sci.},
month = aug,
pages = {157–184},
numpages = {28},
keywords = {Finite element method, Quadrature methods, Fibre-reinforced materials, Spherical design algorithm}
}
@article{10.1109/TNET.2018.2878287,
author = {Chowdhery, Aakanksha and Jamieson, Kyle},
title = {Aerial Channel Prediction and User Scheduling in Mobile Drone Hotspots},
year = {2018},
issue_date = {December 2018},
publisher = {IEEE Press},
volume = {26},
number = {6},
issn = {1063-6692},
url = {https://doi.org/10.1109/TNET.2018.2878287},
doi = {10.1109/TNET.2018.2878287},
journal = {IEEE/ACM Trans. Netw.},
month = dec,
pages = {2679–2692},
numpages = {14}
}
@inproceedings{10.1145/3210240.3210326,
author = {Corner, Mark D. and Levine, Brian N.},
title = {MicroMobile: Leveraging Mobile Advertising for Large-Scale Experimentation},
year = {2018},
isbn = {9781450357203},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3210240.3210326},
doi = {10.1145/3210240.3210326},
booktitle = {Proceedings of the 16th Annual International Conference on Mobile Systems, Applications, and Services},
pages = {310–322},
numpages = {13},
keywords = {Mobile advertising, Mobile measurement},
location = {Munich, Germany},
series = {MobiSys ’18}
}
@inproceedings{10.1145/3121050.3121086,
author = {Crane, Matt and Lin, Jimmy},
title = {An Exploration of Serverless Architectures for Information Retrieval},
year = {2017},
isbn = {9781450344906},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3121050.3121086},
doi = {10.1145/3121050.3121086},
booktitle = {Proceedings of the ACM SIGIR International Conference on Theory of Information Retrieval},
pages = {241–244},
numpages = {4},
keywords = {DynamoDB, score-at-a-time query evaluation, amazon lambda, cloud computing},
location = {Amsterdam, The Netherlands},
series = {ICTIR ’17}
}
@inproceedings{10.1145/3307339.3343462,
author = {Crespo-Cepeda, Rodrigo and Agapito, Giuseppe and Vazquez-Poletti, Jose Luis and Cannataro, Mario},
title = {Challenges and Opportunities of Amazon Serverless Lambda Services in Bioinformatics},
year = {2019},
isbn = {9781450366663},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3307339.3343462},
doi = {10.1145/3307339.3343462},
booktitle = {Proceedings of the 10th ACM International Conference on Bioinformatics, Computational Biology and Health Informatics},
pages = {663–668},
numpages = {6},
keywords = {amazon lamba, bioinformatics, serverless computing},
location = {Niagara Falls, NY, USA},
series = {BCB ’19}
}
@inproceedings{10.5555/3357034.3357053,
author = {Dukic, Vojislav and Singla, Ankit},
title = {Happiness Index: Right-Sizing the Cloud’s Tenant-Provider Interface},
year = {2019},
publisher = {USENIX Association},
address = {USA},
booktitle = {Proceedings of the 11th USENIX Conference on Hot Topics in Cloud Computing},
pages = {15},
numpages = {1},
location = {Renton, WA, USA},
series = {HotCloud’19}
}
@article{10.4018/IJMDEM.2016040101,
author = {Elleuch, Mohamed and Kherallah, Monji},
title = {An Improved Arabic Handwritten Recognition System Using Deep Support Vector Machines},
year = {2016},
issue_date = {April 2016},
publisher = {IGI Global},
address = {USA},
volume = {7},
number = {2},
issn = {1947-8534},
url = {https://doi.org/10.4018/IJMDEM.2016040101},
doi = {10.4018/IJMDEM.2016040101},
journal = {Int. J. Multimed. Data Eng. Manag.},
month = apr,
pages = {1–20},
numpages = {20},
keywords = {Hand-crafted Feature, Deep Learning, HACDB, Deep SVM, Arabic Handwritten Script}
}
@article{10.1016/j.apnum.2017.03.007,
author = {Fatemion Aghda, A.S. and Hosseini, Seyed Mohammad and Tahmasebi, Mahdieh},
title = {Analysis of Non-Negativity and Convergence of Solution of the Balanced Implicit Method for the Delay CoxIngersollRoss Model},
year = {2017},
issue_date = {August 2017},
publisher = {Elsevier Science Publishers B. V.},
address = {NLD},
volume = {118},
number = {C},
issn = {0168-9274},
url = {https://doi.org/10.1016/j.apnum.2017.03.007},
doi = {10.1016/j.apnum.2017.03.007},
journal = {Appl. Numer. Math.},
month = aug,
pages = {249–265},
numpages = {17},
keywords = {Stochastic delay differential equations (SDDEs), Balanced implicit method (BIM), Convergence, Delay CIR model, Non-negativity}
}
@article{10.1145/3243929,
author = {Ferrer, Ana Juan and Marqu\`{e}s, Joan Manuel and Jorba, Josep},
title = {Towards the Decentralised Cloud: Survey on Approaches and Challenges for Mobile, Ad Hoc, and Edge Computing},
year = {2019},
issue_date = {February 2019},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
volume = {51},
number = {6},
issn = {0360-0300},
url = {https://doi.org/10.1145/3243929},
doi = {10.1145/3243929},
journal = {ACM Comput. Surv.},
month = jan,
articleno = {Article 111},
numpages = {36},
keywords = {fog computing, Mobile Ad hoc Cloud Computing, Mobile Cloud Computing, edge computing, decentralised cloud, Cloud computing}
}
@inproceedings{10.1145/3343737.3343750,
author = {Fingler, Henrique and Akshintala, Amogh and Rossbach, Christopher J.},
title = {USETL: Unikernels for Serverless Extract Transform and Load Why Should You Settle for Less?},
year = {2019},
isbn = {9781450368933},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3343737.3343750},
doi = {10.1145/3343737.3343750},
booktitle = {Proceedings of the 10th ACM SIGOPS Asia-Pacific Workshop on Systems},
pages = {23–30},
numpages = {8},
location = {Hangzhou, China},
series = {APSys ’19}
}
@inproceedings{10.5555/3358807.3358848,
author = {Fouladi, Sadjad and Romero, Francisco and Iter, Dan and Li, Qian and Chatterjee, Shuvo and Kozyrakis, Christos and Zaharia, Matei and Winstein, Keith},
title = {From Laptop to Lambda: Outsourcing Everyday Jobs to Thousands of Transient Functional Containers},
year = {2019},
isbn = {9781939133038},
publisher = {USENIX Association},
address = {USA},
booktitle = {Proceedings of the 2019 USENIX Conference on Usenix Annual Technical Conference},
pages = {475–488},
numpages = {14},
location = {Renton, WA, USA},
series = {USENIX ATC ’19}
}
@inproceedings{10.1145/3281411.3281420,
author = {Fr\"{o}mmgen, Alexander and Stohr, Denny and Koldehofe, Boris and Rizk, Amr},
title = {Don’t Repeat Yourself: Seamless Execution and Analysis of Extensive Network Experiments},
year = {2018},
isbn = {9781450360807},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3281411.3281420},
doi = {10.1145/3281411.3281420},
booktitle = {Proceedings of the 14th International Conference on Emerging Networking EXperiments and Technologies},
pages = {20–26},
numpages = {7},
location = {Heraklion, Greece},
series = {CoNEXT ’18}
}
@article{10.14778/3137765.3137773,
author = {Gessert, Felix and Schaarschmidt, Michael and Wingerath, Wolfram and Witt, Erik and Yoneki, Eiko and Ritter, Norbert},
title = {Quaestor: Query Web Caching for Database-as-a-Service Providers},
year = {2017},
issue_date = {August 2017},
publisher = {VLDB Endowment},
volume = {10},
number = {12},
issn = {2150-8097},
url = {https://doi.org/10.14778/3137765.3137773},
doi = {10.14778/3137765.3137773},
journal = {Proc. VLDB Endow.},
month = aug,
pages = {1670–1681},
numpages = {12}
}
@article{10.1016/j.future.2016.05.016,
author = {Gill, Navneet Kaur and Singh, Sarbjeet},
title = {A Dynamic, Cost-Aware, Optimized Data Replication Strategy for Heterogeneous Cloud Data Centers},
year = {2016},
issue_date = {December 2016},
publisher = {Elsevier Science Publishers B. V.},
address = {NLD},
volume = {65},
number = {C},
issn = {0167-739X},
url = {https://doi.org/10.1016/j.future.2016.05.016},
doi = {10.1016/j.future.2016.05.016},
journal = {Future Gener. Comput. Syst.},
month = dec,
pages = {10–32},
numpages = {23},
keywords = {Re-replication, Cost of replication, Data replication, Re-balancing, Data availability, Knapsack}
}
@inproceedings{10.1109/ECASE.2019.00012,
author = {Gorton, Ian and Rajagopal, Shravanthi and Liu, Yan},
title = {Towards a Cloud Performance Research Repository},
year = {2019},
publisher = {IEEE Press},
url = {https://doi.org/10.1109/ECASE.2019.00012},
doi = {10.1109/ECASE.2019.00012},
booktitle = {Proceedings of the 2nd International Workshop on Establishing a Community-Wide Infrastructure for Architecture-Based Software Engineering},
pages = {22–25},
numpages = {4},
keywords = {scalability, community research repository, benchmarks, performance},
location = {Montreal, Quebec, Canada},
series = {ECASE ’19}
}
@inproceedings{10.1145/3349625.3355441,
author = {Guerin, Fiona and K\"{a}rkk\"{a}inen, Teemu and Ott, J\"{o}rg},
title = {Towards a Programmable World: Lua-Based Dynamic Local Orchestration of Networked Microcontrollers},
year = {2019},
isbn = {9781450369336},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3349625.3355441},
doi = {10.1145/3349625.3355441},
booktitle = {Proceedings of the 14th Workshop on Challenged Networks},
pages = {13–18},
numpages = {6},
keywords = {lua, opportunistic computing, microcontrollers},
location = {Los Cabos, Mexico},
series = {CHANTS’19}
}
@inproceedings{10.1109/ICSE.2017.9,
author = {Guo, Jin and Cheng, Jinghui and Cleland-Huang, Jane},
title = {Semantically Enhanced Software Traceability Using Deep Learning Techniques},
year = {2017},
isbn = {9781538638682},
publisher = {IEEE Press},
url = {https://doi.org/10.1109/ICSE.2017.9},
doi = {10.1109/ICSE.2017.9},
booktitle = {Proceedings of the 39th International Conference on Software Engineering},
pages = {3–14},
numpages = {12},
keywords = {deep learning, recurrent neural network, semantic representation, traceability},
location = {Buenos Aires, Argentina},
series = {ICSE ’17}
}
@article{10.1007/s10208-016-9327-7,
author = {Haji-Ali, Abdul-Lateef and Nobile, Fabio and Tamellini, Lorenzo and Tempone, Ra\'{u}l},
title = {Multi-Index Stochastic Collocation Convergence Rates for Random PDEs with Parametric Regularity},
year = {2016},
issue_date = {December 2016},
publisher = {Springer-Verlag},
address = {Berlin, Heidelberg},
volume = {16},
number = {6},
issn = {1615-3375},
url = {https://doi.org/10.1007/s10208-016-9327-7},
doi = {10.1007/s10208-016-9327-7},
journal = {Found. Comput. Math.},
month = dec,
pages = {1555–1605},
numpages = {51},
keywords = {Multi-level methods, Multi-level, Finite element method, Elliptic partial differential equations with random coefficients, Stochastic Collocation methods, 65N30 (Finite elements), Sparse grids, 41A10 (approx by polynomials), Multi-index Stochastic Collocation, Combination technique, 65C20 (models, numerical methods), Random partial differential equations, Uncertainty quantification, 65N05 (Finite differences), Multivariate approximation, Infinite dimensional integration}
}
@inproceedings{10.1145/3302505.3310084,
author = {Hall, Adam and Ramachandran, Umakishore},
title = {An Execution Model for Serverless Functions at the Edge},
year = {2019},
isbn = {9781450362832},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3302505.3310084},
doi = {10.1145/3302505.3310084},
booktitle = {Proceedings of the International Conference on Internet of Things Design and Implementation},
pages = {225–236},
numpages = {12},
keywords = {serverless, webassembly, fog computing, function-as-a-service, FaaS, edge computing},
location = {Montreal, Quebec, Canada},
series = {IoTDI ’19}
}
@article{10.1007/s00607-017-0560-y,
author = {Hameed, Muhammad Umar and Haider, Syed Ali and Kantarci, Burak},
title = {Performance Impacts of Hybrid Cloud Storage},
year = {2017},
issue_date = {December 2017},
publisher = {Springer-Verlag},
address = {Berlin, Heidelberg},
volume = {99},
number = {12},
issn = {0010-485X},
url = {https://doi.org/10.1007/s00607-017-0560-y},
doi = {10.1007/s00607-017-0560-y},
journal = {Computing},
month = dec,
pages = {1207–1229},
numpages = {23},
keywords = {Performance analysis, Hybrid cloud storage, Data center Storage, 68U99, 68P20}
}
@article{10.1145/3360575,
author = {Jangda, Abhinav and Pinckney, Donald and Brun, Yuriy and Guha, Arjun},
title = {Formal Foundations of Serverless Computing},
year = {2019},
issue_date = {October 2019},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
volume = {3},
number = {OOPSLA},
url = {https://doi.org/10.1145/3360575},
doi = {10.1145/3360575},
journal = {Proc. ACM Program. Lang.},
month = oct,
articleno = {Article 149},
numpages = {26},
keywords = {serverless computing, distributed computing, formal language semantics}
}
@inproceedings{10.1007/978-3-319-25942-0_1,
author = {Junges, Sebastian and Guck, Dennis and Katoen, Joost-Pieter and Rensink, Arend and Stoelinga, Mari\"{e}lle},
title = {Fault Trees on a Diet},
year = {2015},
isbn = {9783319259413},
publisher = {Springer-Verlag},
address = {Berlin, Heidelberg},
url = {https://doi.org/10.1007/978-3-319-25942-0_1},
doi = {10.1007/978-3-319-25942-0_1},
booktitle = {Proceedings of the First International Symposium on Dependable Software Engineering: Theories, Tools, and Applications - Volume 9409},
pages = {3–18},
numpages = {16},
location = {Nanjing, China},
series = {SETTA 2015}
}
@article{10.1007/s00165-016-0412-0,
author = {Junges, Sebastian and Guck, Dennis and Katoen, Joost-Pieter and Rensink, Arend and Stoelinga, Mari\"{e}lle},
title = {Fault Trees on a Diet: Automated Reduction by Graph Rewriting},
year = {2017},
issue_date = {July 2017},
publisher = {Springer-Verlag},
address = {Berlin, Heidelberg},
volume = {29},
number = {4},
issn = {0934-5043},
url = {https://doi.org/10.1007/s00165-016-0412-0},
doi = {10.1007/s00165-016-0412-0},
journal = {Form. Asp. Comput.},
month = jul,
pages = {651–703},
numpages = {53},
keywords = {Fault tree analysis, Graph rewriting, Dynamic fault trees, Reliability}
}
@article{10.1016/j.engappai.2015.06.011,
author = {Kaminski, Marcin and Orlowska-Kowalska, Teresa},
title = {Adaptive Neural Speed Controllers Applied for a Drive System with an Elastic Mechanical Coupling - A Comparative Study},
year = {2015},
issue_date = {October 2015},
publisher = {Pergamon Press, Inc.},
address = {USA},
volume = {45},
number = {C},
issn = {0952-1976},
url = {https://doi.org/10.1016/j.engappai.2015.06.011},
doi = {10.1016/j.engappai.2015.06.011},
journal = {Eng. Appl. Artif. Intell.},
month = oct,
pages = {152–167},
numpages = {16},
keywords = {Speed control, On-line adaptation algorithms, Vibration damping, Neural networks, Two-mass system, Electrical drive}
}
@inproceedings{10.1145/3302424.3303958,
author = {Kannan, Ram Srivatsa and Subramanian, Lavanya and Raju, Ashwin and Ahn, Jeongseob and Mars, Jason and Tang, Lingjia},
title = {GrandSLAm: Guaranteeing SLAs for Jobs in Microservices Execution Frameworks},
year = {2019},
isbn = {9781450362818},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3302424.3303958},
doi = {10.1145/3302424.3303958},
booktitle = {Proceedings of the Fourteenth EuroSys Conference 2019},
articleno = {Article 34},
numpages = {16},
keywords = {Microservice, Systems and Machine Learning},
location = {Dresden, Germany},
series = {EuroSys ’19}
}
@inproceedings{10.1145/3301418.3313947,
author = {Karhula, Pekka and Janak, Jan and Schulzrinne, Henning},
title = {Checkpointing and Migration of IoT Edge Functions},
year = {2019},
isbn = {9781450362757},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3301418.3313947},
doi = {10.1145/3301418.3313947},
booktitle = {Proceedings of the 2nd International Workshop on Edge Systems, Analytics and Networking},
pages = {60–65},
numpages = {6},
keywords = {Internet of Things, function as a service, checkpointing, light-weight virtualization, serverless},
location = {Dresden, Germany},
series = {EdgeSys ’19}
}
@inproceedings{10.5555/3291291.3291321,
author = {Khazaei, Hamzeh and Ghanbari, Alireza and Litoiu, Marin},
title = {Adaptation as a Service},
year = {2018},
publisher = {IBM Corp.},
address = {USA},
booktitle = {Proceedings of the 28th Annual International Conference on Computer Science and Software Engineering},
pages = {282–288},
numpages = {7},
keywords = {containers, cloud computing, software engineering, microservices, eslf-adaptation, adaptation as a service},
location = {Markham, Ontario, Canada},
series = {CASCON ’18}
}
@inproceedings{10.5555/3277355.3277429,
author = {Klimovic, Ana and Litz, Heiner and Kozyrakis, Christos},
title = {Selecta: Heterogeneous Cloud Storage Configuration for Data Analytics},
year = {2018},
isbn = {9781931971447},
publisher = {USENIX Association},
address = {USA},
booktitle = {Proceedings of the 2018 USENIX Conference on Usenix Annual Technical Conference},
pages = {759–773},
numpages = {15},
location = {Boston, MA, USA},
series = {USENIX ATC ’18}
}
@inproceedings{10.5555/3291168.3291200,
author = {Klimovic, Ana and Wang, Yawen and Stuedi, Patrick and Trivedi, Animesh and Pfefferle, Jonas and Kozyrakis, Christos},
title = {Pocket: Elastic Ephemeral Storage for Serverless Analytics},
year = {2018},
isbn = {9781931971478},
publisher = {USENIX Association},
address = {USA},
booktitle = {Proceedings of the 12th USENIX Conference on Operating Systems Design and Implementation},
pages = {427–444},
numpages = {18},
location = {Carlsbad, CA, USA},
series = {OSDI’18}
}
@inproceedings{10.1145/3102980.3103008,
author = {Koller, Ricardo and Williams, Dan},
title = {Will Serverless End the Dominance of Linux in the Cloud?},
year = {2017},
isbn = {9781450350686},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3102980.3103008},
doi = {10.1145/3102980.3103008},
booktitle = {Proceedings of the 16th Workshop on Hot Topics in Operating Systems},
pages = {169–173},
numpages = {5},
location = {Whistler, BC, Canada},
series = {HotOS ’17}
}
@inproceedings{10.1145/2797143.2797162,
author = {Konstantinidis, Sotiris and Karampiperis, Pythagoras and Sicilia, Miguel-Angel},
title = {Enhancing the Levenberg-Marquardt Method in Neural Network Training Using the Direct Computation of the Error Cost Function Hessian},
year = {2015},
isbn = {9781450335805},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/2797143.2797162},
doi = {10.1145/2797143.2797162},
booktitle = {Proceedings of the 16th International Conference on Engineering Applications of Neural Networks (INNS)},
articleno = {Article 2},
numpages = {5},
keywords = {Neural Networks, Second Order Gradient Methods, Levenberg-Marquardt},
location = {Rhodes, Island, Greece},
series = {EANN ’15}
}
@inproceedings{10.1145/3125719.3125727,
author = {Kr\'{o}l, Micha\l{} and Psaras, Ioannis},
title = {NFaaS: Named Function as a Service},
year = {2017},
isbn = {9781450351225},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3125719.3125727},
doi = {10.1145/3125719.3125727},
booktitle = {Proceedings of the 4th ACM Conference on Information-Centric Networking},
pages = {134–144},
numpages = {11},
keywords = {network architectures, information centric networking, mobile edge computing, function migration, networks},
location = {Berlin, Germany},
series = {ICN ’17}
}
@article{10.1007/s10589-015-9734-8,
author = {Lass, Oliver and Volkwein, Stefan},
title = {Parameter Identification for Nonlinear Elliptic-Parabolic Systems with Application in Lithium-Ion Battery Modeling},
year = {2015},
issue_date = {September 2015},
publisher = {Kluwer Academic Publishers},
address = {USA},
volume = {62},
number = {1},
issn = {0926-6003},
url = {https://doi.org/10.1007/s10589-015-9734-8},
doi = {10.1007/s10589-015-9734-8},
journal = {Comput. Optim. Appl.},
month = sep,
pages = {217–239},
numpages = {23},
keywords = {subset selection method, Proper orthogonal decomposition, Elliptic-parabolic systems, Parameter estimation, A-posteriori error estimates}
}
@inproceedings{10.1145/2996890.2996901,
author = {Leitner, Philipp and Cito, J\"{u}rgen and St\"{o}ckli, Emanuel},
title = {Modelling and Managing Deployment Costs of Microservice-Based Cloud Applications},
year = {2016},
isbn = {9781450346160},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/2996890.2996901},
doi = {10.1145/2996890.2996901},
booktitle = {Proceedings of the 9th International Conference on Utility and Cloud Computing},
pages = {165–174},
numpages = {10},
location = {Shanghai, China},
series = {UCC ’16}
}
@inproceedings{10.1145/3328905.3329511,
author = {Lin, Wei-Tsung and Bakir, Fatih and Krintz, Chandra and Wolski, Rich and Mock, Markus},
title = {Data Repair for Distributed, Event-Based IoT Applications},
year = {2019},
isbn = {9781450367943},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3328905.3329511},
doi = {10.1145/3328905.3329511},
booktitle = {Proceedings of the 13th ACM International Conference on Distributed and Event-Based Systems},
pages = {139–150},
numpages = {12},
keywords = {IoT, replay, cloud functions, serverless},
location = {Darmstadt, Germany},
series = {DEBS ’19}
}
@inproceedings{10.1145/3326285.3329055,
author = {Liu, Liuyan and Tan, Haisheng and Jiang, Shaofeng H.-C. and Han, Zhenhua and Li, Xiang-Yang and Huang, Hong},
title = {Dependent Task Placement and Scheduling with Function Configuration in Edge Computing},
year = {2019},
isbn = {9781450367783},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3326285.3329055},
doi = {10.1145/3326285.3329055},
booktitle = {Proceedings of the International Symposium on Quality of Service},
articleno = {Article 20},
numpages = {10},
keywords = {task scheduling, edge computing, function configuration},
location = {Phoenix, Arizona},
series = {IWQoS ’19}
}
@article{10.1016/j.specom.2016.08.002,
author = {Liu, Yang and Nower, Naushin and Morita, Shota and Unoki, Masashi},
title = {Speech Enhancement of Instantaneous Amplitude and Phase for Applications in Noisy Reverberant Environments},
year = {2016},
issue_date = {November 2016},
publisher = {Elsevier Science Publishers B. V.},
address = {NLD},
volume = {84},
number = {C},
issn = {0167-6393},
url = {https://doi.org/10.1016/j.specom.2016.08.002},
doi = {10.1016/j.specom.2016.08.002},
journal = {Speech Commun.},
month = nov,
pages = {1–14},
numpages = {14},
keywords = {Speech enhancement, Gammatone filterbank, Kalman filter, Linear prediction, Instantaneous amplitude and phase}
}
@article{10.1561/2500000020,
author = {Madhavan, Ravichandhran and Ramalingam, G. and Vaswani, Kapil},
title = {A Framework For Efficient Modular Heap Analysis},
year = {2015},
issue_date = {January 2015},
publisher = {Now Publishers Inc.},
address = {Hanover, MA, USA},
volume = {1},
number = {4},
issn = {2325-1107},
url = {https://doi.org/10.1561/2500000020},
doi = {10.1561/2500000020},
journal = {Found. Trends Program. Lang.},
month = jan,
pages = {269–381},
numpages = {113},
keywords = {Pointer and heap analysis, Program analysis}
}
@inproceedings{10.5555/3081770.3081783,
author = {M\'{e}aux, Pierrick and Journault, Anthony and Standaert, Fran\c{c}ois-Xavier and Carlet, Claude},
title = {Towards Stream Ciphers for Efficient FHE with Low-Noise Ciphertexts},
year = {2016},
isbn = {9783662498897},
publisher = {Springer-Verlag},
address = {Berlin, Heidelberg},
booktitle = {Proceedings, Part I, of the 35th Annual International Conference on Advances in Cryptology --- EUROCRYPT 2016 - Volume 9665},
pages = {311–343},
numpages = {33}
}
@inproceedings{10.5555/3077629.3077652,
author = {Mebsout, Alain and Tinelli, Cesare},
title = {Proof Certificates for SMT-Based Model Checkers for Infinite-State Systems},
year = {2016},
isbn = {9780983567868},
publisher = {FMCAD Inc},
address = {Austin, Texas},
booktitle = {Proceedings of the 16th Conference on Formal Methods in Computer-Aided Design},
pages = {117–124},
numpages = {8},
location = {Mountain View, California},
series = {FMCAD ’16}
}
@inproceedings{10.1145/3210284.3219499,
author = {Meiundefinedner, Dominik},
title = {Towards Time Travel in Distributed Event-Sourced Systems},
year = {2018},
isbn = {9781450357821},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3210284.3219499},
doi = {10.1145/3210284.3219499},
booktitle = {Proceedings of the 12th ACM International Conference on Distributed and Event-Based Systems},
pages = {266–269},
numpages = {4},
keywords = {retroactive computing, event processing, event sourcing},
location = {Hamilton, New Zealand},
series = {DEBS ’18}
}
@inproceedings{10.5555/3357034.3357060,
author = {Mohan, Anup and Sane, Harshad and Doshi, Kshitij and Edupuganti, Saikrishna and Nayak, Naren and Sukhomlinov, Vadim},
title = {Agile Cold Starts for Scalable Serverless},
year = {2019},
publisher = {USENIX Association},
address = {USA},
booktitle = {Proceedings of the 11th USENIX Conference on Hot Topics in Cloud Computing},
pages = {21},
numpages = {1},
location = {Renton, WA, USA},
series = {HotCloud’19}
}
@article{10.5555/3135630.3135636,
author = {Moosbrugger, Patrick and Rozier, Kristin Y. and Schumann, Johann},
title = {R2U2: Monitoring and Diagnosis of Security Threats for Unmanned Aerial Systems},
year = {2017},
issue_date = {August 2017},
publisher = {Kluwer Academic Publishers},
address = {USA},
volume = {51},
number = {1},
issn = {0925-9856},
journal = {Form. Methods Syst. Des.},
month = aug,
pages = {31–61},
numpages = {31},
keywords = {FPGA, GPS spoofing, Linear temporal logic, Metric temporal logic, Runtime monitoring, Security, Bayesian networks, Unmanned aerial systems}
}
@inproceedings{10.1145/3239372.3239393,
author = {Morin, Brice and H\o{}genes, Jakob and Song, Hui and Harrand, Nicolas and Baudry, Benoit},
title = {Engineering Software Diversity: A Model-Based Approach to Systematically Diversify Communications},
year = {2018},
isbn = {9781450349499},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3239372.3239393},
doi = {10.1145/3239372.3239393},
booktitle = {Proceedings of the 21th ACM/IEEE International Conference on Model Driven Engineering Languages and Systems},
pages = {155–165},
numpages = {11},
location = {Copenhagen, Denmark},
series = {MODELS ’18}
}