-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLearningHistory.html
166 lines (134 loc) · 5.62 KB
/
LearningHistory.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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recordings</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
}
.content-list {
list-style-type: none;
padding: 0;
}
.content-item {
margin-bottom: 30px;
border: 1px solid #ccc; /* 加边框 */
padding: 15px; /* 内间距 */
border-radius: 5px; /* 圆角 */
position: relative; /* 使标识绝对定位 */
}
.content-item::before {
content: attr(data-type); /* 使用 data-type 属性作为标识内容 */
position: absolute;
top: -10px; /* 调整标识位置 */
left: -10px; /* 调整标识位置 */
background-color: #003366; /* 背景色 */
color: #fff; /* 字体颜色 */
padding: 5px 10px; /* 内间距 */
border-radius: 3px; /* 圆角 */
font-size: 14px; /* 字体大小 */
}
.content-title {
font-size: 24px;
margin-bottom: 10px;
}
.content-description {
color: #666;
margin-bottom: 15px;
}
.content-link {
display: inline-block;
background-color: #f1f1f1;
padding: 8px 16px;
text-decoration: none; /* 移除下划线 */
color: #003366; /* 设置链接颜色为深蓝色 */
border-radius: 4px;
transition: background-color 0.3s ease;
}
.content-link:hover {
background-color: #ddd;
color: #000; /* 可选:鼠标悬停时的颜色变化 */
}
.thoughts {
margin-top: 10px;
list-style-type: decimal;
}
.image-row {
display: flex;
flex-wrap: wrap;
gap: 10px; /* 图片之间的间距 */
}
.image-row img {
max-width: calc(25% - 10px); /* 图片占据父容器的四分之一并减去间距 */
flex: 1 1 calc(25% - 10px); /* 保证每张图片的宽度自适应 */
height: auto; /* 保持图片比例 */
}
</style>
</head>
<nav>
<a href="index.html">Home</a>
<a href="MusicRecommanded.html">Music Recommanded</a>
<a href="NotionHere.html">Notion Here</a>
<a href="LearningHistory.html">Learning History</a>
<a href="MovementRecording.html">Movement Recording</a>
</nav>
<body>
<h1>Here is my recordings.</h1>
<ul class="content-list">
<!-- 五月 -->
<li class="content-item" data-type="May">
<ul class="thoughts">
阅读了《智能计算系统》。<br>
</ul>
</li>
<!-- 六月 -->
<li class="content-item" data-type="June">
<ul class="thoughts">
06/02 I have learned the basic the Mathematical Logic and the beginning of theory of graph. Learned basic compiler and some AI compiler.<br>
06/03 I have installed Ubuntu in Win, LLVM, and MLIR.<br>
06/05 Reviewed syntax of C++.<br>
06/09 Installed the TVM. Start learning TVM.<br>
06/11 学习AI编译器后端优化<br>
06/12 复习了编译原理,还有一些其他的一些技术。TVM应该开始看了(了解到一个和周老师很相关的项目“在硬件设计流程中,MLIR(Multi-Level Intermediate Representation)和 CIRCT(Circuit IR Compilers and Tools)项目的结合提供了一种灵活和高效的方法来处理硬件描述和优化。”)<br>
06/14 今天跑Polygeist跑不通,感觉是系统的问题。重新用Ubuntu搞了一下MLIR,太久了,(不是Win的问题,自己没搞好路径,well)。明天计划把Tianqi Chen的机器学习编译看完,然后把Toy Tutorial学一下<br>
06/17 继续跑Polygeist,还得看SMR论文,陈天奇的MLC看了前两章,感觉全是TVM的东西,不知道还需不需要学,回头重新了解LLVM。<br>
06/20 开始看了一本非常棒的数学书《现代数学的概念》<br>
06/21 上午把Polygeist跑通了,中午去把那本书又看了一些<br>
06/22 忙里偷闲把那本书看完了。<br>
06/23 - 06/25 出去玩<br>
<div class="image-row">
<img src="pic/6_23/微信图片_20240626132303.jpg" alt="Image 1">
<img src="pic/6_23/微信图片_20240626132315.jpg" alt="Image 2">
<img src="pic/6_23/微信图片_20240626132320.jpg" alt="Image 3">
<img src="pic/6_23/微信图片_20240626133052.jpg" alt="Image 4">
</div>
06/26 看论文<br>
</ul>
</li>
<!-- 七月 -->
<li class="content-item" data-type="July">
<ul class="thoughts">
07/01 看《生命密码》 有一个想法就是 特征是从图片到特征 而基因是从基因到表现出来 两者有一种互逆运算的感觉</br>
</ul>
</li>
<!-- 其他月份可以依次类推 -->
<!-- 八月 -->
<li class="content-item" data-type="October">
<ul class="thoughts">
08/06 shenduxuexi 框架第一节<br>
08/15 下午参加了gogc大会,确实没什么用,回来看了一篇论文<br>
</ul>
</li>
<!-- 九月 -->
<li class="content-item" data-type="March 2025">
<ul class="thoughts">
03/10 Moe 结构<br>
03/11 重构部分notions<br>
</ul>
</li>
</ul>
</body>
</html>