comparison src/libsamplerate-0.1.8/tests/multichan_throughput_test.c @ 0:c7265573341e

Import initial set of sources
author Chris Cannam
date Mon, 18 Mar 2013 14:12:14 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:c7265573341e
1 /*
2 ** Copyright (C) 2008-2011 Erik de Castro Lopo <erikd@mega-nerd.com>
3 **
4 ** This program is free software; you can redistribute it and/or modify
5 ** it under the terms of the GNU General Public License as published by
6 ** the Free Software Foundation; either version 2 of the License, or
7 ** (at your option) any later version.
8 **
9 ** This program is distributed in the hope that it will be useful,
10 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 ** GNU General Public License for more details.
13 **
14 ** You should have received a copy of the GNU General Public License
15 ** along with this program; if not, write to the Free Software
16 ** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
17 */
18
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <time.h>
23 #include <unistd.h>
24
25 #include <samplerate.h>
26
27 #include "config.h"
28
29 #include "util.h"
30 #include "float_cast.h"
31
32 #define BUFFER_LEN (1<<17)
33
34 static float input [BUFFER_LEN] ;
35 static float output [BUFFER_LEN] ;
36
37 static long
38 throughput_test (int converter, int channels, long best_throughput)
39 { SRC_DATA src_data ;
40 clock_t start_time, clock_time ;
41 double duration ;
42 long total_frames = 0, throughput ;
43 int error ;
44
45 printf (" %-30s %2d ", src_get_name (converter), channels) ;
46 fflush (stdout) ;
47
48 src_data.data_in = input ;
49 src_data.input_frames = ARRAY_LEN (input) / channels ;
50
51 src_data.data_out = output ;
52 src_data.output_frames = ARRAY_LEN (output) / channels ;
53
54 src_data.src_ratio = 0.99 ;
55
56 sleep (2) ;
57
58 start_time = clock () ;
59
60 do
61 {
62 if ((error = src_simple (&src_data, converter, channels)) != 0)
63 { puts (src_strerror (error)) ;
64 exit (1) ;
65 } ;
66
67 total_frames += src_data.output_frames_gen ;
68
69 clock_time = clock () - start_time ;
70 duration = (1.0 * clock_time) / CLOCKS_PER_SEC ;
71 }
72 while (duration < 5.0) ;
73
74 if (src_data.input_frames_used != src_data.input_frames)
75 { printf ("\n\nLine %d : input frames used %ld should be %ld\n", __LINE__, src_data.input_frames_used, src_data.input_frames) ;
76 exit (1) ;
77 } ;
78
79 if (fabs (src_data.src_ratio * src_data.input_frames_used - src_data.output_frames_gen) > 2)
80 { printf ("\n\nLine %d : input / output length mismatch.\n\n", __LINE__) ;
81 printf (" input len : %d\n", ARRAY_LEN (input) / channels) ;
82 printf (" output len : %ld (should be %g +/- 2)\n\n", src_data.output_frames_gen,
83 floor (0.5 + src_data.src_ratio * src_data.input_frames_used)) ;
84 exit (1) ;
85 } ;
86
87 throughput = lrint (floor (total_frames / duration)) ;
88
89 if (best_throughput == 0)
90 { best_throughput = MAX (throughput, best_throughput) ;
91 printf ("%5.2f %10ld\n", duration, throughput) ;
92 }
93 else
94 { best_throughput = MAX (throughput, best_throughput) ;
95 printf ("%5.2f %10ld %10ld\n", duration, throughput, best_throughput) ;
96 }
97
98 return best_throughput ;
99 } /* throughput_test */
100
101 static void
102 single_run (void)
103 { const int max_channels = 10 ;
104 int k ;
105
106 printf ("\n CPU name : %s\n", get_cpu_name ()) ;
107
108 puts (
109 "\n"
110 " Converter Channels Duration Throughput\n"
111 " ---------------------------------------------------------------------"
112 ) ;
113
114 for (k = 1 ; k <= max_channels / 2 ; k++)
115 throughput_test (SRC_SINC_FASTEST, k, 0) ;
116
117 puts ("") ;
118 for (k = 1 ; k <= max_channels / 2 ; k++)
119 throughput_test (SRC_SINC_MEDIUM_QUALITY, k, 0) ;
120
121 puts ("") ;
122 for (k = 1 ; k <= max_channels ; k++)
123 throughput_test (SRC_SINC_BEST_QUALITY, k, 0) ;
124
125 puts ("") ;
126 return ;
127 } /* single_run */
128
129 static void
130 multi_run (int run_count)
131 { int k, ch ;
132
133 printf ("\n CPU name : %s\n", get_cpu_name ()) ;
134
135 puts (
136 "\n"
137 " Converter Channels Duration Throughput Best Throughput\n"
138 " ----------------------------------------------------------------------------------------"
139 ) ;
140
141 for (ch = 1 ; ch <= 5 ; ch++)
142 { long sinc_fastest = 0, sinc_medium = 0, sinc_best = 0 ;
143
144 for (k = 0 ; k < run_count ; k++)
145 { sinc_fastest = throughput_test (SRC_SINC_FASTEST, ch, sinc_fastest) ;
146 sinc_medium = throughput_test (SRC_SINC_MEDIUM_QUALITY, ch, sinc_medium) ;
147 sinc_best = throughput_test (SRC_SINC_BEST_QUALITY, ch, sinc_best) ;
148
149 puts ("") ;
150
151 /* Let the CPU cool down. We might be running on a laptop. */
152 sleep (10) ;
153 } ;
154
155 puts (
156 "\n"
157 " Converter Best Throughput\n"
158 " ------------------------------------------------"
159 ) ;
160
161 printf (" %-30s %10ld\n", src_get_name (SRC_SINC_FASTEST), sinc_fastest) ;
162 printf (" %-30s %10ld\n", src_get_name (SRC_SINC_MEDIUM_QUALITY), sinc_medium) ;
163 printf (" %-30s %10ld\n", src_get_name (SRC_SINC_BEST_QUALITY), sinc_best) ;
164 } ;
165
166 puts ("") ;
167 } /* multi_run */
168
169 static void
170 usage_exit (const char * argv0)
171 { const char * cptr ;
172
173 if ((cptr = strrchr (argv0, '/')) != NULL)
174 argv0 = cptr ;
175
176 printf (
177 "Usage :\n"
178 " %s - Single run of the throughput test.\n"
179 " %s --best-of N - Do N runs of test a print bext result.\n"
180 "\n",
181 argv0, argv0) ;
182
183 exit (0) ;
184 } /* usage_exit */
185
186 int
187 main (int argc, char ** argv)
188 { double freq ;
189
190 memset (input, 0, sizeof (input)) ;
191 freq = 0.01 ;
192 gen_windowed_sines (1, &freq, 1.0, input, BUFFER_LEN) ;
193
194 if (argc == 1)
195 single_run () ;
196 else if (argc == 3 && strcmp (argv [1], "--best-of") == 0)
197 { int run_count = atoi (argv [2]) ;
198
199 if (run_count < 1 || run_count > 20)
200 { printf ("Please be sensible. Run count should be in range (1, 10].\n") ;
201 exit (1) ;
202 } ;
203
204 multi_run (run_count) ;
205 }
206 else
207 usage_exit (argv [0]) ;
208
209 puts (
210 " Duration is in seconds.\n"
211 " Throughput is in frames/sec (more is better).\n"
212 ) ;
213
214 return 0 ;
215 } /* main */
216