forked from klovien/klovien.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
153 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Profile Page</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div class="profile"> | ||
<div class="profile-image"> | ||
<img src="profile.jpg" alt="Profile Image"> | ||
</div> | ||
<h2>Fengbin Tu</h2> | ||
<p>Ph.D. in Electronic Science and Technology, THU</p> | ||
<ul class="contact-info"> | ||
<li><i class="fas fa-map-marker-alt"></i> Hong Kong</li> | ||
<li><i class="fas fa-university"></i> HKUST</li> | ||
<li><i class="fas fa-envelope"></i> <a href="mailto:email@example.com">Email</a></li> | ||
<li><i class="fas fa-graduation-cap"></i> <a href="#">Google Scholar</a></li> | ||
<li><i class="fas fa-id-card"></i> <a href="#">ORCID</a></li> | ||
<li><i class="fab fa-github"></i> <a href="#">Github</a></li> | ||
<li><i class="fab fa-linkedin"></i> <a href="#">LinkedIn</a></li> | ||
<li><i class="fab fa-weixin"></i> <a href="#">Zhihu</a></li> | ||
</ul> | ||
</div> | ||
<div class="publications"> | ||
<h2>Selected Publications</h2> | ||
<div class="publication-section"> | ||
<h3>Books</h3> | ||
<ul> | ||
<li>F. Tu, “<a href="#">Architecture Design and Memory Optimization for Neural Network Accelerators</a>,” Tsinghua University Press, 2022.</li> | ||
<li>S. Yin, F. Tu, D. Zhu, S. Wei, “<a href="#">Artificial Intelligence Chip Design</a>,” Science Press, 2020.</li> | ||
</ul> | ||
</div> | ||
<div class="publication-section"> | ||
<h3>Survey Articles</h3> | ||
<ul> | ||
<li>[JOS'24] B. Yang, J. Chen, F. Tu, “<a href="#">Towards Efficient Generative AI and Beyond-AI Computing: New Trends on ISSCC 2024 Machine Learning Accelerators</a>,” Journal of Semiconductors (JOS), 2024. (Corresponding Author, Invited Paper)</li> | ||
<li>[TCAS-I'23] S. Wei, X. Lin, F. Tu, Y. Wang, L. Liu, S. Yin, “<a href="#">Reconfigurability, Why It Matters in AI Tasks Processing: a Survey of Reconfigurable AI Chips</a>,” IEEE Transactions on Circuits and Systems I (TCAS-I), 2023.</li> | ||
</ul> | ||
</div> | ||
<div class="publication-section"> | ||
<h3>Journal Papers</h3> | ||
<ul> | ||
<li>[JSSC'24] F. Tu, Z. Wu, Y. Wang, W. Wu, L. Liu, Y. Hu, S. Wei, S. Yin, “<a href="#">MuLT-CIM: Digital Computing-In-Memory-based Multimodal Transformer Accelerator with Attention-Token-Bit Hybrid Sparsity</a>,” IEEE Journal of Solid-State Circuits (JSSC), 2024. (Invited Paper, ISSCC’23 Extension)</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
<script src="https://kit.fontawesome.com/a076d05399.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
display: flex; | ||
justify-content: center; | ||
align-items: flex-start; | ||
background-color: #f8f9fa; | ||
} | ||
|
||
.container { | ||
display: flex; | ||
max-width: 1200px; | ||
margin: 20px; | ||
padding: 20px; | ||
background-color: white; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.profile { | ||
width: 30%; | ||
padding: 20px; | ||
border-right: 1px solid #ddd; | ||
} | ||
|
||
.profile-image img { | ||
width: 100%; | ||
border-radius: 50%; | ||
} | ||
|
||
.profile h2 { | ||
margin-top: 20px; | ||
font-size: 1.5em; | ||
} | ||
|
||
.profile p { | ||
color: gray; | ||
} | ||
|
||
.contact-info { | ||
list-style: none; | ||
padding: 0; | ||
} | ||
|
||
.contact-info li { | ||
margin: 10px 0; | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.contact-info li i { | ||
margin-right: 10px; | ||
} | ||
|
||
.contact-info li a { | ||
color: #007bff; | ||
text-decoration: none; | ||
} | ||
|
||
.contact-info li a:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
.publications { | ||
width: 70%; | ||
padding: 20px; | ||
} | ||
|
||
.publications h2 { | ||
font-size: 2em; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.publication-section { | ||
margin-bottom: 20px; | ||
} | ||
|
||
.publication-section h3 { | ||
font-size: 1.5em; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.publication-section ul { | ||
list-style: none; | ||
padding: 0; | ||
} | ||
|
||
.publication-section ul li { | ||
margin-bottom: 10px; | ||
} | ||
|
||
.publication-section ul li a { | ||
color: #007bff; | ||
text-decoration: none; | ||
} | ||
|
||
.publication-section ul li a:hover { | ||
text-decoration: underline; | ||
} |