Python C extension to compute the permanent.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

setup.py 560B

il y a 9 ans
123456789101112131415161718
  1. #!/usr/bin/env python
  2. from distutils.core import setup, Extension
  3. setup(name = "loqcmath",
  4. version = "1.0",
  5. description = "Fast maths for LOQC",
  6. author = "Pete Shadbolt",
  7. author_email = "pete.shadbolt@gmail.com",
  8. maintainer = "pete.shadbolt@gmail.com",
  9. url = "https://www.peteshadbolt.co.uk",
  10. ext_modules = [
  11. Extension(
  12. 'perm_c', ['src/perm_c'],
  13. extra_compile_args=["-Ofast", "-march=native"]),
  14. ],
  15. )