-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathPA3B.html
More file actions
53 lines (44 loc) · 2.42 KB
/
Copy pathPA3B.html
File metadata and controls
53 lines (44 loc) · 2.42 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="pandoc" />
<title>PA3B: Optimize Matrix Matrix Multiplication </title>
<style type="text/css">
/*<![CDATA[*/
table.sourceCode, tr.sourceCode, td.lineNumbers, td.sourceCode, table.sourceCode pre
{ margin: 0; padding: 0; border: 0; vertical-align: baseline; border: none; }
td.lineNumbers { border-right: 1px solid #AAAAAA; text-align: right; color: #AAAAAA; padding-right: 5px; padding-left: 5px; }
td.sourceCode { padding-left: 5px; }
code.sourceCode span.kw { color: #007020; font-weight: bold; }
code.sourceCode span.dt { color: #902000; }
code.sourceCode span.dv { color: #40a070; }
code.sourceCode span.bn { color: #40a070; }
code.sourceCode span.fl { color: #40a070; }
code.sourceCode span.ch { color: #4070a0; }
code.sourceCode span.st { color: #4070a0; }
code.sourceCode span.co { color: #60a0b0; font-style: italic; }
code.sourceCode span.ot { color: #007020; }
code.sourceCode span.al { color: red; font-weight: bold; }
code.sourceCode span.fu { color: #06287e; }
code.sourceCode span.re { }
code.sourceCode span.er { color: red; font-weight: bold; }
/*]]>*/
</style>
<link rel="stylesheet" href="screen.css" type="text/css"/>
</head>
<body>
<div style="width: 500px; margin: 3em;">
<b> <u>Matrix Multiplication (Sequence of Optimizations)</u> </b> <br/> <br/>
Try out the list of optimziations provided in the following link: <br/>
<a href="http://z.cs.utexas.edu/wiki/rvdg.wiki/HowToOptimizeGemm">http://z.cs.utexas.edu/wiki/rvdg.wiki/HowToOptimizeGemm</a> <br/>
Setup: <a href="http://z.cs.utexas.edu/wiki/rvdg.wiki/HowToOptimizeGemm/SetUp"> http://z.cs.utexas.edu/wiki/rvdg.wiki/HowToOptimizeGemm/SetUp</a> <br/>
You need not follow the 15 steps in sequences, you can skip the optimizations that you have already done.<br/>
The code generates a plot comapring two outputs. It uses Octave to generate the plots.<br/>
There is no Octave on Stampede. So, first develop and run the code in Stampede. Then, using sftp copy the entire code once to Lonestar.<br/>
In Lonestar, use the commands to load Octave: module load gnuplot <br/>
module load octave
Type Octave to enter octave. Then use the command "PlotAll" to generate the plots.<br/>
</div>
</body>
</html>