-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (72 loc) · 3.09 KB
/
index.html
File metadata and controls
90 lines (72 loc) · 3.09 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Commit @ CSAIL — Home</title>
<link rel="stylesheet" href="assets/css/style.css"/>
</head>
<body>
<div class="pagewidth">
<div class="outer">
<div class="main">
<!-- HEADER / NAV -->
<div class="menuitem nav">
<a class="menuitemlink" href="index.html">Home</a>
<a class="menuitemlink" href="projects.html">Projects</a>
<a class="menuitemlink" href="people.html">People</a>
<a class="menuitemlink" href="publications.html">Publications</a>
</div>
<div style="clear:both"></div>
<div id="image_window">
<img src="assets/img/commitlogo.png" alt="The COMMIT Group">
</div>
</div>
<!-- PAGE CONTENT -->
<div class="secbody" id="home-secbody">
<!-- About Us -->
<h2 class="grouphead">About Us</h2>
<p id="about-text" style="margin:10px 0 18px;">
Commit (<b>Com</b>pilers at <b>MIT</b>) is a research group led by Professor Saman Amarasinghe in the CSAIL research lab at MIT. The primary motivation of the Commit group is to discover novel approaches to improve the performance of modern computer systems without unduly increasing the complexity faced by application developers, compiler writers, or computer architects.
</p>
<!-- Current Members -->
<h2 class="grouphead">Current Members</h2>
<div id="people-errors" class="switchversion" style="color:#b00;"></div>
<h3>Faculty</h3>
<div id="faculty"></div>
<h3>Researchers</h3>
<div id="researchers"></div>
<h3>Graduate Students</h3>
<div id="grad"></div>
<h3>MEng</h3>
<div id="meng"></div>
<h3>UROP</h3>
<div id="urop"></div>
<h3>Visiting Students</h3>
<div id="visiting"></div>
<p class="readmore" style="margin-top:8px;">
<a href="people.html">View full People page (includes Alumni)</a>
</p>
<!-- Featured Publications (blank placeholder for now) -->
<h2 class="grouphead">Featured Publications</h2>
<div id="pubs-featured" style="min-height:12px; margin:10px 0 18px;">
<!-- intentionally blank for now -->
</div>
<!-- Featured Projects (from XML; only featured=1) -->
<h2 class="grouphead">Featured Projects</h2>
<ul id="projects-featured" class="project-list grid2" style="margin-top:10px;"></ul>
<div id="projects-errors" class="switchversion" style="color:#b00;"></div>
</div>
<!-- FOOTER -->
<div class="credits">© Commit Group — Massachusetts Institute of Technology — CSAIL</div>
</div>
</div>
</div>
<!-- Scripts -->
<script src="assets/js/common.js"></script>
<script src="assets/js/pubs.js"></script>
<script src="assets/js/pubs_index.js"></script>
<script src="assets/js/projects_featured.js"></script>
<script src="assets/js/people_current.js"></script>
</body>
</html>