Search
Search Results
Search finished, found 18 page(s) matching the search query.
- NumPy license
...NumPy user guide NumPy license...
- How to contribute to the NumPy documentation
...p fix issues. Images and real-life data make text more engaging and powerful, but be sure what you use is appropriately licensed and available. Here again, even a rough idea for artwork can be polished by others. For now, the only data form...
- NumPy 1.14.0 Release Notes
...flang compiler on Windows The PGI flang compiler is a Fortran front end for LLVM released by NVIDIA under the Apache 2 license. It can be invoked by python setup.py config --compiler=clang --fcompiler=flang install There is little experi...
- NumPy 1.17.3 Release Notes
...ndint when range is 2**32 #14519: MAINT: remove the entropy c-extension module #14563: DOC: remove note about Pocketfft license file (non-existing here). #14578: BUG: random: Create a legacy implementation of random.binomial. #14687: BUG: p...
- NumPy 1.19.2 Release Notes
...andling from fft calculation #17243: BUG: core: fix ilp64 blas dot/vdot/… for strides > int32 max #17244: DOC: Use SPDX license expressions with correct license #17245: DOC: Fix the link to the quick-start in the old API functions #17272: B...
- NumPy 1.20.1 Release Notes
...ng all relevant DType types/classes #18351: BUG: Fix missing signed_char dependency. Closes #18335. #18352: DOC: Change license date 2020 -> 2021 #18353: CI: CircleCI seems to occasionally time out, increase the limit #18354: BUG: Fix f2py...
- NumPy 1.22.1 Release Notes
...ted functions in array_api #20814: DOC: Refer to NumPy, not pandas, in main page #20815: DOC: Update Copyright to 2022 [License] #20819: BUG: Return correctly shaped inverse indices in array_api set…...
- NumPy 1.26.2 Release Notes
...qemu action and remove travis testing. #25112: MAINT: Update .spin/cmds.py from main. #25113: DOC: Visually divide main license and bundled licenses in wheels #25115: MAINT: Add missing noexcept to shuffle helpers #25116: DOC: Fix license i...
- NumPy 2.1.0 Release Notes
...PRESCOTT NEHALEM SANDYBRIDGE HASWELL SKYLAKEX. (gh-27147) OpenBLAS on windows is linked without quadmath, simplifying licensing (gh-27147) Due to a regression in OpenBLAS on windows, the performance improvements when using multiple threa...
- NumPy 2.2.0 Release Notes
...ese kernels: PRESCOTT NEHALEM SANDYBRIDGE HASWELL SKYLAKEX. OpenBLAS on windows is linked without quadmath, simplifying licensing Due to a regression in OpenBLAS on windows, the performance improvements when using multiple threads for OpenB...
- NumPy governance
...ecision making by the community Steering council Institutional partners and funding Document history Acknowledgements License...
- NumPy license
...NumPy user guide NumPy license...
- NumPy project governance and decision-making
...d the NumPy Sphinx extensions. The Software developed by The Project is released under the BSD (or similar) open source license, developed openly and hosted on public GitHub repositories under the numpy GitHub organization. The Project is d...
- Reading and writing files
...ion; to read a .wav file in real life, use Python’s built-in module wave. (Adapted from Pauli Virtanen, Advanced NumPy, licensed under CC BY 4.0.) Write or read large arrays Arrays too large to fit in memory can be treated like ordinary i...
- Using F2PY
...present NumPy Developers. Permission to use, modify, and distribute this software is given under the terms of the NumPy License. NO WARRANTY IS EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. numpy.f2py.get_include()[source] Return the direc...
- F2PY and Windows Intel Fortran
...F2PY and Windows Intel Fortran As of NumPy 1.23, only the classic Intel compilers (ifort) are supported. Note The licensing restrictions for beta software have been relaxed during the transition to the LLVM backed ifx/icc family of co...
- Using via
meson
...d scalar examples from Three ways to wrap - getting started section: project('f2py_examples', 'c', version : '0.1', license: 'BSD-3', meson_version: '>=0.64.0', default_options : ['warning_level=2'], ) add_languages('fortran') py_...
- Using via
scikit-build
...setup setup( name="fibby", version="0.0.1", description="a minimal example package (fortran version)", license="MIT", packages=['fibby'], python_requires=">=3.7", ) Along with a commensurate pyproject.toml [build-...