-
Notifications
You must be signed in to change notification settings - Fork 57
/
profile.html
164 lines (137 loc) · 3.66 KB
/
profile.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
<html>
<head>
<title>
PROFILE - The MATLAB Performance Profiler
</title>
</head>
<body bgcolor="#EEEEEE" link="#CC0000" alink="#FF3300" vlink="#000055">
<h1 align = "center">
PROFILE <br> The MATLAB Performance Profiler
</h1>
<hr>
<p>
<b>PROFILE</b>
is a directory of MATLAB programs which
demonstrate the use of the PROFILE utility,
which can monitor the execution of
a calculation and provide a performance report.
</p>
<h3 align = "center">
Usage:
</h3>
<p>
<pre>
<b>profile on</b>
<i>my commands</i>
<b>profile viewer</b>
</pre>
</p>
<h3 align = "center">
Licensing:
</h3>
<p>
The computer code and data files described and made available on this web page
are distributed under
<a href = "../../txt/gnu_lgpl.txt">the GNU LGPL license.</a>
</p>
<h3 align = "center">
Languages:
</h3>
<p>
<b>PROFILE</b> is available in
<a href = "../../m_src/profile/profile.html">a MATLAB version</a>.
</p>
<h3 align = "center">
Related Data and Programs:
</h3>
<p>
<a href = "../../m_src/linpack_bench/linpack_bench.html">
LINPACK_BENCH</a>,
a MATLAB program which
measures the time taken by LINPACK to solve a particular linear system.
</p>
<p>
<a href = "../../m_src/md/md.html">
MD</a>,
a MATLAB program which
carries out a molecular dynamics simulation, and is intended as
a starting point for implementing a parallel version.
</p>
<h3 align = "center">
Examples and Tests:
</h3>
<p>
<b>LINPACK_BENCH</b> is the LINPACK Benchmark program.
<ul>
<li>
<a href = "linpack_bench.m">linpack_bench.m</a>,
the source code.
</li>
<li>
<a href = "linpack_bench_output.txt">
linpack_bench_output.txt</a>,
the output file.
</li>
<li>
<a href = "linpack_bench_profile.png">
linpack_bench_profile.png</a>,
the profile report, as displayed by the profile viewer.
</li>
</ul>
</p>
<p>
<b>MD</b> is a molecular dynamics program.
<ul>
<li>
<a href = "md.m">md.m</a>,
the source code.
</li>
<li>
<a href = "md_output.txt">
md_output.txt</a>,
the output file.
</li>
<li>
<a href = "md_profile.png">
md_profile.png</a>,
the profile report, as displayed by the profile viewer.
</li>
</ul>
</p>
<p>
<b>SAMMON_TEST</b> is a program to try to classify data into groups.
<ul>
<li>
<a href = "sammon_test.m">sammon_test.m</a>,
the source code.
</li>
<li>
<a href = "sammon_test_output.txt">
sammon_test_output.txt</a>,
the output file.
</li>
<li>
<a href = "sammon_test_profile1.png">
sammon_test_profile1.png</a>,
a snapshot of the beginning of the main profile report,
as displayed by the profile viewer.
</li>
<li>
<a href = "sammon_test_profile2.png">
sammon_test_profile2.png</a>,
a snapshot of the beginning of the profile report
for the SAMMON function.
</li>
</ul>
</p>
<p>
You can go up one level to <a href = "../m_src.html">
the MATLAB source codes</a>.
</p>
<hr>
<i>
Last revised on 19 September 2010.
</i>
<!-- John Burkardt -->
</body>
</html>