diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-12-25 15:29:24 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-25 15:29:24 -0700 |
commit | bae3cfa01dc160f3e1731c21bfd9158cbcd83c32 (patch) | |
tree | de2ec788fa66c168f56128c2268ed62bac8e72ec /numpy/fft/fftpack.h | |
parent | 3abb5f8c3cd0947d4cf64c3dbcd9fda5a5c22caa (diff) | |
parent | 0fe2a58c4434d7ee4e08f732e207c631bab6bc75 (diff) | |
download | numpy-bae3cfa01dc160f3e1731c21bfd9158cbcd83c32.tar.gz |
Merge pull request #11888 from mreineck/add_pocketfft
WIP: Add pocketfft sources to numpy for testing, benchmarks, etc.
Diffstat (limited to 'numpy/fft/fftpack.h')
-rw-r--r-- | numpy/fft/fftpack.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/numpy/fft/fftpack.h b/numpy/fft/fftpack.h deleted file mode 100644 index 5e8f4631c..000000000 --- a/numpy/fft/fftpack.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * This file is part of tela the Tensor Language. - * Copyright (c) 1994-1995 Pekka Janhunen - */ - -#ifdef __cplusplus -extern "C" { -#endif - -#define DOUBLE - -#ifdef DOUBLE -#define Treal double -#else -#define Treal float -#endif - -extern NPY_VISIBILITY_HIDDEN void npy_cfftf(int N, Treal data[], const Treal wrk[]); -extern NPY_VISIBILITY_HIDDEN void npy_cfftb(int N, Treal data[], const Treal wrk[]); -extern NPY_VISIBILITY_HIDDEN void npy_cffti(int N, Treal wrk[]); - -extern NPY_VISIBILITY_HIDDEN void npy_rfftf(int N, Treal data[], const Treal wrk[]); -extern NPY_VISIBILITY_HIDDEN void npy_rfftb(int N, Treal data[], const Treal wrk[]); -extern NPY_VISIBILITY_HIDDEN void npy_rffti(int N, Treal wrk[]); - -#ifdef __cplusplus -} -#endif |