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/setup.py | |
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/setup.py')
-rw-r--r-- | numpy/fft/setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/fft/setup.py b/numpy/fft/setup.py index cd99a82d7..6c3548b65 100644 --- a/numpy/fft/setup.py +++ b/numpy/fft/setup.py @@ -7,9 +7,9 @@ def configuration(parent_package='',top_path=None): config.add_data_dir('tests') - # Configure fftpack_lite - config.add_extension('fftpack_lite', - sources=['fftpack_litemodule.c', 'fftpack.c'] + # Configure pocketfft_internal + config.add_extension('pocketfft_internal', + sources=['pocketfft.c'] ) return config |