-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1273 lines (1160 loc) · 80.4 KB
/
index.html
File metadata and controls
1273 lines (1160 loc) · 80.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="canonical" href="https://tandonmitul27.github.io/" />
<meta name="google-site-verification" content="6DcBt7W9pvE2KgvKsFjoWJukqiWoJlFX1uV5pxEoNQw" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="Mitul Tandon – Computer Architecture and Accelerators researcher at IIT Bombay and KAIST. Interests: LLM Serving Systems, GPUs, and ML hardware.">
<meta name="author" content="Mitul Tandon, tandonmitul27, Mitul Tandon IITB">
<meta name="keywords" content="Mitul Tandon, IIT Bombay, KAIST, Computer Architecture, Accelerators, Researcher, Hardware Prefetchers, 3D DRAM Caches">
<title>Mitul Tandon</title>
<link rel="icon" type="image/x-icon" href="assets/img/favicon.ico" />
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v5.15.3/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Saira+Extra+Condensed:500,700" rel="stylesheet"
type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Muli:400,400i,800,800i" rel="stylesheet" type="text/css" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
<script type="text/javascript">
document.oncontextmenu = function(){return false;}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Mitul Tandon",
"url": "https://tandonmitul27.github.io",
"image": "https://tandonmitul27.github.io/assets/img/me1.jpeg",
"affiliation": [
{
"@type": "CollegeOrUniversity",
"name": "Indian Institute of Technology Bombay"
},
{
"@type": "CollegeOrUniversity",
"name": "KAIST"
},
{
"@type": "CollegeOrUniversity",
"name": "IIT Bombay"
}
],
"jobTitle": "Researcher in Computer Architecture",
"email": "mailto:tandonmitul27@iitb.ac.in",
"sameAs": [
"https://www.linkedin.com/in/tandonmitul27/",
"https://github.com/tandonmitul27",
"https://orcid.org/0009-0001-8899-0509",
"https://scholar.google.com/citations?user=TvU9x_kAAAAJ&hl=en"
]
}
</script>
</head>
<body id="page-top" oncontextmenu="return false" ondragstart="return false">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top" id="sideNav">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<span class="d-block d-lg-none">Mitul Tandon</span>
<span class="d-none d-lg-block">
<img class="img-fluid img-profile rounded-circle mx-auto mb-2" src="assets/img/me1.jpeg" alt="..." />
</span>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive"
aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Flex column to stack links and globe vertically -->
<div class="collapse navbar-collapse d-flex flex-column" id="navbarResponsive">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#publications">Publications</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#research">Research Experience</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#projects">Projects</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#teaching">Teaching Experience</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#academics">Academics</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#photography">Photography</a></li>
</ul>
<!-- Globe container pushed to bottom -->
<div class="globe-container" id="globe-container" style="width:175px; height:175px; margin-top:20px; margin-bottom:auto; align-self:center;"></div>
<!-- <script type="text/javascript" id="clstr_globe" src="//clustrmaps.com/globe.js?d=C58P3QY_kACha9SMJjDYC-nt36vZNqUqGODFG8fmz-8"></script> -->
</div>
</nav>
<!-- Page Content-->
<div class="container-fluid p-0">
<!-- About-->
<section class="resume-section" id="about">
<div class="resume-section-content">
<h1 class="mb-0">
Mitul
<span class="text-primary">Tandon</span>
</h1>
<!-- <div class="subheading mb-5">
<a href="mailto:tandonmitul27@iitb.ac.in" style="text-decoration: none; color: inherit;">
<i class="fas fa-envelope"></i> tandonmitul27@iitb.ac.in
</a>
</div> -->
<div class="subheading mb-5">
<i class="fas fa-envelope"></i>
<a href="mailto:tandonmitul27@iitb.ac.in" style="text-decoration: none; color: inherit;">tandonmitul27@iitb.ac.in</a> /
<a href="mailto:tandonmitul27@gmail.com" style="text-decoration: none; color: inherit;">tandonmitul27@gmail.com</a>
</div>
<p class="lead mb-5">
I am a 4th year Dual Degree student in the Electrical Engineering Department at Indian Institute of Technology Bombay (IITB).
<br> My area of interest lies in computer architecture, especially Processing-in-Memory and LLM Serving.
</p>
<!-- <p class="lead mb-5">
<b>Currently I am at a semester exchange in the School of Electrical Engineering at KAIST, South Korea.</b>
</p> -->
<!-- 🔽 NEWS SECTION -->
<div class="news-section mt-4">
<!-- Smaller heading for News -->
<h3 class="mb-3">News</h3>
<p class="lead mb-1"><b>Sep. 2025</b> – Excited to start my semester exchange at the School of Electrical Engineering, KAIST, South Korea!</p>
<p class="lead mb-1"><b>Aug. 2025</b> – Happy to share that our paper <i>LiC</i> has been accepted at VLSI-SoC 2025.</p>
<p class="lead mb-1"><b>Jun. 2025</b> – Glad to receive the Global Korea Scholarship (GKS) to support my semester exchange at KAIST.</p>
</div>
<!-- 🔽 SOCIAL ICONS (NOW WITH MORE LINKS) -->
<div class="social-icons mt-4">
<a class="social-icon" href="https://www.linkedin.com/in/tandonmitul27/" target="_blank" rel="noopener noreferrer">
<i class="fab fa-linkedin-in"></i>
</a>
<a class="social-icon" href="https://github.com/tandonmitul27" target="_blank" rel="noopener noreferrer">
<i class="fab fa-github"></i>
</a>
<a class="social-icon" href="https://scholar.google.com/citations?user=TvU9x_kAAAAJ&hl=en" target="_blank" rel="noopener noreferrer">
<i class="fas fa-graduation-cap"></i>
</a>
<a class="social-icon" href="https://orcid.org/0009-0001-8899-0509" target="_blank" rel="noopener noreferrer">
<i class="fab fa-orcid"></i>
</a>
<a class="social-icon"
href="assets/docs/CV.pdf" target="_blank" rel="noopener noreferrer">
<div title="CV"><i class="far fa-file-alt"></i></div>
</a>
</div>
</div>
</section>
<hr class="m-0" />
<!-- Education-->
<!-- <section class="resume-section" id="education">
<div class="resume-section-content">
<h2 class="mb-5">Education</h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Stanford University</h3>
<div class="subheading mb-3">Ph.D.</div>
<div>Electrical Engineering</div>
</div>
<div class="flex-shrink-0">
<span class="text-primary">Sep. 2022 – Present</span><br />
<!--<span class="text-primary">Stanford, U.S.</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Seoul National University</h3>
<div class="subheading mb-3">Bachelor of Science</div>
<div>Computer Science and Engineering</div>
<p>Total GPA: 4.16 / 4.3 (Summa Cum Laude)</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">Mar. 2018 – Aug. 2022</span><br />
<!--<span class="text-primary">Seoul, Republic of Korea</span>
</div>
</div>
</div>
</section>
<hr class="m-0" /> -->
<!-- Publications-->
<section class="resume-section" id="publications">
<div class="resume-section-content">
<h2 class="mb-4">Publications</h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<ul class="fa-ul mb-0">
<li>
<h3 class="mb-1"> <a href="https://ieeexplore.ieee.org/document/11421757" class="text-decoration-none" target="_blank" rel="noopener"> LiC: Low-Cost Cache Replacement Algorithm for All Cache Levels </a> </h3>
<p class="mb-1">Varun Venkitaraman, Tejeshwar Thorawade, <u><b>Mitul Tandon</b></u>, Keerthisagar Kokkiligadda, Virendra Singh, Janak Patel</p>
<div class="mb-2">
<a class="fw-bold" href="https://asic-chile.cl/vlsisoc/">33rd IFIP/IEEE International Conference on Very Large Scale Integration (VLSI-SoC 2025)</a>
</div>
<!-- <div class="d-inline-flex">
<a href="https://arxiv.org/pdf/2205.00922.pdf">
<div>
<i class="fas fa-file-pdf"></i>
<span class="ms-1 me-4">PDF</span>
</div>
</a>
</div> -->
<div><p><br/></p></div>
</li>
<!-- <li>
<h3 class="mb-0">Behemoth: A Flash-centric Training Accelerator for
Extreme-scale
DNNs</h3>
<p class="mb-0">Shine Kim, Yunho Jin, Gina Sohn, Jonghyun Bae, Tae Jun
Ham, Jae W. Lee.</p>
<div class="mb-2">
<a class="fw-bold" href="https://www.usenix.org/conference/fast21">FAST</a>,
2021
</div>
<div class="d-inline-flex">
<a href="https://www.usenix.org/system/files/fast21-kim.pdf">
<div>
<i class="fas fa-file-pdf"></i>
<span class="ms-1 me-4">PDF</span>
</div>
</a>
<a
href="https://www.usenix.org/sites/default/files/conference/protected-files/fast21_slides_kim.pdf">
<div>
<i class="fas fa-file-pdf"></i>
<span class="ms-1 me-4">Slides</span>
</div>
</a>
</div>
</li> -->
</ul>
</div>
<div class="flex-shrink-0">
</div>
</div>
</div>
</section>
<hr class="m-0" />
<!--Research Experience-->
<section class="resume-section" id="research">
<div class="resume-section-content">
<h2 class="mb-5">Research Experience</h2>
<!-- Pipelined RISC Processor -->
<a href="javascript:void(0);" id="back-to-research" class="btn btn-link mb-4" style="display: none;">← Back to All Research Experience</a>
<div class="research-item mb-4">
<div class="research-header">
<div class="d-flex flex-column flex-md-row justify-content-between">
<div class="flex-grow-1">
<h3 class="mb-1 research-title"><a>Improving Memory Subsystem Efficiency for Graph Analytics</a></h3>
<h4 class="mb-1 fst-italic fs-5 fw-normal">Prof. Virendra Singh</h4>
<p class="mb-0 research-summary">Developed and modeled a hardware-based, data-aware prefetching mechanism to optimize on-chip cache utilization for graph analytics, achieving up to 78% speedup over baseline and 16% over state-of-the-art DROPLET prefetcher accross applications on the GAP Benchmark Suite using Sniper simulator.</p>
</div>
<div class="flex-shrink-0" style="width: 165px;">
<span class="text-primary">Dec 2024 - May 2025</span><br />
<span class="text-primary">IIT Bombay</span>
</div>
</div>
</div>
<div class="research-details">
<hr>
<h5>Research Details</h5>
<ul>
<li>Analyzed hardware-based prefetching mechanisms such as DROPLET, along with cache management techniques like GRACE to optimize on-chip cache utilization and accelerate graph processing.</li>
<li>Proposed and modeled a hardware-based, data-aware prefetching mechanism designed for graph analytics applications.</li>
<li>Achieved up to 78% performance improvement over the baseline and 16% improvement over the state-of-the-art hardware prefetcher DROPLET across applications in the GAP Benchmark Suite, using the Sniper simulator.</li>
</ul>
</div>
</div>
<div class="research-item mb-4">
<div class="research-header">
<div class="d-flex flex-column flex-md-row justify-content-between">
<div class="flex-grow-1">
<h3 class="mb-1 research-title"><a>Low Cost Cache Replacement Policy</a></h3>
<h4 class="mb-1 fst-italic fs-5 fw-normal">Prof. Virendra Singh</h4>
<p class="mb-0 research-summary">Designed and evaluated a lightweight cache replacement policy for all cache levels, achieving up to 28× storage reduction compared to state-of-the-art policies (NMRU, PLRU, SRRIP, SHiP, Hawkeye) with negligible performance loss, validated through ChampSim simulator.</p>
</div>
<div class="flex-shrink-0" style="width: 165px;">
<span class="text-primary">Jan 2025 - Mar 2025</span><br />
<span class="text-primary">IIT Bombay</span>
</div>
</div>
</div>
<div class="research-details">
<hr>
<h5>Research Details</h5>
<ul>
<li>Proposed a lightweight cache replacement policy for the entire cache hierarchy (all levels), focusing on reduced area, lower power consumption and a simplified decision-making algorithm.</li>
<li>Implemented pseudo-LRU (tree-based) and NRU (1-bit RRPV version of SRRIP) replacement policies and performed a comparative analysis of the proposed policy against various other replacement policies using the ChampSim simulator</li>
<li>Achieved significant storage reduction, lowering requirements by factors of 4x, 3.75x, 16x, 14x and 28x compared to NMRU, pseudo-LRU, LRU/SRRIP/DRRIP, SHiP and Hawkeye respectively with negligible performance loss.</li>
</ul>
</div>
</div>
<div class="research-item mb-4">
<div class="research-header">
<div class="d-flex flex-column flex-md-row justify-content-between">
<div class="flex-grow-1">
<h3 class="mb-1 research-title"><a>Set Associative 3D DRAM Caches</a></h3>
<h4 class="mb-1 fst-italic fs-5 fw-normal">Prof. Biswabandan Panda</h4>
<p class="mb-0 research-summary">Conducted an in-depth study of 3D DRAM technologies (HBM, HMC) and stacking architecures, then implemented and evaluated a 64 MB set-associative HBM cache tag array using ChampSim, achieving 8.5% improvement over direct-mapped HBM and 24.27% speedup over baseline.</p>
</div>
<div class="flex-shrink-0" style="width: 165px;">
<span class="text-primary">Aug 2024 - Nov 2024</span><br />
<span class="text-primary">IIT Bombay</span>
</div>
</div>
</div>
<div class="research-details">
<hr>
<h5>Research Details</h5>
<ul>
<li>Conducted a literature review on 3D DRAM technologies, including High Bandwidth Memory and Hybrid Memory Cube to understand their architecture, core functionalities, and potential for high-bandwidth applications.</li>
<li>Performed an in-depth analysis of SILO, which discusses the use of a private die-stacked DRAM cache similar to HMC.</li>
<li>Developed a 64 MB HMC tag array for an HBM cache using the ChampSim simulator, enabling set associativity in HBM.</li>
<li>Achieved an 8.5% improvement over the directly mapped HBM cache and a 24.27% speedup compared to the baseline.</li>
</ul>
</div>
</div>
<div class="research-item mb-4">
<div class="research-header">
<div class="d-flex flex-column flex-md-row justify-content-between">
<div class="flex-grow-1">
<h3 class="mb-1 research-title"><a>Processing Data Where It Makes Sense</a></h3>
<h4 class="mb-1 fst-italic fs-5 fw-normal">Prof. Virendra Singh</h4>
<p class="mb-0 research-summary">Conducted an extensive literature review on processing-in-memory (PIM) and explored PIM simulators like ZSim+Ramulator to understand their capabilities for modeling and evaluating PIM systems.</p>
</div>
<div class="flex-shrink-0" style="width: 165px;">
<span class="text-primary">Jun 2024 - JUl 2024</span><br />
<span class="text-primary">IIT Bombay</span>
</div>
</div>
</div>
<div class="research-details">
<hr>
<h5>Research Details</h5>
<ul>
<li>Conducted an extensive literature review on processing-in-memory, and the simulators used to simulate PIM systems.</li>
<li>Analyzed the Ramulator paper and reproduced its results using the corresponding simulator (Ramulator), involving a comparison of IPC metrics across various DRAM standards with 22 benchmarks from the SPEC2006 suite.</li>
<li>Used ZSim+Ramulator to simulate multiple benchmarks from the DAMOV suite, comparing IPC and cycle counts across host, PIM, and host with prefetcher systems, with PIM systems leveraging computations in the logic layer of an HMC.</li>
</ul>
</div>
</div>
</div>
</section>
<hr class="m-0" />
<!-- Awards-->
<!-- <section class="resume-section" id="awards">
<div class="resume-section-content">
<h2 class="mb-5">Honors & Scholarships</h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-1"><a href="https://vpge.stanford.edu/fellowships-funding/sgf">
Stanford Graduate Fellowship (Burt and Deedee McMurtry Fellow) </a></h3>
<div class="subheading mb-2">Stanford University</div>
</div>
<div class="flex-shrink-0">
<span class="text-primary">2022-2025</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-1"><a href="https://www.kosaf.go.kr/eng/jsp/aid/aid02_01_01.jsp">
National Scholarship For Science and Engineering </a></h3>
<div class="subheading mb-2">Korea Student Aid Foundation</div>
</div>
<div class="flex-shrink-0">
<span class="text-primary">2020-2021</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-1">Silver Prize at the Academic Festival of College of Liberal Studies</h3>
<!--<div class="subheading mb-1 mt-sm-0">(Paper: Improving U-Net and U-Net Variants for
CT
Scan Organ Segmentation)</div>
<div class="subheading mb-2">Seoul National University</div>
</div>
<div class="flex-shrink-0">
<span class="text-primary">2021</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-1">Eminence Scholarship</h3>
<div class="subheading mb-2">Seoul National University</div>
</div>
<div class="flex-shrink-0">
<span class="text-primary">2019</span>
</div>
</div>
</div>
</section>
<hr class="m-0" /> -->
<!-- Projects -->
<section class="resume-section" id="projects">
<div class="resume-section-content">
<h2 class="mb-4">Projects</h2>
<a href="javascript:void(0);" id="back-to-projects" class="btn btn-link mb-4" style="display: none;">← Back to All Projects</a>
<div class="project-item mb-4">
<div class="project-header">
<div class="d-flex flex-column flex-md-row justify-content-between">
<div class="flex-grow-1">
<h3 class="mb-1 project-title"><a>Pipelined RISC Processor</a></h3>
<h4 class="mb-1 fst-italic fs-5 fw-normal">EE 309: Microprocessors | Prof. Virendra Singh</h4>
<p class="mb-0 project-summary"> Designed and implemented a 16-bit 6-stage pipelined processor supporting predicated execution, multiple load/store operations, branch prediction, and hazard mitigation, programmed in VHDL.</p>
</div>
<div class="flex-shrink-0" style="width: 165px;">
<span class="text-primary">Mar 2024 - May 2024</span><br />
<span class="text-primary">IIT Bombay</span>
</div>
</div>
</div>
<div class="project-details">
<hr>
<h5>Project Details</h5>
<ul>
<li>Designed IITB-RISC, a 16-bit 6-stage pipelined processor supporting predicated execution, multiple load/store operations, and branch prediction.</li>
<li>Implemented hazard mitigation with stalling, flushing, data forwarding, and a history-bit-based branch predictor, which reduced stalls and improved the overall IPC.</li>
<li>Programmed the complete datapath using a mix of behavioral and structural VHDL.</li>
<li>Tested the system rigorously with an extensive custom instruction set in ModelSim to ensure correctness.</li>
</ul>
</div>
</div>
<div class="project-item mb-4">
<div class="project-header">
<div class="d-flex flex-column flex-md-row justify-content-between">
<div class="flex-grow-1">
<h3 class="mb-1 project-title"><a>Multicycle Architecture Processor</a></h3>
<h4 class="mb-1 fst-italic fs-5 fw-normal">EE 224: Digital Systems | Prof. Virendra Singh</h4>
<p class="mb-0 project-summary">Designed and implemented a 16-bit processor supporting R/I/J instruction types and a 14-instruction Turing-complete ISA, programmed in VHDL and tested on ALTERA MAX-10 FPGA.</p>
</div>
<div class="flex-shrink-0" style="width: 165px;">
<span class="text-primary">Nov 2023 - Jan 2024</span><br />
<span class="text-primary">IIT Bombay</span>
</div>
</div>
</div>
<div class="project-details">
<hr>
<h5>Project Details</h5>
<ul>
<li>Modeled IITB-CPU, a 16-bit processor with 8 registers, supporting R/I/J instructions and a 14-instruction Turing-complete ISA.</li>
<li>Programmed core components including ALU, Register File, Memory Unit, and controller, using structural VHDL for optimized testing on Xen-10 FPGA.</li>
<li>Created comprehensive digital documentation with FSMs, flowcharts, and component designs to validate all instructions and system functionalities.</li>
</ul>
</div>
</div>
<div class="project-item mb-4">
<div class="project-header">
<div class="d-flex flex-column flex-md-row justify-content-between">
<div class="flex-grow-1">
<h3 class="mb-1 project-title"><a>Logic Analyzer for PicoIRIS</a></h3>
<h4 class="mb-1 fst-italic fs-5 fw-normal">Summer Project | Wadhwani Electronics Lab | Prof. Siddharth Tallur</h4>
<p class="mb-0 project-summary">Integrated logic analyzer functionality into PicoIRIS for digital signal analysis, programmed PIC32 for Bluetooth UART communication with 500 kHz sampling, and built a Qt–Python GUI for real-time data visualization and UART debugging.</p>
</div>
<div class="flex-shrink-0" style="width: 165px;">
<span class="text-primary">Jun 2024 - Jul 2024</span><br />
<span class="text-primary">IIT Bombay</span>
</div>
</div>
</div>
<div class="project-details">
<hr>
<h5>Project Details</h5>
<ul>
<li>Upgraded the in-house PicoIRIS PCB by adding logic analyzer capabilities for academic digital signal analysis.</li>
<li>Programmed PIC32 for Bluetooth UART communication, enabling data sampling up to 500 kHz for debugging UART, I2C, and SPI signals.</li>
<li>Developed a Qt-based GUI integrated with Python backend for interactive data visualization and UART analysis.</li>
</ul>
</div>
</div>
<div class="project-item mb-4">
<div class="project-header">
<div class="d-flex flex-column flex-md-row justify-content-between">
<div class="flex-grow-1">
<h3 class="mb-1 project-title"><a>Colorization of B/W Images using DNN</a></h3>
<h4 class="mb-1 fst-italic fs-5 fw-normal">WiDS 2023 | Analytics Club</h4>
<p class="mb-0 project-summary">Implemented and iteratively refined deep learning models for automatic colorization of black-and-white images, leveraging Transfer Learning with Inception-ResNet-v2 to improve object recognition and color accuracy.</p>
</div>
<div class="flex-shrink-0" style="width: 165px;">
<span class="text-primary">Dec 2023 - Jan 2024</span><br />
<span class="text-primary">IIT Bombay</span>
</div>
</div>
</div>
<div class="project-details">
<hr>
<h5>Project Details</h5>
<ul>
<li>Preprocessed the MNIST dataset using Python libraries and trained a CNN with Batch Normalization in PyTorch for efficient digit classification.</li>
<li>Evaluated and optimized model performance using accuracy metrics, precision, recall, F1-score, and confusion matrices.</li>
<li>Implemented Alpha, Beta, and Final colorization models, integrating Inception-ResNet-v2 via Transfer Learning to enhance object understanding and coloring accuracy.</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Teaching Experience-->
<section class="resume-section" id="teaching">
<div class="resume-section-content">
<h2 class="mb-5">Teaching Experience</h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-2">Digital Systems (EE 224)</h3>
<!-- <h4 class="mb-0 fst-italic fs-5 fw-normal">Indian Institute of Technology, Bombay
</h4> -->
<div class="subheading mb-2">Teaching Assistant</div>
<ul>
<li>
<p class="mb-1"><b>Sole undergraduate TA</b> for a class of <b>95+ students</b>, managing course logistics and coordinating with graduate TAs.</p>
</li>
<li>
<p class="mb-1">Conducted weekly test invigilation, graded assessments, developed quiz solutions and evaluation rubrics, and held regular doubt-solving sessions for student mentorship.</p>
</li>
</ul>
</div>
<div class="flex-shrink-0" style="width: 165px;">
<span class="text-primary">Mar 2024 - May 2024</span><br>
<span class="text-primary">IIT Bombay</span>
</div>
</div>
</div>
</section>
<hr class="m-0" />
<!-- Academics -->
<section class="resume-section" id="academics">
<div class="resume-section-content">
<h2 class="mb-5">Academics</h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<!-- Left column: Other departments -->
<div class="flex-grow-1 me-md-4"> <!-- me-md-4 adds spacing between columns -->
<h3 class="mb-3">Department of Electrical Engineering</h3>
<ul>
<li><p class="mb-1"><span class="fw-bold"><a href="https://tandonmitul27.github.io/#academics/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EEXYZ</a></span> – Introduction to Optimization*†</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://tandonmitul27.github.io/#academics/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EEXYZ</a></span> – Electronics Design Lab <Advanced Digital System Design>*†</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.ee.iitb.ac.in/web/course_lists/ee-739-processor-design/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE739</a></span> – Processor Design</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.ee.iitb.ac.in/web/course_lists/ee-338-digital-signal-processing/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE338</a></span> – Digital Signal Processing</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.ee.iitb.ac.in/web/course_lists/ee-344-electronic-design-lab/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE344</a></span> – Electronic Design Lab</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.ee.iitb.ac.in/web/course_lists/ee-350-technical-communication/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE350</a></span> – Technical Communication</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://tandonmitul27.github.io/#academics/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE691</a></span> – R & D Project</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.ee.iitb.ac.in/web/course_lists/ee-789-algorithmic-design-of-digital-systems/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE789</a></span> – Algorithmic Design of Digital Systems</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.ee.iitb.ac.in/web/course_lists/ee-236-electronic-devices-laboratory/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE236</a></span> – Electronic Devices Lab</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.ee.iitb.ac.in/web/course_lists/ee-301-electromagnetic-waves/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE301</a></span> – Electromagnetic Waves</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.ee.iitb.ac.in/web/course_lists/ee-324-control-systems-laboratory/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE324</a></span> – Control Systems Lab</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.ee.iitb.ac.in/web/course_lists/ee-340-communications-laboratory/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE340</a></span> – Communications Lab</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.ee.iitb.ac.in/web/course_lists/ee-341-communication-systems-i/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE341</a></span> – Communication Systems - I</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.ee.iitb.ac.in/web/course_lists/ee-353-introduction-to-data-science-and-machine-learning/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE353</a></span> – Introduction to Data Science and Machine Learning</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.ee.iitb.ac.in/web/course_lists/ee-207-electronic-devices-and-circuits/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE207</a></span> – Electronic Devices & Circuits</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.ee.iitb.ac.in/web/course_lists/ee-230-analog-circuits-laboratory/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE230</a></span> – Analog Lab</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.ee.iitb.ac.in/web/course_lists/ee-236-power-engineering-ii/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE238</a></span> – Power Engineering - II</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.ee.iitb.ac.in/web/course_lists/ee-240-power-engineering-lab/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE240</a></span> – Power Engineering Lab</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.ee.iitb.ac.in/~belur/ee302/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE302</a></span> – Control Systems</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.ee.iitb.ac.in/web/course_lists/ee-309-microprocessors/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE309</a></span> – Microprocessors</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://ee337.github.io/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE337</a></span> – Microprocessors Laboratory</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.ee.iitb.ac.in/web/course_lists/ee-114-power-engineering-i/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE114</a></span> – Power Engineering - I</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.ee.iitb.ac.in/web/course_lists/ee-204-analog-circuits/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE204</a></span> – Analog Circuits</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://ee214.github.io/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE214</a></span> – Digital Circuits Lab</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.ee.iitb.ac.in/web/course_lists/ee-224-digital-systems/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE224</a></span> – Digital Systems</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.ee.iitb.ac.in/web/course_lists/ee-227-microelectronics/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE229</a></span> – Signal Processing - I</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.ee.iitb.ac.in/~bsraj/courses/ee325/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">EE325</a></span> – Probability and Random Processes</p></li>
</ul>
</div>
<!-- Right column: EE Department -->
<div class="flex-grow-1 ms-md-4"> <!-- ms-md-4 adds spacing from left column -->
<h3 class="mb-3">Department of Computer Science & Engineering</h3>
<ul>
<li><p class="mb-1"><span class="fw-bold"><a href="https://tandonmitul27.github.io/#academics/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">CSXYZ</a></span> – Introduction to Artificial Intelligence*†</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://tandonmitul27.github.io/#academics/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">CS490</a></span> – R & D Project</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.cse.iitb.ac.in/~mp/teach/ds/aut20/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">CS207</a></span> – Discrete Structures</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.cse.iitb.ac.in/~cs101/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">CS101</a></span> – Computer Programming and Utilization</p></li>
</ul>
<br>
<h3 class="mb-3">Department of Biosciences and Bioengineering</h3>
<ul>
<li><p class="mb-1"><span class="fw-bold"><a href="https://tandonmitul27.github.io/#academics/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">BBXYZ</a></span> – Bioinformatics*†</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.bio.iitb.ac.in/academics/courses/bb101/" target="_blank" rel="noopener noreferrer" style="text-decoration: none">BB101</a></span> – Biology</p></li>
</ul>
<br>
<h3 class="mb-3">Centre for Machine Intelligence and Data Science</h3>
<ul>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.minds.iitb.ac.in/site/academic-document/16169efe-61d8-11ee-995a-f8b156be9900-DS-203.pdf" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">DS203</a></span> – Programming for Data Science</p></li>
</ul>
<br>
<h3 class="mb-3">Department of Mathematics</h3>
<ul>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.math.iitb.ac.in/~preeti/ma108-2019/" target="_blank" rel="noopener noreferrer" style="text-decoration: none;">MA108</a></span> – Differential Equations</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://www.math.iitb.ac.in/~ars/MA106.html" target="_blank" rel="noopener noreferrer" style="text-decoration: none">MA106</a></span> – Linear Algebra</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://tandonmitul27.github.io/#academics/" target="_blank" rel="noopener noreferrer" style="text-decoration: none">MA111</a></span> – Calculus II</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://tandonmitul27.github.io/#academics/" target="_blank" rel="noopener noreferrer" style="text-decoration: none">MA109</a></span> – Calculus I</p></li>
</ul>
<br>
<h3 class="mb-3">Department of Physics</h3>
<ul>
<li><p class="mb-1"><span class="fw-bold"><a href="https://tandonmitul27.github.io/#academics/" target="_blank" rel="noopener noreferrer" style="text-decoration: none">PH112</a></span> – Introduction to Quantum Physics</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://tandonmitul27.github.io/#academics/" target="_blank" rel="noopener noreferrer" style="text-decoration: none">PH111</a></span> – Introduction to Classical Physics</p></li>
<li><p class="mb-1"><span class="fw-bold"><a href="https://tandonmitul27.github.io/#academics/" target="_blank" rel="noopener noreferrer" style="text-decoration: none">PH117</a></span> – Physics Lab</p></li>
</ul>
</div>
</div>
<p class="mb-0"><i>*Ongoing, to be completed by Dec'25.</i></p>
<p class="mb-0"><i>†Courses taken at KAIST.</i></p>
</div>
</section>
<hr class="m-0" />
<!-- Photography -->
<!-- <section class="resume-section" id="photography">
<div class="resume-section-content">
<h2 class="mb-4">Photography</h2>
<h4 class="mb-4">
I've always found photography to be one of the most powerful ways we can express ourselves.
It's more than just snapping a picture. It's a way to pause a fleeting moment, tell a story,
and share a unique perspective. I hope you enjoy seeing the world through my eyes.
</h4> -->
<!-- Back Button -->
<!-- <a href="javascript:void(0);" id="back-to-photography" class="btn btn-link mb-4" style="display: none;">
← Back to All Collections
</a> -->
<!-- Collection 1 -->
<!-- <div class="photography-item mb-4"> -->
<!-- <div class="photography-header d-flex flex-column flex-md-row justify-content-between">
<div class="flex-grow-1">
<h3 class="mb-1 photography-title">
<a href="#" class="photography-toggle">Caged Minds</a>
</h3>
<p class="mb-0">A visual reflection on confinement, structure, and the silent yearning for freedom.</p>
</div>
<div class="flex-shrink-0" style="width: 165px;">
<span class="text-primary">Sep 2025</span><br />
<span class="text-primary">Daejeon, South Korea</span>
</div>
</div> -->
<!-- <div class="photography-header">
<div class="d-flex flex-column flex-md-row justify-content-between">
<div class="flex-grow-1">
<h3 class="mb-1 photography-title"><a>Caged Minds</a></h3>
<p class="mb-0 photography-summary">A visual reflection on confinement, structure, and the silent yearning for freedom.</p>
</div>
<div class="flex-shrink-0" style="width: 165px;">
<span class="text-primary">Sep 2025</span><br />
<span class="text-primary">Daejeon, South Korea</span>
</div>
</div>
</div>
<div class="photography-details mt-3">
<hr>
<div class="row">
<div class="col-md-4 mb-3">
<img src="assets/photos/trek1.jpg" class="img-fluid rounded shadow" alt="Caged Minds photo 1">
</div>
<div class="col-md-4 mb-3">
<img src="assets/photos/trek2.jpg" class="img-fluid rounded shadow" alt="Caged Minds photo 2">
</div>
<div class="col-md-4 mb-3">
<img src="assets/photos/trek3.jpg" class="img-fluid rounded shadow" alt="Caged Minds photo 3">
</div>
</div>
</div>
</div> -->
<!-- Collection 2 -->
<!-- <div class="photography-item mb-4">
<div class="photography-header d-flex flex-column flex-md-row justify-content-between">
<div class="flex-grow-1">
<h3 class="mb-1 photography-title">
<a href="#" class="photography-toggle">Caged Minds</a>
</h3>
<p class="mb-0">A visual reflection on confinement, structure, and the silent yearning for freedom.</p>
</div>
<div class="flex-shrink-0" style="width: 165px;">
<span class="text-primary">Sep 2025</span><br />
<span class="text-primary">Daejeon, South Korea</span>
</div>
</div>
<div class="photography-details mt-3">
<hr>
<div class="row">
<div class="col-md-4 mb-3">
<img src="assets/photos/trek1.jpg" class="img-fluid rounded shadow" alt="Caged Minds photo 1">
</div>
<div class="col-md-4 mb-3">
<img src="assets/photos/trek2.jpg" class="img-fluid rounded shadow" alt="Caged Minds photo 2">
</div>
<div class="col-md-4 mb-3">
<img src="assets/photos/trek3.jpg" class="img-fluid rounded shadow" alt="Caged Minds photo 3">
</div>
</div>
</div>
</div>
</div>
</section> -->
<section class="resume-section" id="photography">
<div class="resume-section-content">
<h2 class="mb-4">Photography</h2>
<h4 class="mb-4">
I've always found photography to be one of the most powerful ways we can express ourselves.
It's more than just snapping a picture. It's a way to pause a fleeting moment, tell a story,
and share a unique perspective. I hope you enjoy seeing the world through my eyes.
</h4>
<a href="javascript:void(0);" id="back-to-photography" class="btn btn-link mb-4" style="display: none;">← Back to Collections</a>
<div class="photography-item mb-4">
<div class="photography-header">
<div class="d-flex flex-column flex-md-row justify-content-between">
<div class="flex-grow-1">
<h3 class="mb-1 photography-title"><a>Caged Minds</a></h3>
<p class="mb-0 photography-summary">
This series captures the quiet struggles of student life — the weight of deadlines,
the feeling of being caged by expectations, and the small temptations of joy that lie just outside reach.
As the images progress, so does the light, mirroring the shift in mood from despair to a search for relief.
</p>
</div>
<div class="flex-shrink-0" style="width: 165px;">
<span class="text-primary">Sep 2025</span><br />
<span class="text-primary">Daejeon, South Korea</span>
</div>
</div>
</div>
<div class="photography-details">
<div class="row justify-content-center">
<div class="col-md-4 mb-4 text-center">
<img src="assets/img/caged/1.jpeg" class="img-fluid rounded shadow photography-thumb" alt="Caged Minds photo 1" data-caption="1. The Breaking Point<br>A student holds his head in exhaustion, surrounded by assignments and glowing screens. Scribbled notes and tear-stained pages reflect frustration, yet a small sign in the corner whispers: “You can do it!”">
<p class="mt-2 gallery-caption">1. The Breaking Point</p>
</div>
<div class="col-md-4 mb-4 text-center">
<img src="assets/img/caged/2.jpeg" class="img-fluid rounded shadow photography-thumb" alt="Caged Minds photo 2" data-caption="2. Trapped<br>Books, screens, and notebooks close in like walls, forming a cage. Only the student’s forehead peeks through — a symbol of how study and pressure confine him.">
<p class="mt-2 gallery-caption">2. Trapped</p>
</div>
<div class="col-md-4 mb-4 text-center">
<img src="assets/img/caged/3.jpeg" class="img-fluid rounded shadow photography-thumb" alt="Caged Minds photo 3" data-caption="3. The Temptation<br>Beyond the cage lie distractions: music, play, and small pleasures. For the first time, his eyes notice them — a flicker of curiosity amid the monotony.">
<p class="mt-2 gallery-caption">3. The Temptation</p>
</div>
<div class="col-md-4 mb-4 text-center">
<img src="assets/img/caged/4.jpeg" class="img-fluid rounded shadow photography-thumb" alt="Caged Minds photo 4" data-caption="4. Reaching Out<br>Fingers curl over the cage’s edge, drawn toward the outside world. The tension between duty and desire becomes visible.">
<p class="mt-2 gallery-caption">4. Reaching Out</p>
</div>
<div class="col-md-4 mb-4 text-center">
<img src="assets/img/caged/5.jpeg" class="img-fluid rounded shadow photography-thumb" alt="Caged Minds photo 5" data-caption="5. Breaking Free<br>Both arms over the cage boundary. The student is no longer just observing — he is ready to reach for joy beyond the walls of pressure. The light is brighter now, reflecting the shift in his state of mind.">
<p class="mt-2 gallery-caption">5. Breaking Free</p>
</div>
</div>
<!-- <h4 class="mt-4 mb-3 text-center">💬 Share your thoughts</h4> -->
<!-- <div class="commentbox"></div> -->
<div id="comments"></div>
</div>
</div>
<div class="photography-item mb-4">
<div class="photography-header">
<div class="d-flex flex-column flex-md-row justify-content-between">
<div class="flex-grow-1">
<h3 class="mb-1 photography-title"><a>Clouds are heavier than we think</a></h3>
<p class="mb-0 photography-summary">
Coming Soon...
</p>
</div>
<div class="flex-shrink-0" style="width: 165px;">
<span class="text-primary">...</span><br />
<span class="text-primary">Daejeon, South Korea</span>
</div>
</div>
</div>
<div class="photography-details">
<!-- <div class="row justify-content-center">
<div class="col-md-4 mb-4 text-center">
<img src="assets/img/caged/1.jpeg" class="img-fluid rounded shadow photography-thumb" alt="Caged Minds photo 1" data-caption="1. The Breaking Point<br>A student holds his head in exhaustion, surrounded by assignments and glowing screens. Scribbled notes and tear-stained pages reflect frustration, yet a small sign in the corner whispers: “You can do it.”">
<p class="mt-2 gallery-caption">1. The Breaking Point</p>
</div>
<div class="col-md-4 mb-4 text-center">
<img src="assets/img/caged/2.jpeg" class="img-fluid rounded shadow photography-thumb" alt="Caged Minds photo 2" data-caption="2. Trapped<br>Books, screens, and notebooks close in like walls, forming a cage. Only the student’s eyes and forehead peek through — a symbol of how study and pressure confine him.">
<p class="mt-2 gallery-caption">2. Trapped</p>
</div>
<div class="col-md-4 mb-4 text-center">
<img src="assets/img/caged/3.jpeg" class="img-fluid rounded shadow photography-thumb" alt="Caged Minds photo 3" data-caption="3. The Temptation<br>Beyond the cage lie distractions: music, play, and small pleasures. For the first time, his eyes notice them — a flicker of curiosity amid the monotony.">
<p class="mt-2 gallery-caption">3. The Temptation</p>
</div>
<div class="col-md-4 mb-4 text-center">
<img src="assets/img/caged/4.jpeg" class="img-fluid rounded shadow photography-thumb" alt="Caged Minds photo 4" data-caption="4. Reaching Out<br>Fingers curl over the cage’s edge, drawn toward the outside world. The tension between duty and desire becomes visible.">
<p class="mt-2 gallery-caption">4. Reaching Out</p>
</div>
<div class="col-md-4 mb-4 text-center">
<img src="assets/img/caged/5.jpeg" class="img-fluid rounded shadow photography-thumb" alt="Caged Minds photo 5" data-caption="5. Breaking Free<br>Both arms over the cage boundary. The student is no longer just observing — he is ready to reach for joy beyond the walls of pressure. The light is brighter now, reflecting the shift in his state of mind.">
<p class="mt-2 gallery-caption">5. Breaking Free</p>
</div>
</div> -->
</div>
</div>
<div class="photography-item mb-4">
<div class="photography-header">
<div class="d-flex flex-column flex-md-row justify-content-between">
<div class="flex-grow-1">
<h3 class="mb-1 photography-title"><a>Chaos</a></h3>
<p class="mb-0 photography-summary">
Coming Soon...
</p>
</div>
<div class="flex-shrink-0" style="width: 165px;">
<span class="text-primary">...</span><br />
<span class="text-primary">Daejeon, South Korea</span>
</div>
</div>
</div>
<div class="photography-details">
<!-- <div class="row justify-content-center">
<div class="col-md-4 mb-4 text-center">
<img src="assets/img/caged/1.jpeg" class="img-fluid rounded shadow photography-thumb" alt="Caged Minds photo 1" data-caption="1. The Breaking Point<br>A student holds his head in exhaustion, surrounded by assignments and glowing screens. Scribbled notes and tear-stained pages reflect frustration, yet a small sign in the corner whispers: “You can do it.”">
<p class="mt-2 gallery-caption">1. The Breaking Point</p>
</div>
<div class="col-md-4 mb-4 text-center">
<img src="assets/img/caged/2.jpeg" class="img-fluid rounded shadow photography-thumb" alt="Caged Minds photo 2" data-caption="2. Trapped<br>Books, screens, and notebooks close in like walls, forming a cage. Only the student’s eyes and forehead peek through — a symbol of how study and pressure confine him.">
<p class="mt-2 gallery-caption">2. Trapped</p>
</div>
<div class="col-md-4 mb-4 text-center">
<img src="assets/img/caged/3.jpeg" class="img-fluid rounded shadow photography-thumb" alt="Caged Minds photo 3" data-caption="3. The Temptation<br>Beyond the cage lie distractions: music, play, and small pleasures. For the first time, his eyes notice them — a flicker of curiosity amid the monotony.">
<p class="mt-2 gallery-caption">3. The Temptation</p>
</div>
<div class="col-md-4 mb-4 text-center">
<img src="assets/img/caged/4.jpeg" class="img-fluid rounded shadow photography-thumb" alt="Caged Minds photo 4" data-caption="4. Reaching Out<br>Fingers curl over the cage’s edge, drawn toward the outside world. The tension between duty and desire becomes visible.">
<p class="mt-2 gallery-caption">4. Reaching Out</p>
</div>
<div class="col-md-4 mb-4 text-center">
<img src="assets/img/caged/5.jpeg" class="img-fluid rounded shadow photography-thumb" alt="Caged Minds photo 5" data-caption="5. Breaking Free<br>Both arms over the cage boundary. The student is no longer just observing — he is ready to reach for joy beyond the walls of pressure. The light is brighter now, reflecting the shift in his state of mind.">
<p class="mt-2 gallery-caption">5. Breaking Free</p>
</div>
</div> -->
</div>
</div>
</div>
</section>
<!-- Extracurricular & Leadership Activities-->
<!-- <section class="resume-section" id="extracurricular">
<div class="resume-section-content">
<h2 class="mb-5">Extracurricular & Leadership Activities</h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">
<a href="https://www.gongwoo.snu.ac.kr/about-us">Seoul National University College of
Engineering Honor Society
</h3>
</a>
<h4>(SNU Tomorrow’s
Edge Membership)</h4>
<div class="subheading mb-2">Academic Activity Director</div>
</div>
<div class="flex-shrink-0">
<span class="text-primary">Mar. 2021 – Jun. 2022</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0"><a href="https://www.kwise.org/">Korean-American Women in Science and
Engineering (KWiSE)</a></h3>
<div class="subheading mb-2">2021 Mentee Team Leader (Chapter: Los Angeles, USA)</div>
</div>
<div class="flex-shrink-0">
<span class="text-primary">Mar. 2021 – Present</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0"><a href="http://guardian.snucse.org/">Seoul National University Security
Research Group (Guardian)</a></h3>
<div class="subheading mb-2">club member</div>
</div>
<div class="flex-shrink-0">
<span class="text-primary">Mar. 2019 - Jul. 2019</span>
</div>
</div>
</div>
</section>
<hr class="m-0" /> -->
<!-- Skills
<section class="resume-section" id="skills">
<div class="resume-section-content">
<h2 class="mb-5">Skills</h2>
<div class="subheading mb-3">Programming Languages & Tools</div>
<ul class="list-inline dev-icons">
<li class="list-inline-item"><i class="fab fa-html5"></i></li>
<li class="list-inline-item"><i class="fab fa-css3-alt"></i></li>
<li class="list-inline-item"><i class="fab fa-js-square"></i></li>
<li class="list-inline-item"><i class="fab fa-angular"></i></li>
<li class="list-inline-item"><i class="fab fa-react"></i></li>
<li class="list-inline-item"><i class="fab fa-node-js"></i></li>
<li class="list-inline-item"><i class="fab fa-sass"></i></li>
<li class="list-inline-item"><i class="fab fa-less"></i></li>
<li class="list-inline-item"><i class="fab fa-wordpress"></i></li>
<li class="list-inline-item"><i class="fab fa-gulp"></i></li>
<li class="list-inline-item"><i class="fab fa-grunt"></i></li>
<li class="list-inline-item"><i class="fab fa-npm"></i></li>
</ul>
<div class="subheading mb-3">Workflow</div>
<ul class="fa-ul mb-0">
<li>
<span class="fa-li"><i class="fas fa-check"></i></span>
Mobile-First, Responsive Design
</li>
<li>
<span class="fa-li"><i class="fas fa-check"></i></span>
Cross Browser Testing & Debugging
</li>
<li>
<span class="fa-li"><i class="fas fa-check"></i></span>
Cross Functional Teams
</li>
<li>
<span class="fa-li"><i class="fas fa-check"></i></span>
Agile Development & Scrum
</li>
</ul>
</div>
</section>
<hr class="m-0" />
-->
</div>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="js/scripts.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
const projectsContainer = document.querySelector('#projects .resume-section-content');
const projectItems = document.querySelectorAll('.project-item');
const backButton = document.getElementById('back-to-projects');
// Add a click listener to each project's header
projectItems.forEach(item => {
const header = item.querySelector('.project-header');
header.addEventListener('click', (e) => {
e.preventDefault();
// Don't allow clicking another project while one is open
if (projectsContainer.classList.contains('viewing-project')) {
return;
}
// Add classes to the container and the clicked item to trigger CSS animations
projectsContainer.classList.add('viewing-project');
item.classList.add('expanded');
// Show the back button
backButton.style.display = 'inline-block';
// Smoothly scroll to the top of the projects section for a better view
document.getElementById('projects').scrollIntoView({
behavior: 'smooth',
block: 'start'
});
});
});
// Add click listener for the 'Back' button
backButton.addEventListener('click', (e) => {
e.preventDefault();
// Find the currently expanded project
const expandedItem = document.querySelector('.project-item.expanded');
if (expandedItem) {
// Remove the classes to reverse the animation and hide the details
projectsContainer.classList.remove('viewing-project');
expandedItem.classList.remove('expanded');
}