-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
180 lines (159 loc) · 6.85 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Engineer Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #333;
color: #fff;
padding: 1rem 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
nav {
display: flex;
justify-content: center;
background-color: #444;
padding: 0.5rem 0;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 1rem;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
.container {
width: 90%;
max-width: 1200px;
margin: 2rem auto;
padding: 1rem;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.section-title {
font-size: 2rem;
margin-bottom: 1rem;
color: #333;
border-bottom: 2px solid #ddd;
padding-bottom: 0.5rem;
}
.about, .projects, .contact {
margin-bottom: 2rem;
}
.projects img {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto 1rem;
}
.contact form {
display: flex;
flex-direction: column;
}
.contact form label {
margin-bottom: 0.5rem;
font-weight: bold;
}
.contact form input, .contact form textarea {
padding: 0.5rem;
margin-bottom: 1rem;
border: 1px solid #ccc;
border-radius: 5px;
}
.contact form button {
padding: 0.5rem 1rem;
background-color: #333;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
.contact form button:hover {
background-color: #555;
}
footer {
text-align: center;
padding: 1rem 0;
background-color: #333;
color: #fff;
}
</style>
</head>
<body>
<header>
<h1>Daniel Chang</h1>
<p>Electrical Engineer | Software Developer | Innovator</p>
</header>
<nav>
<a href="#about">About</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</nav>
<div class="container">
<section id="about" class="about">
<h2 class="section-title">What am I trying to achieve?</h2>
<p>"Building Hardware for those who are really serious about Software"</p>
</section>
<section id="resume" class="resume">
<h2 class="section-title">Resume</h2>
<a href="pdfs/Daniel Min Chang - University of California, Berkeley.pdf" target="_blank"> Resume Link</a>.
</section>
<section id="projects" class="projects">
<h2 class="section-title">Projects</h2>
<article>
<h3>RISC-V Processor Design</h3>
<p>● Developed a three-stage RISC-V CPU with instruction decoding, ALU, and synchronous memory integration</p>
<p>● Used Verilog, System Verilog, and Synopsys tools for comprehensive testing of the pipelined design that can handle Data and Control Hazards accompanied by adding stalling and forwarding logic appropriately</p>
<p>● Designed a 4kiB direct-mapped, write-back cache in a Finite State Machine structure. It borrows the Skywater 130nm SRAM library thus the design can be fabricated. The final design was validated during the place-and-route via Innovus GUI, achieving a 2.04x performance improvement in cycle count benchmarks.</p>
<p>● The Critical Path was 42.685 ns and the Slack was 2.315 ns with the Clock Period configured as 45 ns with an operating frequency of 22.2 MHz. The Floor plan area was approximately 1093419 um^2 with a total power consumption of 6mW.</p>
<a href="pdfs/RISC-V Processor Design Portfolio _ Daniel Chang.pdf" target="_blank">For the Full Project Report</a>
</article>
<article>
<h3>Hammer Place-and-Route: Top-Down Hierarchical Flow</h3>
<p>● Implemented the Top-Down Hierarchical Flow of Hammer(Highly Agile Masks Made Effortlessly from RTL), a framework for building physical chip design generators for digital VLSI flows. Configuring from the Top level to the partition level, it automatically runs corresponding Innovus commands for the given set of dependencies of the design</p>
<p>● Translated the hierarchical design structure into Innovus TCL commands, and then automated the process of running the design in a Top-Down flow in Python</p>
<p>● Now finalizing the implementation of early rail analysis, a feature that performs power analysis with rough routing at the early stage of the design using inputs such as power mesh density</p>
<a href="pdfs/Hammer_Top_Down_Hierarchical_Flow-1.pdf" target="_blank">For the Full Project Report</a>
</article>
<!-- Add more projects as needed -->
</section>
<section id="contact" class="contact">
<div class="contact-section">
<h2>Contact Information</h2>
<p><strong>Email:</strong> <a href="mailto:[email protected]">[email protected]</a></p>
<p><strong>Mobile:</strong> <a href="tel:+1 9493378262">+1 9493378262</a></p>
<p><strong>Location:</strong> Berkeley, CA</p>
<p><strong>LinkedIn:</strong> <a href="https://www.linkedin.com/in/daniel-chang-553140161/" target="_blank">LinkedIn Profile</a></p>
</div>
<!-- <h2 class="section-title">Contact</h2>
<form action="mailto:[email protected]" method="POST" enctype="text/plain">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="5" required></textarea>
<button type="submit">Send Message</button>
</form> -->
</section>
</div>
<footer>
<p>© 2024 Your Name. All rights reserved.</p>
</footer>
</body>
</html>