annotate scripts/testfun/speed.m @ 6494:76a1a953533d

[project @ 2007-04-05 16:09:03 by jwe]
author jwe
date Thu, 05 Apr 2007 16:09:03 +0000
parents 215b141470b4
children 8b0cfeb06365
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
1 ## Copyright (C) 2000-2006 Paul Kienzle
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
2 ##
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
3 ## This program is free software; you can redistribute it and/or modify
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
4 ## it under the terms of the GNU General Public License as published by
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
5 ## the Free Software Foundation; either version 2 of the License, or
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
6 ## (at your option) any later version.
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
7 ##
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
8 ## This program is distributed in the hope that it will be useful,
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
9 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
10 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
11 ## GNU General Public License for more details.
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
12 ##
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
13 ## You should have received a copy of the GNU General Public License
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
14 ## along with this program; if not, write to the Free Software
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
15 ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
16 ## 02110-1301 USA
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
17
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
18 ## -*- texinfo -*-
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
19 ## @deftypefn {Function File} {} speed (@var{f}, @var{init}, @var{max_n}, @var{f2}, @var{tol})
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
20 ## @deftypefnx {Function File} {[@var{order}, @var{n}, @var{T_f}, @var{T_f2}] =} speed (@dots{})
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
21 ##
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
22 ## Determine the execution time of an expression for various @var{n}.
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
23 ## The @var{n} are log-spaced from 1 to @var{max_n}. For each @var{n},
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
24 ## an initialization expression is computed to create whatever data
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
25 ## are needed for the test. If a second expression is given, the
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
26 ## execution times of the two expressions will be compared. Called
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
27 ## without output arguments the results are presented graphically.
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
28 ##
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
29 ## @table @code
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
30 ## @item @var{f}
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
31 ## The expression to evaluate.
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
32 ##
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
33 ## @item @var{max_n}
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
34 ## The maximum test length to run. Default value is 100. Alternatively,
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
35 ## use @code{[min_n,max_n]} or for complete control, @code{[n1,n2,@dots{},nk]}.
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
36 ##
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
37 ## @item @var{init}
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
38 ## Initialization expression for function argument values. Use @var{k}
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
39 ## for the test number and @var{n} for the size of the test. This should
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
40 ## compute values for all variables listed in args. Note that init will
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
41 ## be evaluated first for k=0, so things which are constant throughout
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
42 ## the test can be computed then. The default value is @code{@var{x} =
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
43 ## randn (@var{n}, 1);}.
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
44 ##
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
45 ## @item @var{f2}
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
46 ## An alternative expression to evaluate, so the speed of the two
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
47 ## can be compared. Default is @code{[]}.
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
48 ##
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
49 ## @item @var{tol}
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
50 ## If @var{tol} is @code{Inf}, then no comparison will be made between the
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
51 ## results of expression @var{f} and expression @var{f2}. Otherwise,
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
52 ## expression @var{f} should produce a value @var{v} and expression @var{f2}
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
53 ## should produce a value @var{v2}, and these shall be compared using
6429
6ff2d413cf58 [project @ 2007-03-21 20:13:03 by dbateman]
dbateman
parents: 6046
diff changeset
54 ## @code{assert(@var{v},@var{v2},@var{tol})}. If @var{tol} is positive,
6ff2d413cf58 [project @ 2007-03-21 20:13:03 by dbateman]
dbateman
parents: 6046
diff changeset
55 ## the tolerance is assumed to be absolutr. If @var{tol} is negative,
6ff2d413cf58 [project @ 2007-03-21 20:13:03 by dbateman]
dbateman
parents: 6046
diff changeset
56 ## the tolerance is assumed to be relative. The default is @code{eps}.
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
57 ##
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
58 ## @item @var{order}
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
59 ## The time complexity of the expression @code{O(a n^p)}. This
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
60 ## is a structure with fields @code{a} and @code{p}.
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
61 ##
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
62 ## @item @var{n}
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
63 ## The values @var{n} for which the expression was calculated and the
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
64 ## the execution time was greater than zero.
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
65 ##
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
66 ## @item @var{T_f}
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
67 ## The nonzero execution times recorded for the expression @var{f} in seconds.
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
68 ##
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
69 ## @item @var{T_f2}
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
70 ## The nonzero execution times recorded for the expression @var{f2} in seconds.
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
71 ## If it is needed, the mean time ratio is just @code{mean(T_f./T_f2)}.
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
72 ##
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
73 ## @end table
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
74 ##
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
75 ## The slope of the execution time graph shows the approximate
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
76 ## power of the asymptotic running time @code{O(n^p)}. This
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
77 ## power is plotted for the region over which it is approximated
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
78 ## (the latter half of the graph). The estimated power is not
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
79 ## very accurate, but should be sufficient to determine the
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
80 ## general order of your algorithm. It should indicate if for
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
81 ## example your implementation is unexpectedly @code{O(n^2)}
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
82 ## rather than @code{O(n)} because it extends a vector each
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
83 ## time through the loop rather than preallocating one which is
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
84 ## big enough. For example, in the current version of Octave,
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
85 ## the following is not the expected @code{O(n)}:
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
86 ##
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
87 ## @example
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
88 ## speed("for i=1:n,y@{i@}=x(i); end", "", [1000,10000])
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
89 ## @end example
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
90 ##
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
91 ## but it is if you preallocate the cell array @code{y}:
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
92 ##
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
93 ## @example
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
94 ## speed("for i=1:n,y@{i@}=x(i);end", ...
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
95 ## "x=rand(n,1);y=cell(size(x));", [1000,10000])
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
96 ## @end example
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
97 ##
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
98 ## An attempt is made to approximate the cost of the individual
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
99 ## operations, but it is wildly inaccurate. You can improve the
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
100 ## stability somewhat by doing more work for each @code{n}. For
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
101 ## example:
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
102 ##
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
103 ## @example
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
104 ## speed("airy(x)", "x=rand(n,10)", [10000,100000])
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
105 ## @end example
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
106 ##
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
107 ## When comparing a new and original expression, the line on the
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
108 ## speedup ratio graph should be larger than 1 if the new expression
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
109 ## is faster. Better algorithms have a shallow slope. Generally,
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
110 ## vectorizing an algorithm will not change the slope of the execution
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
111 ## time graph, but it will shift it relative to the original. For
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
112 ## example:
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
113 ##
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
114 ## @example
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
115 ## speed("v=sum(x)", "", [10000,100000], ...
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
116 ## "v=0;for i=1:length(x),v+=x(i);end")
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
117 ## @end example
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
118 ##
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
119 ## A more complex example, if you had an original version of @code{xcorr}
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
120 ## using for loops and another version using an FFT, you could compare the
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
121 ## run speed for various lags as follows, or for a fixed lag with varying
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
122 ## vector lengths as follows:
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
123 ##
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
124 ## @example
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
125 ## speed("v=xcorr(x,n)", "x=rand(128,1);", 100, ...
6429
6ff2d413cf58 [project @ 2007-03-21 20:13:03 by dbateman]
dbateman
parents: 6046
diff changeset
126 ## "v2=xcorr_orig(x,n)", -100*eps)
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
127 ## speed("v=xcorr(x,15)", "x=rand(20+n,1);", 100, ...
6429
6ff2d413cf58 [project @ 2007-03-21 20:13:03 by dbateman]
dbateman
parents: 6046
diff changeset
128 ## "v2=xcorr_orig(x,n)", -100*eps)
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
129 ## @end example
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
130 ##
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
131 ## Assuming one of the two versions is in @var{xcorr_orig}, this would
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
132 ## would compare their speed and their output values. Note that the
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
133 ## FFT version is not exact, so we specify an acceptable tolerance on
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
134 ## the comparison @code{100*eps}, and the errors should be computed
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
135 ## relatively, as @code{abs((@var{x} - @var{y})./@var{y})} rather than
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
136 ## absolutely as @code{abs(@var{x} - @var{y})}.
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
137 ##
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
138 ## Type @code{example('speed')} to see some real examples. Note for
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
139 ## obscure reasons, you can't run examples 1 and 2 directly using
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
140 ## @code{demo('speed')}. Instead use, @code{eval(example('speed',1))}
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
141 ## and @code{eval(example('speed',2))}.
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
142 ## @end deftypefn
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
143
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
144 ## TODO: consider two dimensional speedup surfaces for functions like kron.
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
145 function [__order, __test_n, __tnew, __torig] ...
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
146 = speed (__f1, __init, __max_n, __f2, __tol)
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
147
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
148 if (nargin < 1 || nargin > 6)
6046
34f96dd5441b [project @ 2006-10-10 16:10:25 by jwe]
jwe
parents: 5798
diff changeset
149 print_usage ();
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
150 endif
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
151
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
152 if (nargin < 2 || isempty (__init))
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
153 __init = "x = randn(n, 1);";
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
154 endif
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
155
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
156 if (nargin < 3 || isempty (__max_n))
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
157 __max_n = 100;
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
158 endif
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
159
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
160 if (nargin < 4)
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
161 __f2 = [];
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
162 endif
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
163
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
164 if (nargin < 5 || isempty (__tol))
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
165 __tol = eps;
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
166 endif
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
167
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
168 __numtests = 15;
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
169
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
170 ## Let user specify range of n
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
171 if (isscalar (__max_n))
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
172 __min_n = 1;
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
173 assert (__max_n > __min_n);
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
174 __test_n = logspace (0, log10 (__max_n), __numtests);
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
175 elseif (length (__max_n) == 2)
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
176 __min_n = __max_n(1);
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
177 __max_n = __max_n(2);
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
178 assert (__min_n >= 1);
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
179 __test_n = logspace (log10 (__min_n), log10 (__max_n), __numtests);
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
180 else
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
181 __test_n = __max_n;
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
182 endif
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
183 __test_n = unique (round (__test_n)); # Force n to be an integer
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
184 assert (__test_n >= 1);
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
185
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
186 __torig = __tnew = zeros (size (__test_n));
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
187
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
188 disp (strcat ("testing ", __f1, "\ninit: ", __init));
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
189
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
190 ## make sure the functions are freshly loaded by evaluating them at
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
191 ## test_n(1); first have to initialize the args though.
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
192 n = 1;
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
193 k = 0;
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
194 eval (strcat (__init, ";"));
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
195 if (! isempty (__f2))
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
196 eval (strcat (__f2, ";"));
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
197 endif
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
198 eval (strcat (__f1, ";"));
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
199
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
200 ## run the tests
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
201 for k = 1:length (__test_n)
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
202 n = __test_n(k);
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
203 eval (strcat (__init, ";"));
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
204
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
205 printf ("n%i=%i ",k, n);
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
206 fflush (stdout);
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
207 eval (strcat ("__t=time();", __f1, "; __v1=ans; __t = time()-__t;"));
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
208 if (__t < 0.25)
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
209 eval (strcat ("__t2=time();", __f1, "; __t2 = time()-__t2;"));
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
210 eval (strcat ("__t3=time();", __f1, "; __t3 = time()-__t3;"));
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
211 __t = min ([__t, __t2, __t3]);
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
212 endif
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
213 __tnew(k) = __t;
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
214
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
215 if (! isempty (__f2))
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
216 eval (strcat ("__t=time();", __f2, "; __v2=ans; __t = time()-__t;"));
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
217 if (__t < 0.25)
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
218 eval (strcat ("__t2=time();", __f2, "; __t2 = time()-__t2;"));
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
219 eval (strcat ("__t3=time();", __f2, "; __t3 = time()-__t3;"));
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
220 endif
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
221 __torig(k) = __t;
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
222 if (! isinf(__tol))
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
223 assert (__v1, __v2, __tol);
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
224 endif
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
225 endif
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
226 endfor
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
227
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
228 ## Drop times of zero
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
229 if (! isempty (__f2))
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
230 zidx = (__tnew < 100*eps | __torig < 100*eps);
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
231 __test_n(zidx) = [];
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
232 __tnew(zidx) = [];
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
233 __torig(zidx) = [];
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
234 else
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
235 zidx = (__tnew < 100*eps);
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
236 __test_n(zidx) = [];
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
237 __tnew(zidx) = [];
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
238 endif
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
239
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
240 ## Approximate time complexity and return it if requested
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
241 tailidx = ceil(length(__test_n)/2):length(__test_n);
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
242 p = polyfit (log (__test_n(tailidx)), log (__tnew(tailidx)), 1);
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
243 if (nargout > 0)
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
244 __order.p = p(1);
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
245 __order.a = exp (p(2));
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
246 endif
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
247
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
248 ## Plot the data if no output is requested.
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
249 doplot = (nargout == 0);
6430
215b141470b4 [project @ 2007-03-21 20:58:08 by dbateman]
dbateman
parents: 6429
diff changeset
250
215b141470b4 [project @ 2007-03-21 20:58:08 by dbateman]
dbateman
parents: 6429
diff changeset
251 if (doplot)
215b141470b4 [project @ 2007-03-21 20:58:08 by dbateman]
dbateman
parents: 6429
diff changeset
252 figure;
215b141470b4 [project @ 2007-03-21 20:58:08 by dbateman]
dbateman
parents: 6429
diff changeset
253 endif
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
254
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
255 if (doplot && ! isempty (__f2))
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
256 subplot (1, 2, 1);
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
257 semilogx (__test_n, __torig./__tnew,
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
258 strcat ("-*r;", strrep (__f1, ";", "."), "/",
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
259 strrep (__f2, ";", "."), ";"),
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
260 __test_n, __tnew./__torig,
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
261 strcat ("-*g;", strrep (__f2, ";", "."), "/",
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
262 strrep (__f1, ";", "."), ";"));
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
263 xlabel ("test length");
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
264 title (__f1);
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
265 ylabel ("speedup ratio");
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
266
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
267 subplot (1, 2, 2);
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
268 loglog (__test_n, __tnew*1000,
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
269 strcat ("*-g;", strrep (__f1, ";", "."), ";" ),
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
270 __test_n, __torig*1000,
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
271 strcat ("*-r;", strrep (__f2,";","."), ";"));
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
272
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
273 xlabel ("test length");
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
274 ylabel ("best execution time (ms)");
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
275 title (strcat ("init: ", __init));
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
276
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
277 ratio = mean (__torig ./ __tnew);
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
278 printf ("\n\nMean runtime ratio = %.3g for '%s' vs '%s'\n",
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
279 ratio, __f2, __f1);
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
280
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
281 elseif (doplot)
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
282
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
283 loglog (__test_n, __tnew*1000, "*-g;execution time;");
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
284 xlabel ("test length");
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
285 ylabel ("best execution time (ms)");
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
286 title (strcat (__f1, " init: ", __init));
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
287
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
288 endif
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
289
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
290 if (doplot)
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
291
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
292 ## Plot time complexity approximation (using milliseconds).
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
293 order = sprintf ("O(n^%g)", round (10*p(1))/10);
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
294 v = polyval (p, log (__test_n(tailidx)));
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
295
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
296 loglog (__test_n(tailidx), exp(v)*1000, sprintf ("b;%s;", order));
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
297
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
298 ## Get base time to 1 digit of accuracy
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
299 dt = exp (p(2));
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
300 dt = floor (dt/10^floor(log10(dt)))*10^floor(log10(dt));
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
301 if (log10 (dt) >= -0.5)
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
302 time = sprintf ("%g s", dt);
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
303 elseif (log10 (dt) >= -3.5)
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
304 time = sprintf ("%g ms", dt*1e3);
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
305 elseif (log10 (dt) >= -6.5)
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
306 time = sprintf ("%g us", dt*1e6);
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
307 else
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
308 time = sprintf ("%g ns", dt*1e9);
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
309 endif
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
310
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
311 ## Display nicely formatted complexity.
6494
76a1a953533d [project @ 2007-04-05 16:09:03 by jwe]
jwe
parents: 6430
diff changeset
312 printf ("\nFor %s:\n", __f1);
5798
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
313 printf (" asymptotic power: %s\n", order);
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
314 printf (" approximate time per operation: %s\n", time);
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
315
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
316 endif
7e7ed81f5566 [project @ 2006-05-09 17:24:33 by jwe]
jwe
parents: 5589
diff changeset
317
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
318 endfunction
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
319
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
320 %!demo if 1
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
321 %! function x = build_orig(n)
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
322 %! ## extend the target vector on the fly
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
323 %! for i=0:n-1, x([1:10]+i*10) = 1:10; endfor
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
324 %! endfunction
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
325 %! function x = build(n)
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
326 %! ## preallocate the target vector
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
327 %! x = zeros(1, n*10);
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
328 %! try
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
329 %! if (prefer_column_vectors), x = x.'; endif
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
330 %! catch
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
331 %! end
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
332 %! for i=0:n-1, x([1:10]+i*10) = 1:10; endfor
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
333 %! endfunction
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
334 %!
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
335 %! disp("-----------------------");
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
336 %! type build_orig;
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
337 %! disp("-----------------------");
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
338 %! type build;
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
339 %! disp("-----------------------");
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
340 %!
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
341 %! disp("Preallocated vector test.\nThis takes a little while...");
6429
6ff2d413cf58 [project @ 2007-03-21 20:13:03 by dbateman]
dbateman
parents: 6046
diff changeset
342 %! speed('build(n)', '', 1000, 'build_orig(n)');
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
343 %! clear build build_orig
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
344 %! disp("Note how much faster it is to pre-allocate a vector.");
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
345 %! disp("Notice the peak speedup ratio.");
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
346 %! endif
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
347
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
348 %!demo if 1
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
349 %! function x = build_orig(n)
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
350 %! for i=0:n-1, x([1:10]+i*10) = 1:10; endfor
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
351 %! endfunction
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
352 %! function x = build(n)
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
353 %! idx = [1:10]';
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
354 %! x = idx(:,ones(1,n));
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
355 %! x = reshape(x, 1, n*10);
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
356 %! try
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
357 %! if (prefer_column_vectors), x = x.'; endif
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
358 %! catch
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
359 %! end
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
360 %! endfunction
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
361 %!
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
362 %! disp("-----------------------");
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
363 %! type build_orig;
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
364 %! disp("-----------------------");
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
365 %! type build;
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
366 %! disp("-----------------------");
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
367 %!
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
368 %! disp("Vectorized test. This takes a little while...");
6429
6ff2d413cf58 [project @ 2007-03-21 20:13:03 by dbateman]
dbateman
parents: 6046
diff changeset
369 %! speed('build(n)', '', 1000, 'build_orig(n)');
5589
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
370 %! clear build build_orig
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
371 %! disp("-----------------------");
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
372 %! disp("This time, the for loop is done away with entirely.");
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
373 %! disp("Notice how much bigger the speedup is then in example 1.");
f812a0680d05 [project @ 2006-01-06 00:14:42 by jwe]
jwe
parents:
diff changeset
374 %! endif