-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathreferences.html
More file actions
124 lines (99 loc) · 4.11 KB
/
Copy pathreferences.html
File metadata and controls
124 lines (99 loc) · 4.11 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
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
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-38064517-1']);
_gaq.push(['_setDomainName', 'github.com']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!DOCTYPE html>
<html>
<body>
<img align = "left" src="swami3.jpg" height = "125" width = "125" alt="Swami"> <br>
<img align = "right" src="SSSIHL.jpg" height = "110" width = "110" alt="SSSIHL">
<h2 style="text-align:center;color:#333399;"> Programming for Performance </h2>
<h3 style="text-align:center;"> (CS 1207) Mon - Fri 1:00 - 3:50 p.m.</h3>
<hr />
<div style="width:20%; float: left">
<div style="background-color:#E0E0E0;">
<h3 style="background-color:#FFA500;borderStyle:dashed;text-align:center;"> Links </h3>
<a href="index.html"> Announcements </a> <br />
<a href="lectures.html">Lectures</a><br />
<a href="assignments.html"> Assignments </a> <br />
References <br />
<a href="https://piazza.com/class#spring2013/cs1207"> Piazza </a> <br />
</div>
<div style="background-color:#E0E0E0;">
<h3 style="background-color:#FFA500;borderStyle:dashed;text-align:center;"> Instructor </h3>
Sudheer Kumar <br />
Email: <a href="mailto:cdsudheerkumar@sssihl.edu.in "> cdsudheerkumar@sssihl.edu.in </a> <br />
</div>
<div style="background-color:#E0E0E0;">
<h3 style="background-color:#FFA500;borderStyle:dashed;text-align:center;">Textbook</h3>
Introduction to High Performance Computing for Scientists and Engineers by Georg Hager and Gerhard Wellein. <em> CRC Press </em> <br />
</div>
<div style="background-color:#E0E0E0;">
<h3 style="background-color:#FFA500;borderStyle:dashed;text-align:center;">Institute</h3>
University website: <a href="http://sssihl.edu.in">SSSIHL</a> <br />
Bhagawan: <a href="http://radiosai.org">Radio Sai</a> <br />
</div>
</div>
<div style="width:75%; float: right">
<div style="background-color:#E0E0E0;">
<h3 style="background-color:#FFA500;borderStyle:dashed;text-align:center;"> Lectures </h3>
<table border="1">
<tr>
<th>Topic</th>
<th>Link</th>
</tr>
<tr>
<td> How to Write Fast Numerical Code: A Small Introduction</td>
<td><a href="fastcode.pdf">fast code</a></td>
</tr>
<tr>
<td>The Landscape of Parallel Computing Research: A View from Berkeley</td>
<td> <a href="BerkeleyView.pdf"> View </a> </td>
</tr>
<tr>
<td>Is Search Really Necessary to Generate High-Performance BLAS?</td>
<td> <a href="ieee05.pdf"> Search BLAS</a> </td>
</tr>
<tr>
<td>X-Ray: A Tool for Automatic Measurement of Hardware Parameters</td>
<td> <a href="X-ray.pdf"> X-ray </a> </td>
</tr>
<tr>
<td>Expert C Programming: Deep C Secrets</td>
<td> <a href="Expert_C_Programming.pdf"> ExpertC </a> </td>
</tr>
<tr>
<td>What Every Programmer Should Know About Memory</td>
<td> <a href="cpumemory.pdf"> Memory </a> </td>
</tr>
<tr>
<td>What Every Computer Scientist Should Know About Floating-Point Arithmetic </td>
<td> <a href="http://docs.oracle.com/cd/E19957-01/806-3568/ncg_goldberg.html#674"> Floating Point</a></td>
</tr>
<tr>
<td> Git Guides </td>
<td> <a href="http://gitref.org"> Git Reference</a>
<a href="http://book.git-scm.com/">The Git Community Book</a></td>
</tr>
<tr>
<td> Quick-Reference Guide to Optimization with Intel® Compilers</td>
<td> <a href="http://software.intel.com/sites/products/collateral/hpc/compilers/compiler_qrg12.pdf"> Intel Compiler</a></td>
</tr>
<tr>
<td> Nehalem architecture</td>
<td><a href="nehalem.pdf">Nehalem</a></td>
</tr>
<tr><td> Intel x86-64 Instruction Manual</td>
<td> <a href="http://www.intel.com/content/dam/doc/manual/64-ia-32-architectures-software-developer-vol-2a-2b-instruction-set-a-z-manual.pdf">x86-64</a> </td>
</tr>
<tr><td> Intel® 64 and IA-32 Architectures Optimization Reference Manual </td>
<td> <a href="./64-ia-32-architectures-optimization-manual.pdf">Intel Optimization Manual</a> </td>
</tr>