~ubuntu-branches/ubuntu/trusty/fftw/trusty

« back to all changes in this revision

Viewing changes to threads/srfftw_threads.h

  • Committer: Bazaar Package Importer
  • Author(s): James A. Treacy
  • Date: 2002-03-05 00:28:49 UTC
  • Revision ID: james.westby@ubuntu.com-20020305002849-jhp9ty1qh08iladk
Tags: 2.1.3-12
Don't install static libs using install -s. Closes: bug#136955

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 1997-1999 Massachusetts Institute of Technology
 
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
 
 
20
#ifndef RFFTW_THREADS_H
 
21
#define RFFTW_THREADS_H
 
22
 
 
23
#include <srfftw.h>
 
24
#include <sfftw_threads.h>
 
25
 
 
26
#ifdef __cplusplus
 
27
extern "C" {
 
28
#endif /* __cplusplus */
 
29
 
 
30
/******************** User Interface *********************/
 
31
 
 
32
extern void rfftw_threads(int nthreads,
 
33
                   fftw_plan plan, int howmany, fftw_real *in, int istride,
 
34
                   int idist, fftw_real *out, int ostride, int odist);
 
35
extern void rfftw_threads_one(int nthread, fftw_plan plan,
 
36
                              fftw_real *in, fftw_real *out);
 
37
 
 
38
extern void rfftwnd_threads_real_to_complex(int nthreads, fftwnd_plan p,
 
39
                                            int howmany,
 
40
                                            fftw_real *in,
 
41
                                            int istride, int idist,
 
42
                                            fftw_complex *out,
 
43
                                            int ostride, int odist);
 
44
extern void rfftwnd_threads_complex_to_real(int nthreads, fftwnd_plan p,
 
45
                                            int howmany,
 
46
                                            fftw_complex *in,
 
47
                                            int istride, int idist,
 
48
                                            fftw_real *out,
 
49
                                            int ostride, int odist);
 
50
extern void rfftwnd_threads_one_real_to_complex(int nthreads, fftwnd_plan p,
 
51
                                                fftw_real *in,
 
52
                                                fftw_complex *out);
 
53
extern void rfftwnd_threads_one_complex_to_real(int nthreads, fftwnd_plan p,
 
54
                                                fftw_complex *in,
 
55
                                                fftw_real *out);
 
56
 
 
57
#ifdef __cplusplus
 
58
} /* extern "C" */
 
59
#endif /* __cplusplus */
 
60
 
 
61
#endif /* RFFTW_THREADS_H */