summaryrefslogtreecommitdiffstats
path: root/lunch.html
blob: af3a35a10278794dd0e4faf382db25bdb0c556ca (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>Real-Time Systems at The University of North Carolina at Chapel Hill</title>
  <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
  <link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
  <div id="container">
    <div id="header">
      <h1>Real-Time Systems: Cyber-Physical Systems Lunch</h1>
      <p>at The University of North Carolina at Chapel Hill</p>
    </div>
    <div id="tabs10">
      <ul>
        <li><a href="./index.html"><span>Welcome</span></a></li>
        <li><a href="./people.html"><span>People</span></a></li>
        <li><a href="./papers.html"><span>Papers</span></a></li>
        <li><a href="./photos.html"><span>Photos</span></a></li>
        <li><a href="./lunch.html"><span>Real-Time Lunch</span></a></li>
        <li><a href="./projects.html"><span>Projects</span></a></li>
        <li><a href="./conferences.html"><span>Conferences</span></a></li>
      </ul>
    </div>
    <div id="container2">
      <div id="content">
        <h2>Real-Time Lunch</h2>
        <p>RT Lunch is a weekly seminar focussed on current research in real-time systems and related fields. It is open to all and a great way to get to know UNC's Real-Time Systems group. <em>Y'all should come!</em>
        </p>
        <p>We also have a weekly <a href="litmuslunch.html">LITMUS<sup>RT</sup> Lunch</a> as well.</p>
        <h2>Mailing List</h2>
        <p>RT Lunch is coordinated via our mailing list <a href="mailto:rtlunch@listserv.unc.edu">rtlunch@listserv.unc.edu</a>. This list is also used to share other relevant news and to coordinate upcoming events. All members of the Real-Time Systems group should subscribe to this list.
        </p>

        <h2>Time and Location</h2>
        <p>
        For the Fall 2017 semester, RT Lunch is held each Wednesday from 12:30 PM to 1:30 PM in FB 141.</p>

        <h2> Fall 2017</h2>
    <table class="event">
        <tr class="heading">
                <td>Date</td>
                <td>Presenter</td>
                <td>Topic</td>
        </tr>
 <tr>
                <td>11/29/2017</td>
    <td>Sergey Voronov and Stephen Tang</td>
    <td>PRP Practice Talks
    </td>
    </tr>
        </tr>
 <tr>
                <td>11/22/2017</td>
    <td>--</td>
    <td>No RT Lunch: Thanksgiving Break
    </td>
    </tr>
        </tr>
 <tr>
                <td>11/15/2017</td>
    <td>Kecheng Yang</td>
    <td>On the Soft Real-Time Optimality of Global EDF on Uniform Multiprocessors
    </td>
    </tr>
        </tr>
        <tr>


 <tr>
                <td>11/8/2017</td>
    <td>Tanya Amert</td>
    <td>GPU Scheduling on the NVIDIA TX2: Hidden Details Revealed
    </td>
    </tr>
        </tr>
        <tr>
                <td>11/1/2017</td>
    <td>Namhoon Kim</td>
    <td>Discussion of recent work
    </td>
    </tr>
        </tr>

        <tr>
                <td>10/25/2017</td>
    <td>Ming Yang</td>
    <td>Discussion of recent work
    </td>
    </tr>
        </tr>
        <tr>
                <td>10/18/2017</td>
    <td>--</td>
    <td>No RT Lunch: Fall Break
    </td>
    </tr>
        </tr>
        <tr>
                <td>10/11/2017</td>
    <td>Nathan Otterness</td>
    <td>Discussion of recent GPU-related work
    </td>
    </tr>
        </tr>
        <tr>
                <td>10/4/2017</td>
    <td>--</td>
    <td>No RT Lunch: RTNS Conference
    </td>
    </tr>
        </tr>
        <tr>
                <td>9/27/2017</td>
    <td>Catherine Nemitz</td>
    <td>Real-Time Multiprocessor Locks with Nesting: Optimizing the Common Case
    </td>
    </tr>
        </tr>
        <tr>
                <td>9/20/2017</td>
    <td>Stephen Tang</td>
    <td>Supporting Mode Changes while Providing Hardware Isolation in Mixed-Criticality Multicore Systems
    </td>
    </tr>
        </tr>
        <tr>
                <td>9/13/2017</td>
    <td>Sergey Voronov</td>
    <td>Whiteboard discussion of neural nets
    </td>
    </tr>
        </tr>
        <tr>
                <td>9/6/2017</td>
    <td>Tanya Amert</td>
    <td>Whiteboard discussion of recent GPU-related work
    </td>
    </tr>
        </tr>
        <tr>
                <td>8/30/2017</td>
    <td>Sims Osborne</td>
    <td>Constructing Words with High Distinct Square Densities
    </td>
    </tr>
        </tr>
        <tr>
                <td>8/23/2017</td>
    <td>Lunch</td>
    <td>at R&amp;R Grill</a>
    </td>
    </tr>
        </tr>
        </table>

	<h2> Spring 2017</h2>
    <table class="event">
    	<tr class="heading">
        	<td>Date</td>
                <td>Presenter</td>
                <td>Topic</td>
	</tr>
	<tr>
		<td>4/12/2017</td>
    <td>Nathan Otterness</td>
    <td>An Evaluation of the NVIDIA TX1 for Supporting Real-Time Computer-Vision Workloads
    </td>
    </tr>
	</tr>
	<tr>
		<td>3/29/2017</td>
    <td>Chong Shao</td>
    <td>Generic Framework for Prioritizing Content of Interest in Multimedia Data Compression
    </td>
    </tr>
	</tr>
	<tr>
		<td>3/8/2017</td>
    <td>Stefanos Skalistis</td>
    <td>BIP: a Rigorous way to System Design
    </td>
    </tr>
	</tr>
	<tr>
		<td>3/1/2017</td>
    <td>Catherine Nemitz</td>
    <td>Recent work: Real-Time Multiprocessor Locks with Nesting: Optimizing the Common Case
    </td>
    </tr>
	</tr>
	<tr>
		<td>2/22/2017</td>
    <td>Sergey Voronov</td>
    <td>Recent work
    </td>
    </tr>
	</tr>
	<tr>
		<td>2/15/2017</td>
    <td>Abhishek Singh</td>
    <td>Recent work
    </td>
    </tr>
	</tr>
	<tr>
		<td>2/8/2017</td>
    <td>Abhishek Singh, Micaiah Chisholm</td>
    <td>Recent work
    </td>
    </tr>
	</tr>
	<tr>
		<td>2/1/2017</td>
    <td>Kecheng Yang, Abhishek Singh</td>
    <td>Recent work
    </td>
    </tr>
	</tr>
		<td>1/18/2017</td>
    <td>Namhoon Kim, Micaiah Chisholm</td>
    <td>Recent work
    </td>
    </tr>
	<tr>
		<td width ='10%'>1/11/2017</td>
    <td width ='30%'>Catherine Nemitz, Calvin Deutschbein, Ming Yang, Nathan Otterness</td>
    <td>Recent work
    </td>
  </tr>
	</table>


	<h2> Fall 2016</h2>
    <table class="event">
    	<tr class="heading">
        	<td>Date</td>
                <td width ='25%'>Presenter</td>
                <td>Topic</td>
	</tr>
	<tr>
		<td>11/16/2016</td>
    <td>Namhoon Kim</td>
    <td>Reconciling the Tension Between Hardware Isolation and Data Sharing in Mixed-Criticality, Multicore Systems
    </td>
    </tr>
	<tr>
	<tr>
		<td>11/09/2016</td>
    <td>Chong Shao</td>
    <td>ImageBeacon: Broadcasting Color Images over Connectionless Bluetooth LE Packets
    </td>
    </tr>
	<tr>
	<tr>
		<td>11/02/2016</td>
    <td>Pontus Ekberg</td>
    <td><a href="101216.pdf">Computational complexity of uniprocessor schedulability analysis</a>
    </td>
    </tr>
	<tr>
	<tr>
		<td>10/12/2016</td>
    <td>Pontus Ekberg</td>
    <td><a href="101216.pdf">Computational complexity of uniprocessor schedulability analysis</a>
    </td>
    </tr>
	<tr>
	<tr>
		<td>9/28/2016</td>
    <td>Kecheng Yang</td>
    <td>Reducing Response-Time Bounds for DAG-Based Task Systems on Heterogeneous Multicore Platforms
    </td>
    </tr>
	<tr>
	<tr>
		<td>9/21/2016</td>
    <td>Namhoon Kim</td>
    <td>Attacking the One-Out-Of-m Multicore Problem by Combining Hardware Management with Mixed-Criticality Provisioning
    </td>
    </tr>
	<tr>
	<tr>
		<td>9/14/2016</td>
    <td>Zden&#283;k Hanz&aacute;le</td>
    <td>Scheduling Problems in Time-triggered Systems</td>
    </tr>
	<tr>
		<td>9/7/2016</td>
    <td>Nathan Otterness</td>
    <td>GPU Sharing for Image Processing in Embedded Real-Time Systems</td>
    </tr>
	<tr>
		<td>8/31/2016</td>
    <td>Catherine Nemitz</td>
    <td>Multiprocessor Real-Time Locking Protocols for Replicated Resources</td>
    </tr>
	</table>

	<h2> Spring 2016</h2>
    <table class="event">
    	<tr class="heading">
        	<td>Date</td>
                <td>Presenter</td>
                <td>Topic</td>
	</tr>
	<tr>
		<td>4/6/2016</td>
		<td>Namhoon Kim/ Vance Miller</td>
		<td>RTAS Practice Talk/ Honors Thesis Practice Talk</td>
    </tr>
	<tr>
		<td>3/30/2016</td>
		<td>Namhoon Kim</td>
		<td>Attacking the One-Out-Of-m Multicore Problem by Combining Hardware Management with Mixed-Criticality Provisioning</td>
    </tr>
	<tr>
		<td>3/23/2016</td>
		<td>Catherine Jarrett</td>
		<td>Multiprocessor Real-Time Locking Protocols for Replicated Resources</td>
    </tr>
	<tr>
		<td>3/9/2016</td>
		<td>Don Smith/ Ming Yang</td>
		<td>Neural Networks in Automotive Image Processing</td>
    </tr>
	<tr>
		<td>3/2/2016</td>
		<td>Kecheng Yang</td>
		<td>ECRTS submissions</td>
    </tr>
	<tr>
		<td>2/17/2016</td>
		<td>Zhishan Guo</td>
		<td>Practice Job Talk</td>
    </tr>
	<tr>
		<td>2/10/2016</td>
		<td>Shahriar Nirjon</td>
		<td>Efficient and Secure Mobile Communication</td>
    </tr>
	<tr>
		<td>2/3/2016</td>
		<td>Calvin Deutschbein</td>
		<td>A Brief Introduction to Machine Assisted Proofs</td>
    </tr>
	<tr>
		<td>1/27/2016</td>
		<td>Alberto Marchetti-Spaccamela/ Vincenzo Bonifaci</td>
		<td>Memory-Processor Co-Scheduling in Fixed Priority Systems/ Algorithms for hierarchical and semi-partitioned parallel scheduling</td>
    </tr>
	<tr>
		<td>1/13/2016</td>
		<td>Zhishan Guo</td>
		<td>When CPS meet Real-Time</td>
    </tr>
	</table>

	<h2> Fall 2015</h2>
    <table class="event">
    	<tr class="heading">
        	<td>Date</td>
                <td>Presenter</td>
                <td>Topic</td>
	</tr>
	<tr>
		<td>11/18/2015</td>
		<td>Zhishan Guo</td>
		<td>MC-Fluid: simplified and optimally quantified</td>
    </tr>
	<tr>
		<td>11/11/2015</td>
		<td>Namhoon Kim</td>
		<td>Attacking the One-Out-Of-m Multicore Problem by Combining Hardware Management with Mixed-Criticality Provisioning</td>
    </tr>
	<tr>
		<td>10/28/2015</td>
		<td>Micaiah Chisholm</td>
		<td>Cache Sharing and Isolation Tradeoffs in Multicore Mixed-Criticality Systems</td>
    </tr>
	<tr>
		<td>10/21/2015</td>
		<td>Bryan Ward</td>
		<td>Relaxing Resource-Sharing Constraints for Improved Hardware Management and Schedulability</td>
    </tr>
	<tr>
		<td>10/7/2015</td>
		<td>Catherine Jarrett</td>
		<td>A Contention-Sensitive Fine-Grained Locking Protocol for Multiprocessor Real-Time Systems</td>
    </tr>
	<tr>
		<td>9/30/2015</td>
		<td>Kecheng Yang</td>
		<td>Analysis for Supporting Real-Time Computer Vision Workloads using OpenVX on Multicore+GPU Platforms</td>
    </tr>
	<tr>
		<td>9/23/2015</td>
		<td>Zhishan Guo</td>
		<td>The concurrent consideration of uncertainty in WCETs and processor speeds in mixed criticality systems</td>
    </tr>
	<tr>
		<td>9/16/2015</td>
		<td>Sanjoy Baruah</td>
		<td>The federated scheduling of systems of conditional sporadic DAG tasks</td>
    </tr>
	<tr>
		<td>9/9/2015</td>
		<td>Kecheng Yang</td>
		<td>On the Soft Real-Time Optimality of Global EDF on Multiprocessors: From Identical to Uniform Heterogeneous</td>
    </tr>
	<tr>
		<td>9/2/2015</td>
		<td>Zhishan Guo</td>
		<td>EDF Schedulability Analysis on Mixed-Criticality Systems with Permitted Failure Probability</td>
    </tr>
    </table>

	<h2> Spring 2015</h2>
    <table class="event">
    	<tr class="heading">
        	<td>Date</td>
                <td>Presenter</td>
                <td>Topic</td>
	</tr>
	<tr>
		<td>4/22/2015</td>
		<td>Nathan Fisher</td>
		<td>Work done after UNC</td>
    </tr>
	<tr>
		<td>4/1/2015</td>
		<td>Zhishan Guo</td>
		<td>ICCPS practice talk</td>
    </tr>
	<tr>
		<td>3/4/2015</td>
		<td>-</td>
		<td>Discussion of student's on-going work</td>
    </tr>
	<tr>
		<td>2/25/2015</td>
		<td>Alan Burns</td>
		<td>A Wormhole NoC Protocol for Mixed Criticality Systems</td>
	</tr>
	<tr>
		<td>2/11/2015</td>
		<td>Vincenzo Bonifac</td>
		<td>Feasibility Analysis in the Sporadic DAG Task Model</td>
	</tr>
	<tr>
		<td>2/4/2015</td>
		<td>Jim Anderson</td>
		<td>Optimal GEDF-Based Schedulers that Allow Intra-Task Parallelism on Heterogeneous Multiprocessors</td>
	</tr>
	<tr>
		<td>1/14/2015</td>
		<td>Kecheng Yang</td>
		<td>Optimal Semi-Partitioning Scheduling on Uniform Heterogeneous Platform</td>
	</tr>
    </table>

	<h2> Fall 2014</h2>
    <table class="event">
    	<tr class="heading">
        	<td>Date</td>
                <td>Presenter</td>
                <td>Topic</td>
	</tr>
	<tr>
		<td>11/19/2014</td>
		<td>Glenn Elliot</td>
		<td>RTSS practice talk</td>
	</tr>
	<tr>
		<td>11/12/2014</td>
		<td>Rui Liu</td>
		<td>RTSS practice talk</td>
	</tr>
	<tr>
		<td>11/5/2014</td>
		<td>Zhishan Guo</td>
		<td>Implementing Mixed-criticality Systems upon a Preemptive Varying-speed Processor</td>
	</tr>
	<tr>
		<td>10/29/2014</td>
		<td>Cheng-Yang Fu</td>
		<td>Cache and Memory Coloring</td>
	</tr>
	<tr>
		<td>10/22/2014</td>
		<td>-</td>
		<td>Discussion of RTNS and EMWeek</td>
         </tr>
	<tr>
		<td>10/8/2014</td>
		<td>Mac Mollison</td>
		<td>Middleware</td>
         </tr>
	<tr>
		<td>9/31/2014</td>
		<td>Bipasa Chattopadhyay</td>
		<td>RTNS practice talk</td>
         </tr>
	<tr>
		<td>9/24/2014</td>
		<td>Kecheng Yang</td>
		<td>PRP Waiver talk</td>
    </tr>
	<tr>
		<td>9/17/2014</td>
		<td>Zhishan Guo</td>
		<td>Mixed-criticality scheduling upon varying-speed multiprocessors</td>
	</tr>
	<tr>
		<td>9/10/2014</td>
		<td>Bryan Ward</td>
		<td>RTNS practice talk</td>
	</tr>
	<tr>
		<td>9/3/2014</td>
		<td>Alexander Wieder</td>
		<td>Complexity of Multiprocessor Blocking Analysis with Nested Critical Sections</td>
	</tr>
	<tr>
		<td>8/27/2014</td>
		<td>Rui Liu</td>
		<td>Independence Threshold: Balancing Tractability and Practicality in Soft Real-Time Stochastic Analysis</td>
	</tr>
    </table>

    <h2> Spring 2014</h2>
    <table class="event">
    	<tr class="heading">
        	<td>Date</td>
                <td>Presenter</td>
                <td>Topic</td>
	</tr>


	<tr>
		<td>4/24/2014</td>
		<td>Bipasa Chattopadhyay</td>
		<td>Proposal practice talk</td>
	</tr>
	<tr>
		<td>4/17/2014</td>
		<td>Prof. Sanjoy Baruah</td>
		<td>Mixed Criticality</td>
	</tr>
	<tr>
		<td>4/10/2014</td>
		<td>Bryan Ward</td>
		<td>Multi-resource Real-time reader/writer locks for Multiprocessors</td>
	</tr>
	<tr>
		<td>4/3/2014</td>
		<td>Jeremy Erickson</td>
		<td>Dissipation Bounds: Recovering from Overload in Multicore Mixed-Criticality Systems</td>
	</tr>
	<tr>
		<td>3/27/2014</td>
		<td>Kecheng Yang</td>
		<td>Soft real-time scheduling on Heterogeneous Systems</td>
	</tr>
	<tr>
		<td>3/20/2014</td>
		<td>Zhishan Guo</td>
		<td>The concurrent consideration of uncertainty in WCETs and processor speeds in Mixed-criticality systems</td>
	</tr>
	<tr>
		<td>3/6/2014</td>
		<td>Glenn Elliott</td>
		<td>Response-time minimization of automotive-inspired dataflows on Multicore platforms</td>
	</tr>
	<tr>
		<td>2/27/2014</td>
		<td>Bipasa Chattopadhyay</td>
		<td>Limited-preemption scheduling on Multiprocessors motivated by multi-GPU systems</td>
	</tr>
	<tr>
		<td>2/20/2014</td>
		<td>Namhoon Kim/ Tahsin Kabir</td>
		<td>Cache coloring implementation in Litmus</td>
	</tr>
	<tr>
		<td>2/6/2014</td>
		<td>Rui Liu</td>
		<td>Extreme Value Theory and pWCET</td>
         </tr>
	<tr>
		<td>1/23/2014</td>
		<td>Mac Mollison</td>
		<td>Proposal practice talk</td>
         </tr>
	<tr>
		<td>1/16/2014</td>
		<td>-</td>
		<td>Lunch</td>
         </tr>
	<tr>
		<td>1/9/2014</td>
		<td>Kecheng Yang</td>
		<td>Tardiness Bound on Heterogeneous Systems</td>
         </tr>
         </table>
    <h2> Fall 2013</h2>
    <table class="event">
    	<tr class="heading">
        	<td>Date</td>
                <td>Presenter</td>
                <td>Topic</td>
	</tr>
	<tr>
		<td>11/20/2013</td>
		<td>Glenn Elliott</td>
		<td> GPUSYNC: A Framwork for Real-Time GPU Managment</td>
         </tr>
	<tr>
		<td>11/13/2013</td>
		<td>Zhishan Guo</td>
		<td>Mixed-criticality Scheduling upon Varying-speed Porcessors</td>
         </tr>
	<tr>
		<td>11/6/2013</td>
		<td>Prof. Jim Anderson</td>
		<td><a href="lunch/2013-11-06-JimAnderson.pptx">Soft Real-time Scheduling</a></td>
         </tr>

	<tr>
		<td>10/30/2013</td>
		<td>Bipasa Chattopadhyay</td>
		<td>GPU as a shared processing unit</td>
         </tr>

	<tr>
		<td>10/23/2013</td>
		<td>Glenn Elliott</td>
		<td>CPS PI-meeting report</td>
	</tr>
	<tr>
		<td>10/16/2013</td>
		<td>-</td>
		<td>Lunch</td>
	</tr>
	<tr>
		<td>10/09/2013</td>
		<td>Prof. Harini Ramaprasad</td>
		<td>Adaptive Scheduling in a Cyber-Physical Smart Grid System using Cooperating Invariants</td>
	</tr>
	<tr>
		<td>09/25/2013</td>
		<td>Abhilash Thekkilakattil</td>
		<td><a href = "lunch/2013-09-25-Abhilash.pptx">Resource Augmentation for Performance Guarantees in Embedded Real-time Systems</a></td>
	</tr>
	<tr>
		<td>09/18/2013</td>
		<td>Jeremy Erickson</td>
		<td>Real-time 103</td>

	</tr>
	<tr>
		<td>09/11/2013</td>
		<td>Jeremy Erickson</td>
		<td>Real-time 102</td>

	</tr>
	<tr>
		<td>09/4/2013</td>
		<td>Everyone/ Bryan Ward</td>
		<td>Summer Updates/ Real-time 101</td>

	</tr>
        </table>

    <h2> Fall 2012</h2>
    <table class="event">
        <tr class="heading">
            <td>Date</td>
            <td>Presenter</td>
            <td>Topic</td>
        </tr>
        <tr>
            <td>12/5/2012</td>
            <td>Glenn Elliott</td>
            <td>Practice Dissertation Proposal Defense</td>
        </tr>
        <tr>
          <td>11/28/2012</td>
          <td><i>No&nbsp;Talk</i></td>
          <td><i>No&nbsp;Talk</i></td>
        </tr>
        <tr>
          <td>11/19/2012</td>
          <td>Cong Liu</td>
          <td>An O(m) Analysis Technique for Supporting Real-Time Self-Suspending Task Systems</td>
        </tr>
        <tr>
          <td>11/14/2012</td>
          <td>Jeremy Erickson</td>
          <td>Practice Dissertation Proposal Defense</td>
        </tr>
        <tr>
          <td>11/7/2012</td>
          <td><i>No&nbsp;Talk</i></td>
          <td><i>No&nbsp;Talk</i></td>
        </tr>
        <tr>
            <td>10/31/2012</td>
            <td>Glenn Elliott and Jeremy Erickson</td>
            <td>RTAS submission overviews</td>
        </tr>
        <tr>
          <td>10/24/2012</td>
          <td><i>No&nbsp;Talk</i></td>
          <td><i>No&nbsp;Talk</i></td>
        </tr>
        <tr>
            <td>10/17/2012</td>
            <td>Glenn Elliott</td>
            <td>The Limitations of Fixed-Priority Interrupt Handling in PREEMPT_RT and Possible Solutions</td>
        </tr>
        <tr>
          <td>10/10/2012</td>
          <td><i>No&nbsp;Talk</i></td>
          <td><i>No&nbsp;Talk</i></td>
        </tr>
        <tr>
            <td>10/3/2012</td>
            <td>Sanjoy Baruah</td>
            <td>Review of the ARTIST summer school.</td>
        </tr>
        <tr>
            <td>09/24/2012</td>
            <td>Cong Liu</td>
            <td>Practice Job Talk</td>
        </tr>
        <tr>
            <td>09/19/2012</td>
            <td>Haohan Li</td>
            <td>Global Mixed-Criticality Scheduling on Multiprocessors</td>
        </tr>
        <tr>
            <td>09/12/2012</td>
            <td>Jeremy Erickson</td>
            <td>Fair Lateness Scheduling: Reducing Maximum Lateness in G-EDF-like Scheduling</td>
        </tr>
        <tr>
            <td>09/05/2012</td>
            <td>Everyone</td>
            <td>Updates from the summer</td>
        </tr>
    </table>

	<h2>Spring 2012</h2>
        <table class="event">
            <tr class="heading">
                <td>Date</td>
                <td>Presenter</td>
                <td>Topic</td>
            </tr>
	<tr>
              <td>04/25/2012</td>
              <td><i>No&nbsp;Talk<i></td>
              <td><i>No&nbsp;Talk<i></td>
       </tr>

	<tr>
              <td>04/18/2012</td>
              <td><i>No&nbsp;Talk<i></td>
              <td><i>No&nbsp;Talk<i></td>
       </tr>

	<tr>
              <td>04/11/2012</td>
              <td>Jeremy&nbsp;Erickson</td>
              <td>RTAS practice talk</td>
       </tr>



	<tr>
              <td>04/04/2012</td>
              <td>Jonathan&nbsp;Herman</td>
              <td>RTAS practice talk</td>
       </tr>



	<tr>
              <td>03/28/2012</td>
              <td><i>No&nbsp;Talk<i></td>
              <td><i>No&nbsp;Talk<i></td>
       </tr>



	<tr>
              <td>03/21/2012</td>
              <td><i>No&nbsp;Talk<i></td>
              <td><i>No&nbsp;Talk<i></td>
       </tr>


	<tr>
              <td>03/14/2012</td>
              <td>Glenn&nbsp;Elliott, Chris&nbsp;Kenna, Jonathan&nbsp;Herman</td>
              <td>Litmus Organizational Meeting</td>
       </tr>

	<tr>
              <td>03/07/2012</td>
              <td><i>No&nbsp;Talk<i></td>
              <td><i>Spring&nbsp;Break<i></td>
       </tr>



 	<tr>
              <td>02/29/2012</td>
              <td>Cong&nbsp;Liu</td>
              <td>Real-Time Scheduling of Tasks with Suspensions</td>
       </tr>

        <tr>
              <td>02/22/2012</td>
              <td>Alan&nbsp;Burns</td>
              <td>Multiprocessor Synchronization</td>
       </tr>

        <tr>
              <td>02/15/2012</td>
              <td>Bryan&nbsp;Ward</td>
              <td>Supporting Nested Locking in Multiprocessor
Real-Time Systems</td>
        </tr>

	<tr>
	       <td>02/08/2012</td>
	       <td>Haohan&nbsp;Li</td>
	       <td><a href="lunch/2012-02-08-On_Mixed-Criticality_Scheduling.pptx">On Mixed-Criticality Scheduling</a></td>
	</tr>


	<tr>
               <td>02/01/2012</td>
               <td>Jeremy&nbsp;Erickson</td>
               <td>Soft Real-Time Scheduling in Google Earth</td>
        </tr>


	<tr>
	      <td>01/25/2012</td>
	      <td><i>No&nbsp;talk<i></td>
	      <td><i>Group&nbsp;lunch<i></td>
	</tr>


	<tr>
               <td>01/18/2012</td>
               <td>Chris&nbsp;Kenna, Jonathan&nbsp;Herman, Alex&nbsp;Mills</td>
               <td>RTSS conference review</td>
          </tr>



	</table>

	 <h2>Fall 2011</h2>
        <table class="event">
            <tr class="heading">
                <td>Date</td>
                <td>Presenter</td>
                <td>Topic</td>
            </tr>

	   <tr>
	       <td>12/07/2011</td>
	       <td>Jeremy&nbsp;Erickson</td>
	       <td>Practice talk for OPODIS</td>
	  </tr>


	   <tr>
		<td>11/30/2011</td>
		<td><i>No&nbsp;talk<i></td>
		<td><i>No&nbsp;talk<i></td>
	   </tr>

	    <tr>
                <td>11/21/2011</td>
                <td>Bipasa&nbsp;Chattopadhyay</td>
                <td>Two resource partitioning problem(Monday 12:30 to 1:30 in FB 120)</td>
             </tr>
	    <tr>
                <td>11/16/2011</td>
                <td>Haohan&nbsp;Li</td>
                <td>Mixed Criticality</td>
             </tr>
	   <tr>
                <td>11/9/2011</td>
                <td>Sanjoy&nbsp;Baruah</td>
                <td>Flex Ray</td>
             </tr>
	    <tr>
                <td>11/2/2011</td>
                <td>Glenn&nbsp;Elliott</td>
                <td>RTCSA talk</td>
             </tr>
	     <tr>
                <td>10/24/2011</td>
                <td>Chris&nbsp;Kenna, Jonathan&nbsp;Herman</td>
                <td>PRP waiver talks(Monday 12:30 to 2:00 in FB 120)</td>
             </tr>
	    <tr>
                <td>10/19/2011</td>
                <td>Jeremy&nbsp;Erickson, Jonathan&nbsp;Herman</td>
                <td>Summary of papers submitted to RTAS</td>
             </tr>

             <tr>
                <td>10/12/2011</td>
                <td><i>No&nbsp;talk<i></td>
                <td><i>No&nbsp;talk<i></td>
             </tr>

	    <tr>
                <td>10/05/2011</td>
                <td><i>No&nbsp;talk<i></td>
                <td><i>No&nbsp;talk<i></td>
            </tr>
            <tr>
                <td>09/28/2011</td>
                <td><i>No&nbsp;talk<i></td>
                <td><i>No&nbsp;talk<i></td>
            </tr>
	    <tr>
                <td>09/21/2011</td>
                <td>Glenn&nbsp;Elliott</td>
                <td>An Optimal k-Exclusion Real-Time Locking Protocol Motivated by Multi-GPU Systems</td>
             </tr>
	     <tr>
                <td>09/14/2011</td>
                <td>Mac&nbsp;Mollison</td>
                <td><a href="lunch/2011-09-14-mollison_summer_school.pdf">Summer school</a></td>
             </tr>

	     <tr>
                <td>09/14/2011</td>
                <td>Cong&nbsp;Liu</td>
                <td>Improving the Schedulability of Sporadic Self-Suspending Soft Real-Time Multiprocessor Task Systems</td>
             </tr>
	     <tr>
		<td>09/07/2011</td>
		<td><i>Various group members</i></td>
		<td>Discussion of summer projects</td>
	     </tr>
             <tr>
                <td>08/31/2011</td>
                <td>Risat&nbsp;Pathan</td>
                <td><a href="lunch/2011-08-31-Improved_schedulability_tests_for_Global_FP_scheduling.pdf">Improved Schedulability Tests for Global Fixed-Priority Scheduling</a></td>
            </tr>
	    <tr>
		<td>08/24/2011</td>
		<td>Alex&nbsp;Mills</td>
		<td><a href="lunch/2011-08-24-A_Multiprocessor_Server-Based_Scheduler_for_Soft_Real-time_Tasks_with_Stochastic_Execution_Demand.pptx">A Multiprocessor Server-Based Scheduler for Soft Real-time Tasks with Stochastic Execution Demand</a></td>
            </tr>
        </table>


	<h2>Spring 2011</h2>
        <table class="event">
            <tr class="heading">
                <td>Date</td>
                <td>Presenter</td>
                <td>Topic</td>
            </tr>
	    <tr>
	    	<td>02/28/2011</td>
              	<td>Bj&ouml;rn&nbsp;Brandenburg</td>
	    	<td>OS Infrastructure for Multiprocessor Real-Time Systems: Scheduling and Synchronization</td>
	    </tr>
	    <tr>
	    	<td>02/21/2011</td>
              	<td>Bipasa&nbsp;Chattopadhyay</td>
	    	<td>Lookup Tables for Partitioned Scheduling</td>
	    </tr>
	    <tr>
	    	<td>02/14/2011</td>
		<td>Cong&nbsp;Liu</td>
		<td>Precedence Constraints</td>
	    </tr>
	    <tr>
	    	<td>02/07/2011</td>
		<td>Glenn&nbsp;Elliott</td>
		<td>GPUs</td>
	    </tr>
	    <tr>
	    	<td>01/31/2011</td>
		<td>Alex&nbsp;Mills</td>
		<td>Integer Programming</td>
	    </tr>
	    <tr>
	    	<td>01/26/2011</td>
		<td><i>Entire Group</i></td>
		<td><i>Research Plans for Semester</i></td>
	    </tr>
            <tr>
                <td>01/19/2011</td>
                <td><i>No talk</i></td>
                <td><i>No talk (social lunch only)</i></td>
            </tr>
	</table>

        <h2>Fall 2010</h2>
        <table class="event">
            <tr class="heading">
                <td>Date</td>
                <td>Presenter</td>
                <td>Topic</td>
            </tr>
            <tr>
                <td>12/08/2010</td>
                <td>Jeremy&nbsp;Erickson</td>
                <td>Tardiness Bounds for Global EDF with Deadlines Different from Periods</td>
            </tr>
            <tr>
                <td>12/01/2010</td>
                <td><i>No talk</i></td>
                <td><i>No RT Lunch (RTSS)</i></td>
            </tr>
            <tr>
                <td>11/24/2010</td>
                <td><i>No talk</i></td>
                <td><i>No RT Lunch (Thanksgiving Break)</i></td>
            </tr>
            <tr>
                <td>11/17/2010</td>
                <td>Mac&nbsp;Mollison</td>
                <td><a href="lunch/2010-11-17-DAEC.pdf">The Industrial-Academic Interface: Success Stories from Academic-Industrial Collaboration</a></td>
            </tr>
            <tr>
                <td>11/17/2010</td>
                <td>Haohan&nbsp;Li</td>
                <td><a href="lunch/2010-11-17-Mixed-Criticality.pptx">An algorithm for scheduling certifiable mixed-criticality sporadic task systems</a></td>
            </tr>
            <tr>
                <td>11/10/2010</td>
                <td>Jonathan&nbsp;Herman</td>
                <td>Fault Tolerance (COMP790 rescheduled from Friday)</td>
            </tr>
            <tr>
                <td>11/03/2010</td>
                <td>None</td>
                <td>No RT Lunch</td>
            </tr>
            <tr>
                <td>10/27/2010</td>
                <td>Andrea&nbsp;Bastoni</td>
                <td>An Empirical Comparison of Global, Partitioned, and Clustered Multiprocessor EDF Schedulers</td>
            </tr>
            <tr>
                <td>10/20/2010</td>
                <td>Glenn&nbsp;Elliott</td>
                <td>Globally Scheduled Real-Time Multiprocessor Systems with GPUs</td>
            </tr>
            <tr>
                <td>10/13/2010</td>
                <td><i>Various group members</i></td>
                <td>Overview of recently submitted papers</td>
            </tr>
            <tr>
                <td>10/6/2010</td>
                <td>Mac&nbsp;Mollison</td>
                <td><a href="lunch/2010-10-06-ICESS.ppt">Mixed-Criticality Real-Time Scheduling for Multicore Systems</a> (PRP Waiver talk)</td>
            </tr>
            <tr>
                <td>09/29/2010</td>
                <td>Cong&nbsp;Liu</td>
                <td>Supporting Complex Applications with Precedence Constraints on Soft Real-Time Multiprocessors with No Utilization Loss</td>
            </tr>
            <tr>
                <td>09/22/2010</td>
                <td>Jeremy&nbsp;Erickson</td>
                <td><a href="lunch/2010-09-22-Tardiness.pdf">Improved Tardiness Bounds for Global EDF</a></td>
            </tr>
            <tr>
                <td>09/15/2010</td>
                <td>Andrea&nbsp;Bastoni</td>
                <td>Cache-Related Preemption and Migration Delays: Empirical Approximation and Impact on Schedulability (Continued)</td>
            </tr>
            <tr>
                <td>09/08/2010</td>
                <td>Andrea&nbsp;Bastoni</td>
                <td>Cache-Related Preemption and Migration Delays: Empirical Approximation and Impact on Schedulability</td>
            </tr>
            <tr>
                <td>09/01/2010</td>
                <td><i>No talk</i></td>
                <td><i>No talk (Social lunch only)</i></td>
            </tr>
        </table>

        <h2>Spring 2010</h2>
        <table class="event">
            <tr class="heading">
              <td>Date</td>
              <td>Presenter</td>
              <td>Topic</td>
            </tr>
            <tr>
              <td>4/21/2010</td>
              <td><i>No talk</i></td>
              <td><i>No talk (Approaching end of semester)</i></td>
            </tr>
            <tr>
              <td>4/14/2010</td>
              <td><i>No talk</i></td>
              <td><i>No talk (Coincides with RTAS)</i></td>
            </tr>
            <tr>
              <td>4/7/2010</td>
              <td>Haohan Li</td>
              <td><a href="lunch/2010-4-7-Towards_the_design_of_certifiable_mixed-criticality_systems.pdf">Towards the design of certifiable mixed-criticality systems</a></td>
            </tr>
            <tr>
              <td></td>
              <td>Alex Mills</td>
              <td><a href="lunch/2010-4-7-Stochastic_Analysis_of_Multiprocessor_Global_Soft_Real-Time_Scheduling.pptx">Stochastic Analysis of Multiprocessor Global Soft Real-Time Scheduling</a></td>
            </tr>
            <tr>
              <td></td>
              <td>Cong Liu</td>
              <td><a href="lunch/2010-4-7-Scheduling_suspendable_pipelined_tasks_with_non-preemptive_sections_in_soft_real-time_multiprocessor_systems.pptx">Scheduling suspendable pipelined tasks with non-preemptive sections in soft real-time multiprocessor systems</td>
            </tr>
            <tr>
              <td>3/31/2010</td>
              <td>Andrea Bastoni</td>
              <td>Update on overhead measurement methodology</td>
            </tr>
            <tr>
              <td></td>
              <td>Cong Liu</td>
              <td>Update on overhead analysis refactoring</td>
            </tr>
            <tr>
            <tr>
              <td>3/24/2010</td>
              <td>Cong Liu, Andrea Bastoni, etc.</td>
              <td>Discussion of overhead analysis and measurement for upcoming paper</td>
            </tr>
            <tr>
              <td>3/17/2010</td>
              <td>Cong Liu, etc.</td>
              <td><a href="lunch/2010-03-17-cong_overhead_analysis.pdf">Discussion of overhead analysis for upcoming paper</a></td>
            </tr>
            <tr>
              <td>3/10/2010</td>
              <td><i>No talk</i></td>
              <td><i>No talk (Spring Break)</i></td>
            </tr>
            <tr>
              <td>3/3/2010</td>
              <td>Hennadiy&nbsp;Leontyev</td>
              <td>Dissertation practice talk</td>
            </tr>
            <tr>
            <tr>
              <td>2/24/2010</td>
              <td>Haohan Li</td>
              <td><a href="lunch/2010-02-24-Mixed_criticality_scheduling_improved_resource_augmentation_results.pdf">Mixed-criticality scheduling: improved resource-augmentation results</a></td>
            </tr>
            <tr>
              <td>2/17/2010</td>
              <td><i>No talk</i></td>
              <td><i>No talk</i></td>
            </tr>
            <tr>
              <td>2/10/2010</td>
              <td><i>No talk</i></td>
              <td><i>No talk</i></td>
            </tr>
            <tr>
              <td>2/3/2010</td>
              <td>Hennadiy&nbsp;Leontyev</td>
              <td>Compositional Analysis Techniques for Multiprocessor Soft Real-Time Scheduling</a></td>
            </tr>
            <tr>
              <td>1/27/2010</td>
              <td>Jeremy&nbsp;Erickson</td>
              <td><a href="lunch/2010-01-27-Improved_Tardiness_Bounds_for_Global_EDF.pdf">Improved Tardiness Bounds for Global EDF</a></td>
            </tr>
            <tr>
              <td>1/20/2010</td>
              <td>Andrea&nbsp;Bastoni</td>
              <td><a href="lunch/2010-01-20-Discovering_hypervisor_overheads_using_micro_and_macrobenchmarks.pdf">Discovering hypervisor overheads using micro and macrobenchmarks</a></td>
            </tr>
        </table>

        <h2>Fall 2009</h2>
        <table class="event">
            <tr class="heading">
              <td>Date</td>
              <td>Presenter</td>
              <td>Topic</td>
            </tr>
            <tr>
              <td>12/1/2009</td>
              <td>Bj&ouml;rn Brandenburg</td>
              <td><a href="lunch/2009-12-01-On_the_Implementation_of_Global_Real-Time_Schedulers.pdf">On the Implementation of Global Real-Time Schedulers</a></td>
            </tr>
            <tr>
              <td></td>
              <td>Hennadiy Leontyev</td>
              <td><a href="lunch/2009-12-01-Multiprocessor_Extensions_to_Real-Time_Calculus.ppt">Multiprocessor Extensions to Real-Time Calculus</a></td>
            </tr>

            <tr>
              <td>11/25/2009</td>
              <td><i>No talk</i></td>
              <td><i>No talk</i></td>
            </tr>
            <tr>
              <td>11/18/2009</td>
              <td>Alex Mills</td>
              <td><a href="lunch/2009-11-18-A_Stochastic_Framework_For_Multiprocessor_Real-Time_Scheduling.ppt">A Stochastic Framework for Multiprocessor Real-Time Scheduling</a></td>
            </tr>

            <tr>
              <td>11/11/2009</td>
              <td>Cong Liu</td>
              <td><a href="lunch/2009-11-11-Task_Scheduling_With_Self_Suspensions_In_Soft_Real-Time_Multiprocessor_Systems.ppt">Task Scheduling with Self Suspensions in Soft Real-Time Multiprocessor Systems</a></td>
            </tr>
            <tr>
              <td>11/4/2009</td>
              <td>Andrea Bastoni</td>
              <td><a href="lunch/2009-11-04-Working_with_HPETs.pdf">Working with high precision event timers (HPETs)</a></td>
            </tr>
            <tr>
              <td>10/28/2009</td>
              <td><i>No talk</i></td>
              <td><i>No talk</i></td>
            </tr>
            <tr>
              <td>10/21/2009</td>
              <td>Guruprasad Aphale</td>
              <td><a href="lunch/2009-10-21-BFS_by_Con_Kolivas.ppt">BFS by Con Kolivas</a></td>
            </tr>
            <tr>
              <td>10/14/2009</td>
              <td>Haohan Li</td>
              <td><a href="lunch/2009-10-14-Mixed_Criticality_Schedulability.ppt">Mixed Criticality Schedulability</a></td>
            </tr>
            <tr>
              <td>10/7/2009</td>
              <td>Raphael Guerra</td>
              <td><a href="lunch/2009-10-07-A_Gravitational_Task_Model.tar">A Gravitational Task Model</a></td>
            </tr>
            <tr>
            <tr>
              <td>9/30/2009</td>
              <td><i>No talk</i></td>
              <td><i>No talk</i></td>
            </tr>
            <tr>
              <td>9/23/2009</td>
              <td>Hennadiy&nbsp;Leontyev</td>
              <td><a href="lunch/2009-09-23-Compositional_Analysis_Techniques_For_Multiprocessor_Real-Time_Scheduling.pdf">Compositional Analysis Techniques for Multiprocessor Real-Time Scheduling</a></td>
            </tr>
            <tr>
              <td>9/16/2009</td>
              <td>Cong Liu</td>
              <td><a href="lunch/2009-09-16-Supporting_Pipelines_In_Soft_Real-Time_Multiprocessor_Systems.ppt">Supporting Pipelines In Soft Real-Time Multiprocessor Systems</a></td>
            </tr>
            <tr>
              <td>9/9/2009</td>
              <td>Bj&ouml;rn&nbsp;Brandenburg</td>
              <td><a href="lunch/2009-09-09-bbb%20-%20intro%20to%20sporadic%20tasks%20and%20synchronization.pdf">Introduction to Sporadic Tasks and Real-Time Synchronization</a></td>
            </tr>
        </table>

        <h2>Spring 2009</h2>
        <table class="event">
            <tr class="heading">
              <td>Date</td>
              <td>Presenter</td>
              <td>Topic</td>
            </tr>
            <tr>
              <td>March&nbsp;2009</td>
              <td>Bj&ouml;rn&nbsp;Brandenburg</td>
              <td>Tutorial: Getting Started with LITMUS<sup>RT</sup> Development</td>
            </tr>
            <tr>
              <td>2/23/2009</td>
              <td>John&nbsp;Calandrino</td>
              <td><a href="lunch/2009-02-23%20-%20RTLunch-ECRTS09-Slides.ppt">On the Design and Implementation of a Cache-Aware Multicore Scheduler</a></td>
            </tr>
            <tr>
              <td>2/16/2009</td>
              <td>Bj&ouml;rn&nbsp;Brandenburg</td>
              <td>Recap of the Transactional Memory Workshop held in conjunction with PPoPP'09</td>
            </tr>
            <tr>
              <td>2/2/2009</td>
              <td>Cong&nbsp;Liu</td>
              <td><a href="lunch/2009-02-03%20Supporting%20Pipelines%20in%20Soft%20Real-Time%20Multiprocessor%20Systems.pdf">Supporting Pipelines in Soft Real-Time Multiprocessor Systems</a></td>
            </tr>
        </table>
        <p class="note">Note: Listing is incomplete.</p>

        <h2>Fall 2008</h2>
        <table>
            <tr class="heading">
              <td>Date</td>
              <td>Presenter</td>
              <td>Topic</td>
            </tr>
            <tr>
              <td>11/12/2008</td>
              <td>Stephen&nbsp;Olivier</td>
              <td>A Brief Introduction to a Concise Overview to Transactional Memory</td>
            </tr>
            <tr>
              <td>10/22/2008</td>
              <td>Sanjoy&nbsp;Baruah</td>
              <td>Demand Bound Function Related Schedulability Tests</td>
            </tr>
            <tr>
              <td>10/8/2008</td>
              <td>Bj&ouml;rn&nbsp;Brandenburg</td>
              <td><a href="lunch/2008-10-bbb%20-%20realt-time%20synchronization%20overview.pdf">A Partial Overview of Real-Time Synchronization</a> (Part&nbsp;3)</td>
            </tr>
            <tr>
              <td>10/1/2008</td>
              <td>Bj&ouml;rn&nbsp;Brandenburg</td>
              <td><a href="lunch/2008-10-bbb%20-%20realt-time%20synchronization%20overview.pdf">A Partial Overview of Real-Time Synchronization</a> (Part&nbsp;2)</td>
            </tr>
            <tr>
              <td>9/24/2008</td>
              <td>Bj&ouml;rn&nbsp;Brandenburg</td>
              <td><a href="lunch/2008-10-bbb%20-%20realt-time%20synchronization%20overview.pdf">A Partial Overview of Real-Time Synchronization</a> (Part&nbsp;1)</td>
            </tr>
            <tr>
              <td>9/17/2008</td>
              <td>John&nbsp;Calandrino</td>
              <td><a href="lunch/PDCCS-2008-Talk.ppt">LinSched: The Linux Scheduler Simulator</a></td>
            </tr>
            <tr>
              <td>9/10/2008</td>
              <td>Bj&ouml;rn&nbsp;Brandenburg</td>
              <td><a href="lunch/2008-09-10-An%20Overview%20of%20LITMUS.pdf">An Overview of Litmus</a></td>
            </tr>
            <tr>
              <td>9/3/2008</td>
              <td>Hennadiy&nbsp;Leontyev</td>
              <td><a href="lunch/2008-09-03%20-%20Flexible%20Scheduling%20Support%20for%20Soft%20Real-Time%20Multiprocessor%20Systems.ppt">Flexible Support for Soft Real-Time Multiprocessing Systems</a></td>
            </tr>
            <tr>
              <td>8/27/2008</td>
              <td>John&nbsp;Calandrino</td>
              <td><a href="lunch/2008-08-27%20Cache-Aware%20Real-Time%20Scheduling%20on%20Multicore%20Platforms.ppt">Cache-Aware Real-Time Scheduling on Multicore Platforms</a></td>
            </tr>
        </table>
        <h2>Pre 2008</h2>
        <p>Real-Time Lunch has been around forever (<em>i.e.</em>, longer than the current grad student generation), but the old schedules have been lost in the sands of time. Rumor has it that the talks were great, though. ;-)</p>
      </div>
    </div>
    <div id="footer">
      <p><a href="http://validator.w3.org/check?uri=referer">Valid XHTML 1.0</a> | Copyright &copy; UNC | Based on a Design by Aaron Block | <a href="maintainers.html">Site Maintainers</a></p>
    </div>
  </div>
</body>
</html>