-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathseminars.yaml
1077 lines (1077 loc) · 48.3 KB
/
seminars.yaml
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
---
- title: A Multi-Objective Optimization Scheduling Method Based on the Ant Colony Algorithm in Cloud Computing
speacker: 문영주
date: 2014-01-01T19:00:00.000+0900
location: 라이시움 408호
- title: VOCL - An Optimized Environment for Transparent Virtualization of Graphics Processing Units
speacker: 강지훈
date: 2014-03-28T19:00:00.000+0900
location: 라이시움 408호
- title: Exploiting Joint WifiBluetooth Trace to Predict People Movement
speacker: 송성진
date: 2014-04-04T19:00:00.000+0900
location: 라이시움 408호
- title: The Weighted Byzantine Agreement Problem
speacker: 임종범
date: 2014-04-11T19:00:00.000+0900
location: 라이시움 408호
- title: Server consolidation with migration control for virtualized data centers
speacker: 최희석
date: 2014-04-18T19:00:00.000+0900
location: 라이시움 408호
- title: A Virtualized Separation Kernel for Mixed Criticality Systems
speacker: 유태묵
date: 2014-05-02T19:00:00.000+0900
location: 라이시움 408호
- title: 'KMA: A Dynamic Memory Manager for OpenCL'
speacker: 강지훈
date: 2014-05-09T19:00:00.000+0900
location: 라이시움 408호
- title: Applicability of GPGPU Computing to Real Time AI Solutions in Games
speacker: 송성진
date: 2014-05-16T19:00:00.000+0900
location: 라이시움 408호
- title: Order-Preserving Renaming in Synchronous Systems with Byzantine Faults
speacker: 임종범
date: 2014-05-30T19:00:00.000+0900
location: 라이시움 408호
- title: Scientific Workflow Applications on Amazon EC2
speacker: 정대용
date: 2014-06-20T19:00:00.000+0900
location: 라이시움 408호
- title: A multi-objective ant colony system algorithm for virtual machine placement in cloud computing
speacker: 최희석
date: 2014-06-23T19:00:00.000+0900
location: 라이시움 408호
- title: RT-Xen Towards Real-time Hypervisor Scheduling in Xen
speacker: 유태묵
date: 2014-07-04T19:00:00.000+0900
location: 라이시움 408호
- title: An Improved Xen Credit Scheduler for IO Latency-Sensitive Applications on Multicores
speacker: 강지훈
date: 2014-07-11T19:00:00.000+0900
location: 라이시움 408호
- title: Optimation of Xen scheduler for multitasking
speacker: 송성진
date: 2014-07-18T19:00:00.000+0900
location: 라이시움 408호
- title: A Survey on Cloud Computing
speacker: 명노영
date: 2014-08-22T19:00:00.000+0900
location: 라이시움 408호
- title: Optimized Hypervisor Scheduler for Parallel Discrete Event Simulations on Virtual Machine Platforms
speacker: 문영주
date: 2014-08-29T19:00:00.000+0900
location: 라이시움 408호
- title: Energy-aware Load Balancing Policies for the Cloud Ecosystem
speacker: 최희석
date: 2014-09-12T19:00:00.000+0900
location: 라이시움 408호
- title: Scheduling para-virtualized virtual machines based on events
speacker: 유태묵
date: 2014-09-26T19:00:00.000+0900
location: 라이시움 408호
- title: Prioritizing Local Inter-Domain Communication in Xen
speacker: 강지훈
date: 2014-10-10T19:00:00.000+0900
location: 라이시움 408호
- title: 'VGRIS: virtualized GPU resource isolation and scheduling in cloud gaming'
speacker: 송성진
date: 2014-10-31T19:00:00.000+0900
location: 라이시움 408호
- title: Workflow Clustering Method Based on Process Similarity
speacker: 명노영
date: 2014-11-07T19:00:00.000+0900
location: 라이시움 408호
- title: Energy-credit scheduler; An energy-aware virtual machine scheduler for cloud systems
speacker: 문영주
date: 2014-11-14T19:00:00.000+0900
location: 라이시움 408호
- title: Scheduling overcommitted VM Behavior monitoring and dynamic switching frequency scaling
speacker: 유태묵
date: 2014-11-21T19:00:00.000+0900
location: 라이시움 408호
- title: Energy-efficiency enhanced virtual machine scheduling policy for mixed workloads in cloud environments
speacker: 최희석
date: 2014-12-05T19:00:00.000+0900
location: 라이시움 408호
- title: A Full GPU Virtualization Solution with Mediated Pass-Through
speacker: 강지훈
date: 2014-12-12T19:00:00.000+0900
location: 라이시움 408호
- title: Workload-Aware Credit Scheduler for Improving Network IO Performance in Virtualization Environment
speacker: 송성진
date: 2015-01-09T19:00:00.000+0900
location: 라이시움 408호
- title: Using Imbalance Metrics to Optimize Task Clustering in Scientific Workflow Execution
speacker: 명노영
date: 2015-03-06T19:00:00.000+0900
location: 라이시움 408호
- title: VUPIC - Virtual Machine Usage Based Placement in IaaS Cloud
speacker: 문영주
date: 2015-03-13T19:00:00.000+0900
location: 라이시움 408호
- title: Dynamic Virtual Machine Migration Algorithms Using Enhanced Energy Consumption Model for Green Cloud Data Centers
speacker: 최희석
date: 2015-03-20T19:00:00.000+0900
location: 라이시움 408호
- title: Towards Fair and Efficient SMP Virtual Machine Scheduling
speacker: 유태묵
date: 2015-03-27T19:00:00.000+0900
location: 라이시움 408호
- title: 'iTune: Engineering the Performance of Xen Hypervisor via Autonomous'
speacker: 강지훈
date: 2015-04-03T19:00:00.000+0900
location: 라이시움 408호
- title: Improving the Time of Live Migration Virtual Machine by Optimized Algorithm Scheduler Credit
speacker: 송성진
date: 2015-04-10T19:00:00.000+0900
location: 라이시움 408호
- title: A survey on resource allocation in high performance distributed computing systems
speacker: 명노영
date: 2015-04-17T19:00:00.000+0900
location: 라이시움 408호
- title: A design space for dynamic service level agreements in OpenStack
speacker: 문영주
date: 2015-05-01T19:00:00.000+0900
location: 라이시움 408호
- title: Towards Efficient Work-stealing in Virtualized Environments
speacker: 유태묵
date: 2015-05-29T19:00:00.000+0900
location: 라이시움 408호
- title: 'v Slicer: latency-aware virtual machine scheduling via differentiated-frequency CPU slicing'
speacker: 강지훈
date: 2015-06-05T19:00:00.000+0900
location: 라이시움 408호
- title: Poris - A Scheduler for Parallel Soft Real-Time Applications in Virtualized Environments
speacker: 송성진
date: 2015-06-19T19:00:00.000+0900
location: 라이시움 408호
- title: Automated Synthesis and Deployment of Cloud Applications
speacker: 명노영
date: 2015-06-26T19:00:00.000+0900
location: 라이시움 408호
- title: Performance-to-Power Ratio Aware Virtual Machine (VM) Allocation in Energy-Efficient Clouds
speacker: 최희석
date: 2015-08-07T19:00:00.000+0900
location: 라이시움 408호
- title: A Decentralized Multi-agent Approach to Job Scheduling in Cloud Environment
speacker: 문영주
date: 2015-08-21T19:00:00.000+0900
location: 라이시움 408호
- title: Real-Time Multi-Core Virtual Machine Scheduling in Xen
speacker: 유태묵
date: 2015-08-28T19:00:00.000+0900
location: 라이시움 408호
- title: IO Paravirtualization at the Device File Boundary
speacker: 강지훈
date: 2015-09-04T19:00:00.000+0900
location: 라이시움 408호
- title: Tool support for automated workload model creation from web server logs
speacker: 명노영
date: 2015-09-11T19:00:00.000+0900
location: 라이시움 408호
- title: Job Scheduling for Cloud Computing Integrated with Wireless Sensor Network
speacker: 문영주
date: 2015-09-25T19:00:00.000+0900
location: 라이시움 408호
- title: OpenMP task scheduling strategies for multicore NUMA systems
speacker: 송충건
date: 2015-10-16T19:00:00.000+0900
location: 라이시움 408호
- title: An Adaptive IO Prefetching Approach for Virtualized Data Centers
speacker: 송성진
date: 2015-11-06T19:00:00.000+0900
location: 라이시움 408호
- title: 'aDock: A Cloud Infrastructure Experimentation Environment based on OpenStack and Docker'
speacker: 최성민
date: 2015-11-13T19:00:00.000+0900
location: 라이시움 408호
- title: A solution of dynamic VMs placement problem for energy consumption optimization based on evolutionary game theory
speacker: 최희석
date: 2015-11-20T19:00:00.000+0900
location: 라이시움 408호
- title: Optimizing Soft Real-Time Scheduling Performance for Virtual Machines with SRT-Xen
speacker: 유태묵
date: 2015-11-27T19:00:00.000+0900
location: 라이시움 408호
- title: Boosting GPU Virtualization Performance with Hybrid Shadow Page Tables
speacker: 강지훈
date: 2015-12-04T19:00:00.000+0900
location: 라이시움 408호
- title: Activity recogntion on streaming sensor data
speacker: 명노영
date: 2016-01-08T19:00:00.000+0900
location: 라이시움 408호
- title: Dynamic Scheduling and Pricing in Wireless Cloud Computing
speacker: 문영주
date: 2016-01-15T19:00:00.000+0900
location: 라이시움 408호
- title: Analysis of the Impact of CPU Virtualization on Parallel Applications in Xen
speacker: 송충건
date: 2016-01-22T19:00:00.000+0900
location: 라이시움 408호
- title: REST Service Framework for Fine-Grained Resource Management in Container-Based Cloud
speacker: 최성민
date: 2016-02-05T19:00:00.000+0900
location: 라이시움 408호
- title: Resource preprocessing and optimal task scheduling in cloud computing environments
speacker: 문영주
date: 2016-03-04T19:00:00.000+0900
location: 라이시움 408호
- title: 'GPUvm: Why Not Virtualizing GPUs at the Hypervisor'
speacker: 강지훈
date: 2016-03-11T19:00:00.000+0900
location: 라이시움 408호
- title: Optimization of virtual resource management for cloud applications to cope with traffic burst
speacker: 최희석
date: 2016-03-18T19:00:00.000+0900
location: 라이시움 408호
- title: Scheduling parallel jobs with tentative runs and consolidation in the cloud
speacker: 송충건
date: 2016-04-01T19:00:00.000+0900
location: 라이시움 408호
- title: DocLite- A Docker-Based Lightweight Cloud Benchmarking Tool
speacker: 최성민
date: 2016-04-08T19:00:00.000+0900
location: 라이시움 408호
- title: GPUswap - Enabling Oversubscription of GPU Memory through Transparent Swapping
speacker: 강지훈
date: 2016-04-15T19:00:00.000+0900
location: 라이시움 408호
- title: A Priority-Based Scheduling Heuristic to Maximize Parallelism of Ready Tasks for DAG Applications
speacker: 문영주
date: 2016-05-27T19:00:00.000+0900
location: 라이시움 408호
- title: Fast and reliable restoration method of virtual resources on OpenStack
speacker: 최희석
date: 2016-06-03T19:00:00.000+0900
location: 라이시움 408호
- title: A Hybrid Approach To Processing Big Data Graphs on Memory-Restricted Systems
speacker: 명노영
date: 2016-06-17T19:00:00.000+0900
location: 라이시움 408호
- title: Service Clustering for Autonomic Clouds Using Random Forest
speacker: 송충건
date: 2016-06-24T19:00:00.000+0900
location: 라이시움 408호
- title: Contiguity and Locality in Backfilling Scheduling
speacker: 최성민
date: 2016-07-08T19:00:00.000+0900
location: 라이시움 408호
- title: MVAPICH2 over OpenStack with SR-IOV An Efficient Approach to Build HPC Clouds
speacker: 최희석
date: 2016-07-15T19:00:00.000+0900
location: 라이시움 408호
- title: gScale - Scaling up GPU Virtualization with Dynamic Sharing of Graphics Memory Space
speacker: 강지훈
date: 2016-08-05T19:00:00.000+0900
location: 라이시움 408호
- title: Automating Model Search for Large Scale Machine Learning
speacker: 명노영
date: 2016-08-12T19:00:00.000+0900
location: 라이시움 408호
- title: Improved auto control ant colony optimization using lazy ant approach for grid scheduling problem
speacker: 문영주
date: 2016-08-19T19:00:00.000+0900
location: 라이시움 408호
- title: Prediction mechanisms for monitoring state of cloud resources using Markov chain model
speacker: 송충건
date: 2016-08-26T19:00:00.000+0900
location: 라이시움 408호
- title: Toward Locality-aware Scheduling for Containerized Cloud Services
speacker: 최성민
date: 2016-09-02T19:00:00.000+0900
location: 라이시움 408호
- title: A Preemptive Execution System for GPGPU Computing
speacker: 강지훈
date: 2016-09-23T19:00:00.000+0900
location: 라이시움 408호
- title: Faster Jobs in Distributed Data Processing using Multi-Task Learning
speacker: 명노영
date: 2016-10-07T19:00:00.000+0900
location: 라이시움 408호
- title: Controlling the deployment of virtual machines on clusters and clouds for scientific computing in CBRAIN
speacker: 송충건
date: 2016-10-14T19:00:00.000+0900
location: 라이시움 408호
- title: Service Level and Performance Aware Dynamic Resource Allocation in Overbooked Data Centers
speacker: 최성민
date: 2016-11-11T19:00:00.000+0900
location: 라이시움 408호
- title: 'AutoElastic: Automatic Resource Elasticity for High Performance Applications in the Cloud'
speacker: 최희석
date: 2016-11-18T19:00:00.000+0900
location: 라이시움 408호
- title: PriDyn - Enabling Differentiated IO Services in Cloud Using Dynamic Priorities
speacker: 강지훈
date: 2016-12-02T19:00:00.000+0900
location: 라이시움 408호
- title: u-root. A Go-based. Firmware Embeddable Root File System with On-Demand Compilation
speacker: 이슬기
date: 2016-12-09T19:00:00.000+0900
location: 라이시움 408호
- title: Mobile Big Data Analytics Using Deep Learning and Apache Spark
speacker: 명노영
date: 2016-12-23T19:00:00.000+0900
location: 라이시움 408호
- title: Rich feature hierarchies for accurate object detection and semantic segmentation
speacker: 문영주
date: 2017-01-13T19:00:00.000+0900
location: 라이시움 408호
- title: 'vProbe: Scheduling Virtual Machines on NUMA Systems'
speacker: 송충건
date: 2017-01-20T19:00:00.000+0900
location: 라이시움 408호
- title: 'FemtoClouds: Leveraging Mobile Devices to Provide Cloud Service at the Edge'
speacker: 박봉우
date: 2017-02-03T19:00:00.000+0900
location: 라이시움 408호
- title: Resource-aware hybrid scheduling algorithm in heterogeneous distributed computing
speacker: 최희석
date: 2017-02-10T19:00:00.000+0900
location: 라이시움 408호
- title: A user mode CPU–GPU scheduling framework for hybrid workloads
speacker: 강지훈
date: 2017-02-17T19:00:00.000+0900
location: 라이시움 408호
- title: Spark versus Flink Understanding Performance in Big Data Analytics Frameworks
speacker: 명노영
date: 2017-03-03T19:00:00.000+0900
location: 라이시움 408호
- title: 'vScale: Automatic and Efficient Processor Scaling for SMP Virtual Machines'
speacker: 송충건
date: 2017-03-10T19:00:00.000+0900
location: 라이시움 408호
- title: Analysis, Modeling, and Simulation of Hadoop YARN MapReduce
speacker: 박봉우
date: 2017-03-17T19:00:00.000+0900
location: 라이시움 408호
- title: A lightweight plug-and-play elasticity service for self-organizing resource provisioning on parallel applications
speacker: 최희석
date: 2017-03-24T19:00:00.000+0900
location: 라이시움 408호
- title: A Cloud Gaming System Based on User-Level Virtualization and Its Resource Scheduling
speacker: 강지훈
date: 2017-04-07T19:00:00.000+0900
location: 라이시움 408호
- title: 'CHOPPER: Optimizing Data Partitioning for In-Memory Data Analytics Frameworks'
speacker: 명노영
date: 2017-04-14T19:00:00.000+0900
location: 라이시움 408호
- title: Decentralised workflow scheduling in volunteer computing systems
speacker: 송충건
date: 2017-04-21T19:00:00.000+0900
location: 라이시움 408호
- title: Boosting gLite with cloud augmented volunteer computing
speacker: 박봉우
date: 2017-05-19T19:00:00.000+0900
location: 라이시움 408호
- title: KeystoneML Optimizing Pipelines for Large Scale Advanced Analytics
speacker: 명노영
date: 2017-05-26T19:00:00.000+0900
location: 라이시움 408호
- title: Use of Reactive and Proactive Elasticity to Adjust Resources Provisioning in the Cloud Provider
speacker: 최희석
date: 2017-06-09T19:00:00.000+0900
location: 라이시움 408호
- title: Application-specific quantum for multi-core platform scheduler
speacker: 최희석
date: 2017-06-16T19:00:00.000+0900
location: 라이시움 408호
- title: 'CloudTalk: Enabling Distributed Application Optimisations in Public Clouds'
speacker: 송충건
date: 2017-06-30T19:00:00.000+0900
location: 라이시움 408호
- title: Distributed volunteer computing for solving ensemble learning problems
speacker: 박봉우
date: 2017-07-07T19:00:00.000+0900
location: 라이시움 408호
- title: 'LoGA: Low-overhead GPU accounting using events'
speacker: 강지훈
date: 2017-07-21T19:00:00.000+0900
location: 라이시움 408호
- title: 'Ernest: Efficient Performance Prediction for Large-Scale Advanced Analytics'
speacker: 명노영
date: 2017-07-28T19:00:00.000+0900
location: 라이시움 408호
- title: A Reliable Volunteer Computing System with Credibility-based Voting
speacker: 송충건
date: 2017-08-04T19:00:00.000+0900
location: 라이시움 408호
- title: Representing Job Scheduling for Volunteer Grid Environment using Online Container Stowage
speacker: 박봉우
date: 2017-08-11T19:00:00.000+0900
location: 라이시움 408호
- title: 'CtrlCloud: Performance-Aware Adaptive Control for Shared Resources in Clouds'
speacker: 송충건
date: 2017-10-20T19:00:00.000+0900
location: 라이시움 408호
- title: A framework to address inconstant user requirements in cloud SLAs management
speacker: 이재혁
date: 2017-11-10T19:00:00.000+0900
location: 라이시움 408호
- title: Matrix Computations and Optimization in Apache Spark
date: 2017-11-24T19:00:00.000+0900
location: 라이시움 408호
speacker: 명노영
- title: Cloud Resource Management With Turnaround Time Driven Auto-Scaling
date: 2018-01-05T19:00:00.000+0900
speacker: 최희석
location: 라이시움 408호
- title: Efficient consolidation-aware VCPU scheduling on multicore virtualization platform
date: 2018-01-12T19:00:00.000+0900
speacker: 박봉우
location: 라이시움 408호
- title: SLA-Based Resource Scheduling for Big Data Analytics as a Service in Cloud Computing Environements
date: 2018-01-19T19:00:00.000+0900
speacker: 이재혁
location: 라이시움 408호
- title: Raccoon
date: 2018-01-26T19:00:00.000+0900
speacker: 이재학
location: 라이시움 408호
- title: 'EAERS: An Enhanced Version of Autonomic and Elastic Resource Scheduling Framework for Cloud Applications'
date: 2018-02-02T19:00:00.000+0900
speacker: 최희석
location: 라이시움 408호
- title: Doris, An Adaptive Soft Real-Time Scheduler in Virtualized Environments
date: 2018-02-09T19:00:00.000+0900
speacker: 강지훈
location: 라이시움 408호
- title: TensorFlow A system for large-scale machine learning
date: 2018-04-06T19:00:00.000+0900
speacker: 명노영
location: 라이시움 408호
- title: 'ppXen: A hypervisor CPU scheduler for mitigating performance variability in virtualized clouds'
date: 2018-04-13T19:00:00.000+0900
speacker: 박봉우
location: 라이시움 408호
- title: 'RTVirt: Enabling Time-sensitive Computing on Virtualized Systems through Cross-layer CPU Scheduling'
date: 2018-05-04T19:00:00.000+0900
speacker: 이재학
location: 라이시움 408호
- title: Resource-aware virtual machine migration in IoT cloud
date: 2018-05-18T19:00:00.000+0900
speacker: 최희석
location: 라이시움 408호
- title: 'FairGV: Fair and Fast GPU Virtualization'
date: 2018-05-25T19:00:00.000+0900
speacker: 강지훈
location: 라이시움 408호
- title: I/O Congestion-Aware Computing Resource Assignment and Scheduling in Virtualized Cloud Environments
date: 2018-06-08T19:00:00.000+0900
speacker: 박봉우
location: 라이시움 408호
- title: Tableau
date: 2018-07-06T19:00:00.000+0900
speacker: 이재학
location: 라이시움 408호
- title: A load-aware resource allocation and task scheduling for the emerging cloudlet system
date: 2018-07-13T19:00:00.000+0900
speacker: 이재학
location: 라이시움 408호
- title: Efficient Service Handoff Across Edge Servers via Docker Container Migration
date: 2018-07-27T19:00:00.000+0900
speacker: 장준범
location: 라이시움 408호
- title: Learning-Based Memory Allocation Optimization for Delay-Sensitive Big Data Processing
date: 2018-08-03T19:00:00.000+0900
speacker: 명노영
location: 라이시움 408호
- title: Deploying High Throughput Scientific Workflows on Container Schedulers with Makeflow and Mesos
date: 2018-08-10T19:00:00.000+0900
speacker: 권민수
location: 라이시움 408호
- title: Large-scale cluster management at Google with Borg
date: 2018-08-17T19:00:00.000+0900
speacker: 황승현
location: 라이시움 408호
- title: Enhancing performance of IoT applications with load prediction and cloud elasticity
date: 2018-08-24T19:00:00.000+0900
speacker: 최희석
location: 라이시움 408호
- title: Efficient Sharing and Fine-Grained Scheduling of Virtualized GPU Resources
date: 2018-08-31T19:00:00.000+0900
speacker: 강지훈
location: 라이시움 408호
- title: Re-optimizing Data-Parallel Computing
date: 2018-09-07T19:00:00.000+0900
speacker: 명노영
location: 라이시움 408호
- title: Smart VM co-scheduling with the precise prediction of performance characteristics
date: 2018-09-14T19:00:00.000+0900
speacker: 박봉우
location: 라이시움 408호
- title: An accurate resource scheduling system for virtual machines based on CPU load monitoring and assessment
date: 2018-09-28T19:00:00.000+0900
speacker: 이재학
location: 라이시움 408호
- title: Container-Based Cloud Platform for Mobile Computation Offloading
date: 2018-10-12T19:00:00.000+0900
speacker: 장준범
location: 라이시움 408호
- title: 'DMPO: Dynamic mobility-aware partial offloading in mobile edge computing'
date: 2018-12-14T19:00:00.000+0900
speacker: 최희석
location: 라이시움 408호
- title: A Virtual Multi-Channel GPU Fair Scheduling Method for Virtual Machines
date: 2019-01-04T19:00:00.000+0900
speacker: 강지훈
location: 라이시움 408호
- title: Riffle Optimized Shuffle Service for Large-Scale Data Analytics
date: 2019-01-11T19:00:00.000+0900
speacker: 명노영
location: 라이시움 408호
- title: Dynamic Control of CPU Usage in a Lambda Platform
speacker: 이재학
date: 2019-01-18T19:00:00.000+0900
location: 라이시움 408호
- title: Recovery for overloaded mobile edge computing
date: 2019-01-25T19:00:00.000+0900
speacker: 장준범
location: 라이시움 408호
- title: 'Hyperledger Fabric: A Distributed Operating System for Permissioned Blockchains'
date: 2019-02-15T19:00:00.000+0900
speacker: 권민수
location: 라이시움 408호
- title: 'SOCK: Rapid Task Provisioning with Serverless-Optimized Containers'
date: 2019-02-15T19:00:00.000+0900
speacker: 황승현
location: 라이시움 408호
- title: 'A scheduling algorithm for autonomous driving tasks on mobile edge computing servers'
date: 2019-03-15T19:00:00.000+0900
speacker: 최희석
location: 라이시움 408호
- title: 'MASK - Redesigning the GPU Memory Hierarchy to Support Multi-Application Concurrency'
date: 2019-03-22T19:00:00.000+0900
speacker: 강지훈
location: 라이시움 408호
- title: 'TerrierTail: Mitigating Tail Latency of Cloud Virtual Machines'
date: 2019-03-29T19:00:00.000+0900
speacker: 이재학
location: 라이시움 408호
- title: 'Improving Spark Application Throughput Via Memory Aware Task Co-location:A Mixture of Experts Approach'
date: 2019-04-05T19:00:00.000+0900
speacker: 명노영
location: 라이시움 408호
- title: 'Autonomous data driven surveillance and rectification system using in-vehicle sensors for intelligent transportation systems (ITS)'
date: 2019-04-12T19:00:00.000+0900
speacker: 장준범
location: 라이시움 408호
- title: 'Performance Benchmarking and Optimizing Hyperledger Fabric Blockchain Platform'
date: 2019-04-19T19:00:00.000+0900
speacker: 권민수
location: 라이시움 408호
- title: 'SAND: Towards High-Performance Serverless Computing'
date: 2019-05-03T19:00:00.000+0900
speacker: 황승현
location: 라이시움 408호
- title: 'A deadline-constrained multi-objective task scheduling algorithm in Mobile Cloud environments'
date: 2019-05-24T19:00:00.000+0900
speacker: 최희석
location: 라이시움 408호
- title: 'Using Criticality of GPU Accesses in Memory Management for CPU-GPU Heterogeneous Multi-Core Processors'
date: 2019-06-21T19:00:00.000+0900
speacker: 강지훈
location: 라이시움 408호
- title: 'A Performance Prediction Framework for Irregular Applications'
date: 2019-06-28T19:00:00.000+0900
speacker: 명노영
location: 라이시움 408호
- title: 'vSimilar: A high-adaptive VM scheduler based on the CPU pool mechanism'
date: 2019-07-05T19:00:00.000+0900
speacker: 이재학
location: 라이시움 408호
- title: 'An empirical study on real-time data analytics for connected cars : Sensor-based applications for smart cars'
date: 2019-07-19T19:00:00.000+0900
speacker: 장준범
location: 라이시움 408호
- title: 'Data-Driven Serverless Functions for Object Storage'
date: 2019-08-9T19:00:00.000+0900
speacker: 황승현
location: 라이시움 408호
- title: 'An Energy-Efficient and Deadline-Aware Task Offloading Strategy Based on Channel Constraint for Mobile Cloud Workflows'
date: 2019-08-16T19:00:00.000+0900
speacker: 최희석
location: 라이시움 408호
- title: 'GMOD - A Dynamic GPU Memory Overflow Detector'
date: 2019-09-06T19:00:00.000+0900
speacker: 강지훈
location: 애기능생활관 303호
- title: 'Machine Learning for Performance Prediction of Spark Cloud Applcations'
date: 2019-09-20T19:00:00.000+0900
speacker: 명노영
location: 애기능생활관 303호
- title: 'Design and Implementation on Hyperledger-Based Emission Trading System'
date: 2019-09-27T19:00:00.000+0900
speacker: 권민수
location: 애기능생활관 303호
- title: 'vCPU as a Container: Towards Accurate CPU Allocation for VM'
date: 2019-10-04T19:00:00.000+0900
speacker: 이재학
location: 애기능생활관 303호
- title: 'Data transmission plan adaptation complementing strategic time-network selection for connected vehicles'
date: 2019-10-11T19:00:00.000+0900
speacker: 장준범
location: 애기능생활관 303호
- title: 'Delay-Aware Accident Detection and Response System Using Fog Computing'
date: 2019-10-25T19:00:00.000+0900
speacker: 장준범
location: 애기능생활관 303호
- title: 'Optimizing Validation Phase of Hyperledger Fabric'
date: 2019-11-15T19:00:00.000+0900
speacker: 권민수
location: 애기능생활관 303호
- title: 'Outsourced Proofs of Retrievability'
date: 2020-01-10T19:00:00.000+0900
speacker: 황승현
location: 애기능생활관 303호
- title: 'On Uncoordinated Service Placement in Edge-Clouds'
date: 2020-01-17T19:00:00.000+0900
speacker: 최희석
location: 애기능생활관 303호
- title: 'Throughput-Oriented GPU Memory Allocation'
date: 2020-02-07T19:00:00.000+0900
speacker: 강지훈
location: 애기능생활관 303호
- title: 'Performance Characterization of DNN Training'
date: 2020-02-21T19:00:00.000+0900
speacker: 명노영
location: 애기능생활관 302호
- title: 'An efficient virtual cpu scheduling in cloud computing'
date: 2020-08-07T19:00:00.000+0900
speacker: 이재학
location: 애기능생활관 302호
- title: 'DeepPerf Performance Prediction for Configurable Software with Deep Sparse Neural Network'
date: 2020-10-30T19:00:00.000+0900
speacker: 명노영
location: 애기능생활관 302호
- title: 'Adaptive AI-based auto-scaling for Kubernetes'
date: 2020-11-06T19:00:00.000+0900
speacker: 장용현
location: 애기능생활관 301호
- title: 'A NSGA-II-based Approach for Multi-objective Micro-service Allocation in Container-based Clouds'
date: 2020-11-13T19:00:00.000+0900
speacker: 정진원
location: 애기능생활관 301호
- title: 'Robustness-oriented k Edge Server Placement'
date: 2020-12-18T19:00:00.000+0900
speacker: 송충건
location: ZOOM 온라인 화상회의
- title: 'Effectively Mitigting I/O Inactiveiy in vCPU Scheduling'
date: 2021-01-08T19:00:00.000+0900
speacker: 이재학
location: ZOOM 온라인 화상회의
- title: 'MARBLE: A Multi-GPU Aware Job Scheduler for Deep Learning on HPC Systems'
date: 2021-01-15T19:00:00.000+0900
speacker: 정진원
location: ZOOM 온라인 화상회의
- title: 'Horizontal and Vertical Scaling of Container-based Applications using Reinforcement Learning'
date: 2021-02-05T19:00:00.000+0900
speacker: 장용현
location: ZOOM 온라인 화상회의
- title: 'Costless: Optimizing Cost of Serverless Computing through Function Fusion and Placement'
date: 2021-03-05T19:00:00.000+0900
speacker: 김세진
location: ZOOM 온라인 화상회의
- title: 'Diminishing Returns and Deep Learning for Adaptive CPU Resource Allocation of Containers'
date: 2021-03-19T19:00:00.000+0900
speacker: 명노영
location: ZOOM 온라인 화상회의
- title: 'Remote regions: a simple abstraction for remote memory'
date: 2021-03-26T19:00:00.000+0900
speacker: 송충건
location: ZOOM 온라인 화상회의
- title: 'Fine-grained Autoscaling with In-VM Containers and VM Introspection'
date: 2021-04-02T19:00:00.000+0900
speacker: 이재학
location: ZOOM 온라인 화상회의
- title: 'DRAGON: A Dynamic Scheduling and Scaling Controller for Managing Distributed Deep Learning Jobs in Kubernetes Cluster'
date: 2021-04-09T19:00:00.000+0900
speacker: 정진원
location: ZOOM 온라인 화상회의
- title: 'RLSK: A Job Scheduler for Federated Kubernetes Clusters based on Reinforcement Learning'
date: 2021-04-16T19:00:00.000+0900
speacker: 장용현
location: ZOOM 온라인 화상회의
- title: 'Efficient Fault Tolerance through Dynamic Node Replacement'
date: 2021-05-14T19:00:00.000+0900
speacker: 김세진
location: ZOOM 온라인 화상회의
- title: 'AutoSync: Learning to Synchronize for Data-Parallel Distributed Deep Learning'
date: 2021-05-21T19:00:00.000+0900
speacker: 명노영
location: ZOOM 온라인 화상회의
- title: 'Ownership: A Distributed Futures System for Fine-Grained Tasks'
date: 2021-05-28T19:00:00.000+0900
speacker: 송충건
location: ZOOM 온라인 화상회의
- title: 'ES2: Building an Efficient and Responsive Event Path for I/O Virtualization'
date: 2021-06-04T19:00:00.000+0900
speacker: 이재학
location: ZOOM 온라인 화상회의
- title: 'Optimus: An Efficient Dynamic Resource Scheduler for Deep Learning Clusters'
date: 2021-06-11T19:00:00.000+0900
speacker: 정진원
location: ZOOM 온라인 화상회의
- title: 'Parallelizing Machine Learning as a service for the end-user'
date: 2021-07-02T19:00:00.000+0900
speacker: 장용현
location: ZOOM 온라인 화상회의
- title: 'Draco: Architectural and Operating System Support for System Call Security'
date: 2021-07-09T19:00:00.000+0900
speacker: 김세진
location: ZOOM 온라인 화상회의
- title: 'Accelerated serverless computing based on GPU virtualization'
date: 2021-07-16T19:00:00.000+0900
speacker: 김명현
location: ZOOM 온라인 화상회의
- title: 'FIRM: An Intelligent Fine-Grained Resource Management Framework for SLO-Oriented Microservices'
date: 2021-07-23T19:00:00.000+0900
speacker: 유문상
location: ZOOM 온라인 화상회의
- title: 'Online scheduling of heterogeneous distributed machine learning jobs'
date: 2021-07-30T19:00:00.000+0900
speacker: 정진원
location: ZOOM 온라인 화상회의
- title: 'CRAM: a Container Resource Allocation Mechanism for Big Data Streaming Applications'
date: 2021-08-06T19:00:00.000+0900
speacker: 송충건
location: ZOOM 온라인 화상회의
- title: 'Mitigating excessive vCPU spinning in VM-agnostic KVM'
date: 2021-08-13T19:00:00.000+0900
speacker: 이재학
location: ZOOM 온라인 화상회의
- title: 'A-SARSA: A Predictive Container Auto-Scaling Algorithm Based on Reinforcement Learning'
date: 2021-08-20T19:00:00.000+0900
speacker: 장용현
location: ZOOM 온라인 화상회의
- title: Performance Optimization for Edge-Cloud Serverless Platforms via Dynamic Task Placement
speacker: 김세진
date: 2021-08-27T19:00:00.000+0900
location: ZOOM 온라인 화상회의
- title: Predicting the End-to-End Tail Latency of Containerized Microservices in the Cloud
speacker: 유문상
date: 2021-09-10T19:00:00.000+0900
location: ZOOM 온라인 화상회의
- title: 'KubeShare: A Framework to Manage GPUs as First-Class and Shared Resources in Container Cloud'
speacker: 김명현
date: 2021-09-17T19:00:00.000+0900
location: ZOOM 온라인 화상회의
- title: 'Machine Learning for Load Balancing in Cloud Datacenters'
speacker: 성광현
date: 2021-09-24T19:00:00.000+0900
location: ZOOM 온라인 화상회의
- title: 'Shared-Memory Communication for Containerized Workflows'
speacker: 송충건
date: 2021-10-01T19:00:00.000+0900
location: ZOOM 온라인 화상회의
- title: 'LaSS: Running Latency Sensitive Serverless Computations at the Edge'
speacker: 김명현
date: 2021-10-08T19:00:00.000+0900
location: ZOOM 온라인 화상회의
- title: 'Tiresias: A GPU Cluster Manager for Distributed Deep Learning'
speacker: 정진원
date: 2021-10-15T19:00:00.000+0900
location: ZOOM 온라인 화상회의
- title: 'Concurrent Container Scheduling on Heterogeneous Clusters with Multi-Resource Constraints'
speacker: 유문상
date: 2021-10-29T19:00:00.000+0900
location: ZOOM 온라인 화상회의
- title: 'Skedulix: Hybrid Cloud Scheduling for Cost-Efficient Execution of Serverless Applications'
speacker: 김세진
date: 2022-01-07T19:00:00.000+0900
location: ZOOM 온라인 화상회의
- title: 'Virtualization-Aware Traffic Control for Soft Real-Time Network Traffic on Xen'
speacker: 이재학
date: 2022-01-14T19:00:00.000+0900
location: ZOOM 온라인 화상회의
- title: 'VM Performance Maximization and PM Load Balancing Virtual Machine Placement in Cloud'
speacker: 성광현
date: 2022-01-21T19:00:00.000+0900
location: ZOOM 온라인 화상회의
- title: 'PS2: Parameter Server on Spark'
speacker: 김형준
date: 2022-01-28T19:00:00.000+0900
location: ZOOM 온라인 화상회의
- title: 'Algorithms for Scheduling Scientific Workflows on Serverless Architecture'
speacker: 송충건
date: 2022-02-04T19:00:00.000+0900
location: ZOOM 온라인 화상회의
- title: 'S2H: Hypervisor as a setter within Virtualized Network I/O for VM isolation on cloud'
speacker: 이재학
date: 2022-02-18T19:00:00.000+0900
location: ZOOM 온라인 화상회의
- title: 'Container lifecycle-aware scheduling for serverless computing'
speacker: 김세진
date: 2022-02-25T19:00:00.000+0900
location: ZOOM 온라인 화상회의
- title: 'Modeling of Deep Neural Network (DNN) Placement and Inference in Edge Computing'
speacker: 김명현
date: 2022-03-04T19:00:00.000+0900
location: ZOOM 온라인 화상회의
- title: 'Prague: High-Performance Heterogeneity-Aware Asynchronous Decentralized Training'
speacker: 김형준
date: 2022-03-25T19:00:00.000+0900
location: ZOOM 온라인 화상회의
- title: 'Xanadu: Mitigating cascading cold starts in serverless function chain deployments'
speacker: 유문상
date: 2022-04-01T19:00:00.000+0900
location: ZOOM 온라인 화상회의
- title: 'Resource Management of Maritime Edge Nodes for Collected Data Feedback'
speacker: 성광현
date: 2022-04-08T19:00:00.000+0900
location: ZOOM 온라인 화상회의
- title: 'Multi-objective Container Deployment on Heterogeneous Clusters'
speacker: 송충건
date: 2022-04-15T19:00:00.000+0900
location: ZOOM 온라인 화상회의
- title: 'FlexVF: Adaptive network device services in a virtualized environment'
speacker: 이재학
date: 2022-05-06T19:00:00.000+0900
location: 애기능생활관 302호 (Zoom 동시 송출)
- title: 'Optimal Application Deployment in Mobile Edge Computing Environment'
speacker: 성광현
date: 2022-05-27T19:00:00.000+0900
location: 애기능생활관 302호 (Zoom 동시 송출)
- title: 'Faasm: Lightweight Isolation for Efficient Stateful Serverless Computing'
speacker: 김명현
date: 2022-06-03T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'FaaSNet: Scalable and Fast Provisioning of Custom Serverless Container Runtimes at Alibaba Cloud Function Compute'
speacker: 김세진
date: 2022-06-10T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'Asynchronous Decentralized Parallel Stochastic Gradient Descent'
speacker: 김형준
date: 2022-06-24T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'MEAD: Model-Based Vertical Auto-Scaling for Data Stream Processing'
speacker: 송충건
date: 2022-07-15T19:00:00.000+0900
location: 애기능생활관 303호 (Zoom 동시 송출)
- title: 'Paratick: Reducing Timer Overhead in Virtual Machines'
speacker: 이재학
date: 2022-07-22T19:00:00.000+0900
location: 애기능생활관 304호 (Zoom 동시 송출)
- title: 'Mitigating Cold Start Problem in Serverless Computing with Function Fusion'
speacker: 김세진
date: 2022-07-29T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'Segcache: a memory-efficient and scalable in-memory key-value cache for small objects'
speacker: 김명현
date: 2022-08-19T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'Measurement Noise Recommendation for Efficient Kalman Filtering over a Large Amount of Sensor Data'
speacker: 성광현
date: 2022-08-26T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'Stochastic Gradient Push for Distributed Deep Learning'
speacker: 김형준
date: 2022-09-02T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'A two-stage container management in the cloud for optimizing the load balancing and migration cost'
speacker: 송충건
date: 2022-09-16T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'vSMT-IO: Improving I/O Performance and Efficiency on SMT Processors in Virtualized Clouds'
speacker: 이재학
date: 2022-10-07T19:00:00.000+0900
location: 애기능생활관 302호 (Zoom 동시 송출)
- title: 'Firecracker: Lightweight Virtualization for Serverless Applications'
speacker: 김명현
date: 2022-10-21T19:00:00.000+0900
location: 애기능생활관 302호 (Zoom 동시 송출)
- title: 'IoT Implementation of Kalman Filter to Improve Accuracy of Air Quality Monitoring and Prediction'
speacker: 성광현
date: 2022-10-28T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'Resource Elasticity In Distributed Deep Learning'
speacker: 김형준
date: 2022-11-04T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'Exploring Potential for Non-Disruptive Vertical Auto Scaling and Resource Estimation in Kubernetes'
speacker: 백선화
date: 2023-01-20T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'Disaggregated Cloud Memory with Elastic Block Management'
speacker: 강태신
date: 2023-02-03T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'A task scheduling algorithm considering game theory designed for energy management in cloud computing'
speacker: 송충건
date: 2023-02-10T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'Balancing Efficiency and Fairness in Heterogeneous GPU Clusters for Deep Learning'
speacker: 김형준
date: 2023-02-17T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'DeepScaling: microservices autoscaling for stable CPU utilization in large scale cloud systems'
speacker: 백선화
date: 2023-03-17T19:00:00.000+0900
location: 애기능생활관 302호 (Zoom 동시 송출)
- title: 'A new container scheduling algorithm based on multi-objective optimization'
speacker: 강태신
date: 2023-03-31T19:00:00.000+0900
location: 애기능생활관 342호 (Zoom 동시 송출)
- title: 'KneeScale: Efficient Resource Scaling for Serverless Computing at the Edge'
speacker: 송충건
date: 2023-04-07T19:00:00.000+0900
location: 애기능생활관 302호 (Zoom 동시 송출)
- title: 'KungFu: Making Training in Distributed Machine Learning Adaptive'
speacker: 김형준
date: 2023-04-14T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'Pufferfish: Container-driven Elastic Memory Management for Data-intensive Applications'
speacker: 강태신
date: 2023-05-19T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'MIRAS: Model-based Reinforcement Learning for Microservice Resource Allocation over Scientific Workflows'
speacker: 백선화
date: 2023-05-26T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'Adaptive AI-based auto-scaling for Kubernetes'
speacker: 김동균
date: 2023-06-02T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'QoS Aware FaaS for Heterogeneous Edge-Cloud Continuum'
speacker: 임규정
date: 2023-06-09T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'Towards cost-aware VM migration to maximize the profit in federated clouds'
speacker: 박호근
date: 2023-07-07T19:00:00.000+0900
location: 애기능생활관 302호 (Zoom 동시 송출)
- title: 'Community-based Placement of Registries to Speed up Application Deployment on Edge Computing'
speacker: 송충건
date: 2023-07-14T19:00:00.000+0900
location: 애기능생활관 302호 (Zoom 동시 송출)
- title: 'TiFL: A Tier-based Federated Learning System'
speacker: 김형준
date: 2023-07-21T19:00:00.000+0900
location: 애기능생활관 302호 (Zoom 동시 송출)
- title: 'Prediction-Based Power Oversubscription in Cloud Platforms'
speacker: 강태신
date: 2023-07-28T19:00:00.000+0900
location: 애기능생활관 302호 (Zoom 동시 송출)
- title: 'Predictive Autoscaling of Microservices Hosted in Fog Microdata Center'
speacker: 김동균
date: 2023-08-04T19:00:00.000+0900
location: 애기능생활관 302호 (Zoom 동시 송출)
- title: 'Jingwei: An Efficient and Adaptable Data Migration Strategy for Deduplicated Storage Systems'
speacker: 임규정
date: 2023-08-11T19:00:00.000+0900
location: 애기능생활관 302호 (Zoom 동시 송출)
- title: 'MIRAGE: A consolidation aware migration avoidance genetic job scheduling algorithm for virtualized data centers'
speacker: 박호근
date: 2023-08-18T19:00:00.000+0900
location: 애기능생활관 302호 (Zoom 동시 송출)
- title: 'Mu: An Efficient, Fair and Responsive Serverless Framework for Resource-Constrained Edge Clouds'
speacker: 송충건
date: 2023-09-08T19:00:00.000+0900
location: 애기능생활관 302호 (Zoom 동시 송출)
- title: 'Pollux: Co-adaptive Cluster Scheduling for Goodput-Optimized Deep Learning'
speacker: 김형준
date: 2023-10-06T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'Communication-Aware Container Placement and Reassignment in Large-Scale Internet Data Centers'
speacker: 강태신
date: 2023-10-13T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'Delay Aware Container Scheduling in Kubernetess'
speacker: 박호근
date: 2023-11-10T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'Predictive Hybrid Autoscaling for Containerized Applications'
speacker: 김동균
date: 2023-11-24T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'Popularity-Based Data Placement with Load Balancing in Edge Computing'
speacker: 임규정
date: 2023-12-29T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'NetMARKS: Network Metrics-Aware Kubernetes Scheduler Powered by Service Mesh'
speacker: 강민우
date: 2024-01-05T19:00:00.000+0900
location: 애기능생활관 301호 (Zoom 동시 송출)
- title: 'MR-DRO: A Fast and Efficient Task Offloading Algorithm in Heterogeneous Edge/Cloud Computing Environments'
speacker: 김명준
date: 2024-03-08T19:00:00.000+0900