~noskcaj/ubuntu/trusty/hardinfo/ftbfs

« back to all changes in this revision

Viewing changes to arch/common/fft.h

  • Committer: Bazaar Package Importer
  • Author(s): Agney Lopes Roth Ferraz
  • Date: 2009-03-28 22:55:02 UTC
  • mfrom: (3.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090328225502-p4bnvi8q6hr95cij
Tags: 0.5c-1
New upstream version. 
(Closes: #517591, #511237, #457703, #519256, #449250, #457820, #497758) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *    HardInfo - Displays System Information
 
3
 *    Copyright (C) 2003-2007 Leandro A. F. Pereira <leandro@hardinfo.org>
 
4
 *
 
5
 *    This program is free software; you can redistribute it and/or modify
 
6
 *    it under the terms of the GNU General Public License as published by
 
7
 *    the Free Software Foundation, version 2.
 
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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 
17
 */
 
18
 
 
19
#include <fftbench.h>
 
20
 
 
21
static gpointer fft_for(unsigned int start, unsigned int end, void *data, GTimer *timer)
 
22
{
 
23
    unsigned int i;
 
24
    
 
25
    for (i = start; i <= end; i++) { 
 
26
        fft_bench_start();
 
27
    }
 
28
    
 
29
    return NULL;
 
30
}
 
31
 
 
32
static void
 
33
benchmark_fft(void)
 
34
{
 
35
    gdouble elapsed = 0;
 
36
    
 
37
    shell_view_set_enabled(FALSE);
 
38
    shell_status_update("Running FFT benchmark...");
 
39
        
 
40
    fft_bench_init();
 
41
    elapsed = benchmark_parallel_for(0, 4, fft_for, NULL);
 
42
    fft_bench_finish();
 
43
    
 
44
    bench_results[BENCHMARK_FFT] = elapsed;
 
45
}
 
46
 
 
47