Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python2-pyFFTW-0.12.0-bp153.1.19 RPM for s390x

From OpenSuSE Leap 15.3 for s390x

Name: python2-pyFFTW Distribution: SUSE Linux Enterprise 15 SP3
Version: 0.12.0 Vendor: openSUSE
Release: bp153.1.19 Build date: Sat Mar 6 16:38:04 2021
Group: Development/Languages/Python Build host: s390zp23
Size: 622831 Source RPM: python-pyFFTW-0.12.0-bp153.1.19.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/pyFFTW/pyFFTW
Summary: A pythonic wrapper around FFTW, the FFT library
pyFFTW is a pythonic wrapper around the FFTW libary.
An interface for all the possible transforms that FFTW can perform is provided.

Both the complex DFT and the real DFT are supported, as well as arbitrary
axes of abitrary shaped and strided arrays, which makes it almost
feature equivalent to standard and real FFT functions of ``numpy.fft``
(indeed, it supports the ``clongdouble`` dtype which ``numpy.fft`` does not).

Operating FFTW in multithreaded mode is supported.

A comprehensive unittest suite can be found with the source on the github
repository.

Provides

Requires

License

GPL-2.0-or-later AND BSD-3-Clause

Changelog

* Sun Feb 02 2020 Atri Bhattacharya <badshah400@gmail.com>
  - Update to version 0.12.0:
    + scipy.fft interface This interface operates like the existing
      scipy.fftpack interface, but matches the API of the newer
      scipy.fft module introduced in SciPy 1.4.
    + test suite was updated to be compatible with more recent dask
      (gh#pyFFTW/pyFFTW#278).
    + Cython variable _N was renamed to avoid a name conflict with a
      preprocessor token on some platforms (gh#pyFFTW/pyFFTW#259).
    + Cython code has been updated to explicitly use
      `language_level=3str` for compatibility with a future Cython
      3.0 release.
  - Drop 265.patch: Incorporated upstream.
  - Update URL and Source URL to point to new github repository.
* Mon Jan 27 2020 Martin Hauke <mardnh@gmx.de>
  - Add patch:
    * 265.patch (Fix Factory builds)
      https://github.com/pyFFTW/pyFFTW/pull/265
* Sat Dec 22 2018 Todd R <toddrme2178@gmail.com>
  - Update to version 0.11.1
    + New features
    * Dask interface
    * Fast transform planning utility
    * Expanded support for norm keyword argument in the numpy interfaces
    * Support for norm keyword argument in FFTW builders
    * Dynamic library detection at build and run time
    * OpenMP threading support
    * Custom Configuration of Planners and Interfaces
    + Bugs Fixed
    * A platform-dependent bug that results in potentially overwriting a previously
      computed output upon repeated calls to the numpy interfaces was fixed (#199).
    * Fix to potential platform-dependent integer overflow in empty_aligned (#192).
    * rfftfreq is now present in the numpy fft interfaces for numpy >= 1.8 (#207)
    + Other changes
    * float16 inputs are now transformed using single rather than double precision.
    * The default planning for the numpy and scipy interfaces has changed from
      FFTW_MEASURE to FFTW_ESTIMATE.  This results in faster planning.  In cases
      where the same transform is to be repeated many times, it is likely
      advantageous to manually specify FFTW_MEASURE instead (or use the FFTW builders
      to pre-plan the FFT).
    * FutureWarnings related to NumPy multiindexing in NumPy 1.15 are avoided by
      using more modern indexing conventions.
    * version number handling is now automatically handled by versioneer
    * All documentation is now built and hosted at Read the Docs (
      http://pyfftw.readthedocs.io).
* Sun Oct 08 2017 jengelh@inai.de
  - Replace future aims in description.
* Wed Aug 23 2017 toddrme2178@gmail.com
  - Implement single-spec version
  - Update to version 0.10.4
    + Fixed bugs:
    * Numpy interface can fail with non-writeable arrays.
    * undefined symbol: simd\_alignment with gcc 5.3.0
    * FTBFS: TypeError: can't pickle Cython.Compiler.FlowControl.NameAssignment objects
    + Closed issues:
    * pyfftw fails with ImportError/undefined symbol fftwl\_plan\_with\_nthreads
    * pyfftw does not appear to be using available wisdom files
    * Accuracy of non-power 2 data
    * Cannot find fftw3l when installing from pip
    * Incorrect links to docs
    * PyFFTW returning all zero array after transform...
    * Move to separate pyFFTW project page
    * Release GIL during planning?
    * Merging/sharing wisdom
    * scipy interface patching.
    * very slow test suite
    * setup: some targets should not require numpy to be installed
    * 2x margin on the planning timelimit test is inadequate in windows on Complex64
* Mon Feb 01 2016 toddrme2178@gmail.com
  - update to version 0.10.1:
    * it seems that pypi has an annoying feature that minor tweaks can't
      be pushed without a new release.
  - changes from version 0.10.0:
    * Closed issues:
      + Conda downloads are failing
      + Python 3.4 and WinPython
      + Installing pyfftw on Anaconda3 on Windows 7
      + is python 3.5 supported?
      + deadlock of cache handler at interpreter shutdown
      + pyFFTW breaks when forked
      + build with mingw
      + Striding in n\_byte\_align not on a uniform standard
      + No exception on wrong arguments of function call of
      pyfftw.FFTW\(...\)
      + pyfftw vs numpy.fft: faster and slower
      + simple transposes?
      + `Datatype not supported` with scipy
      + Update tutorial with new byte align functions
      + OS X Installation errors:
      + Wrong results for pyfftw's ifft?
      + Installing on OS X Mavericks
      + Install error. Ld cannot find -lfftw3f
      + new source release with updated licensing
      + Crash during initialization of FFTW plan for r2c and c2r with
      Intel compiler
      + Move FFTW class definition to pyfftw.pxd
      + Provide transform metadata such as axes and direction
      + Provide shape and dtype properties
      + problem with very large arrays: OverflowError: value too large
      to convert to int
      + add support for in-place multidimensional r2c transform
      + Add numpy interface for hfft
      + add cython as a build dependency
      + Potential memory leak in caching
      + Allow GIL to be released with threads=1
      + Building for 64bit windows
      + Test failure using numpy 1.6.2
      + Remove the requirement for users to specify alignment
      + pyfftw.interfaces can only handle numpy arrays
    * Merged pull requests:
      + Release GIL during both single- and multi-thread execution
      + Support FFTW\_WISDOM\_ONLY
      + Release GIL around FFTW planning
      + Updated the tutorial to reflect changes with new aligned array
      + Add description for installing on OS X
      + close issue \#8 (More numpy like aligned array creation)
      + Discrete sine transform imports
* Sat Apr 19 2014 mardnh@gmx.de
  - cleanup package
* Tue Apr 15 2014 mardnh@gmx.de
  - initial package

Files

/usr/lib64/python2.7/site-packages/pyFFTW-0.12.0-py2.7.egg-info
/usr/lib64/python2.7/site-packages/pyFFTW-0.12.0-py2.7.egg-info/PKG-INFO
/usr/lib64/python2.7/site-packages/pyFFTW-0.12.0-py2.7.egg-info/SOURCES.txt
/usr/lib64/python2.7/site-packages/pyFFTW-0.12.0-py2.7.egg-info/dependency_links.txt
/usr/lib64/python2.7/site-packages/pyFFTW-0.12.0-py2.7.egg-info/requires.txt
/usr/lib64/python2.7/site-packages/pyFFTW-0.12.0-py2.7.egg-info/top_level.txt
/usr/lib64/python2.7/site-packages/pyfftw
/usr/lib64/python2.7/site-packages/pyfftw/__init__.py
/usr/lib64/python2.7/site-packages/pyfftw/__init__.pyc
/usr/lib64/python2.7/site-packages/pyfftw/__init__.pyo
/usr/lib64/python2.7/site-packages/pyfftw/_version.py
/usr/lib64/python2.7/site-packages/pyfftw/_version.pyc
/usr/lib64/python2.7/site-packages/pyfftw/_version.pyo
/usr/lib64/python2.7/site-packages/pyfftw/builders
/usr/lib64/python2.7/site-packages/pyfftw/builders/__init__.py
/usr/lib64/python2.7/site-packages/pyfftw/builders/__init__.pyc
/usr/lib64/python2.7/site-packages/pyfftw/builders/__init__.pyo
/usr/lib64/python2.7/site-packages/pyfftw/builders/_utils.py
/usr/lib64/python2.7/site-packages/pyfftw/builders/_utils.pyc
/usr/lib64/python2.7/site-packages/pyfftw/builders/_utils.pyo
/usr/lib64/python2.7/site-packages/pyfftw/builders/builders.py
/usr/lib64/python2.7/site-packages/pyfftw/builders/builders.pyc
/usr/lib64/python2.7/site-packages/pyfftw/builders/builders.pyo
/usr/lib64/python2.7/site-packages/pyfftw/config.py
/usr/lib64/python2.7/site-packages/pyfftw/config.pyc
/usr/lib64/python2.7/site-packages/pyfftw/config.pyo
/usr/lib64/python2.7/site-packages/pyfftw/interfaces
/usr/lib64/python2.7/site-packages/pyfftw/interfaces/__init__.py
/usr/lib64/python2.7/site-packages/pyfftw/interfaces/__init__.pyc
/usr/lib64/python2.7/site-packages/pyfftw/interfaces/__init__.pyo
/usr/lib64/python2.7/site-packages/pyfftw/interfaces/_utils.py
/usr/lib64/python2.7/site-packages/pyfftw/interfaces/_utils.pyc
/usr/lib64/python2.7/site-packages/pyfftw/interfaces/_utils.pyo
/usr/lib64/python2.7/site-packages/pyfftw/interfaces/cache.py
/usr/lib64/python2.7/site-packages/pyfftw/interfaces/cache.pyc
/usr/lib64/python2.7/site-packages/pyfftw/interfaces/cache.pyo
/usr/lib64/python2.7/site-packages/pyfftw/interfaces/dask_fft.py
/usr/lib64/python2.7/site-packages/pyfftw/interfaces/dask_fft.pyc
/usr/lib64/python2.7/site-packages/pyfftw/interfaces/dask_fft.pyo
/usr/lib64/python2.7/site-packages/pyfftw/interfaces/numpy_fft.py
/usr/lib64/python2.7/site-packages/pyfftw/interfaces/numpy_fft.pyc
/usr/lib64/python2.7/site-packages/pyfftw/interfaces/numpy_fft.pyo
/usr/lib64/python2.7/site-packages/pyfftw/interfaces/scipy_fft.py
/usr/lib64/python2.7/site-packages/pyfftw/interfaces/scipy_fft.pyc
/usr/lib64/python2.7/site-packages/pyfftw/interfaces/scipy_fft.pyo
/usr/lib64/python2.7/site-packages/pyfftw/interfaces/scipy_fftpack.py
/usr/lib64/python2.7/site-packages/pyfftw/interfaces/scipy_fftpack.pyc
/usr/lib64/python2.7/site-packages/pyfftw/interfaces/scipy_fftpack.pyo
/usr/lib64/python2.7/site-packages/pyfftw/pyfftw.so
/usr/share/doc/packages/python2-pyFFTW
/usr/share/doc/packages/python2-pyFFTW/README.md
/usr/share/licenses/python2-pyFFTW
/usr/share/licenses/python2-pyFFTW/LICENSE.txt


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Mar 9 15:01:09 2024