forked from LoongsonLab/loongsonlab.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.en.html
141 lines (129 loc) · 4.85 KB
/
index.en.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
---
layout: default
permalink: /
lang: en
construct: true
---
<div class="jumbotron">
<div class="w-100 mw8 ph4-l ph3 pv5-l pv3 center">
<h1 class="f1 measure mt3">Loongson Laboratory</h1>
<p class="f4 measure lh-copy">
We are a research group at the Microprocessor Research Center at
<a href="http://english.ict.cas.cn/">
Institute of Computing Technology, Chinese Academy of Sciences.
</a>
We are also a division of the forward-looking research department of
<a href="https://www.loongson.cn/EN/">
Loongson Technology Co., Ltd.
</a>
We are engaged in forward-looking research in the areas of processor performance analysis,
design optimization, interconnect and security mechanisms, and new processors.
We are committed to the exploration of next-generation processor technology.
</p>
<h3>
<a class="cta" href="{{ '/about' | relative_url }}"
>Learn more about our group</a
>
</h3>
</div>
</div>
<div class="w-100 mw8 ph4-l ph3 center">
<section class="pv3">
<h2 class="f2">Research Areas</h2>
<p class="f4 measure-wide lh-copy">
Our group conducts research in Binary Translation, Novel Architecture,
Novel Operating Systems, and Performance Analysis.
Click on the links below for more information.
</p>
<div class="flex flex-row-ns flex-wrap pt3">
{% for research in site.research %}
{% unless research.index_hide %}
<a href="{{ research.url | relative_url }}"
class="mr2-ns mv2 w-20-l w-40-m flex-auto shadow-4 pa3 br2">
<h3 class="f4 mt0">{{ research.title }}</h3>
<p class="measure lh-copy black">
{{ research.description }}
</p>
</a>
{% endunless %}
{% endfor %}
</div>
</section>
<div class="flex flex-row-ns flex-column pv3">
<section class="pr3 w-two-thirds-l w-50-m">
<h2 class="f3">News</h2>
<ul class="list pl0">
{% assign sorted_posts = site.posts %} {% for post in sorted_posts
limit:5 %}
<li class="pb2">
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
<time datetime="{{ post.date }}" class="db f6 black-80"
>{{ post.date | date: "%b %Y" }}</time
>
</li>
{% endfor %}
</ul>
<a class="cta" href="{{'/news' | relative_url }}">Show all</a>
</section>
<section class="pl3-ns w-third-l w-50-m">
<h2 class="f3">Courses</h2>
<ul class="list pl0">
{% assign years = site.courses | group_by: 'year' %}{% assign
sorted_years = years | reverse %}{% for year in sorted_years %} {%
assign sorted_courses = year.items | sort: 'semester' %} {% for course
in sorted_courses %}
<li class="pb2">
<a href="{{ course.url | relative_url }}">{{ course.name }}</a>
<span class="db f6 black-80"
>{{ course.semester }} {{ course.year }}</span
>
</li>
{% endfor %} {% endfor %}
</ul>
</section>
</div>
<div class="mv3 measure-wide">
<h2 class="f3 mt0">Participate</h2>
<p class="lh-copy">
Interested in our work and want to participate in some of our projects.
Or have some insights of your own that you would like to share with us.
All are welcome to get involved!
</p>
<a class="link dim dib cta" href="{{'/studies' | relative_url }}"> Learn More </a>
</div>
<section class="pv3">
<h2 class="f3">Recent Publications</h2>
<a class="cta" href="{{'/publications' | relative_url }}">Show all</a>
<div class="mv3">
{% assign recent_pubs = site.publications | where: "lang", site.active_lang | reverse %} {% for pub in
recent_pubs limit:5 %}
<div class="mt4 mt3-ns flex flex-row-ns flex-column">
{% if pub.thumb %}
{% assign thumb = pub.thumb %}
{% elsif pub.poster %}
{% assign thumb = pub.poster %}
{% else %}
{% assign thumb = '/assets/logo-light.png' %}
{% endif %}
<div
class="h3 mr3-ns mb2 mb0-ns flex-shrink-0 preview-image ba b--black-05 db"
style="background-image: url('{{ thumb | relative_url }}')"
></div>
<div class="measure-wide">
<div class="mb1">
<a href="{{ pub.url | relative_url }}" class="b link black hover-cas-red"
>{{ pub.title }}</a
>
<span class="fw2">
{% for author in pub.authors %}{% include person name=author %}{%
unless forloop.last %}, {% endunless %}{% endfor %}</span
>, <span class="nowrap">{{ pub.venue }} {{ pub.year }}</span>
</div>
<a href="{{ pub.url | relative_url }}" class="cta">Show details</a>
</div>
</div>
{% endfor %}
</div>
<a class="cta" href="{{'/publications' | relative_url }}">Show all</a>
</section>
</div>