You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 306 B

1234567891011121314151617
  1. """
  2. Trampoline to hide the LAPACK details (scipy.lapack.linalg or scipy_openblas32 or...)
  3. from benchmarking.
  4. """
  5. __version__ = "0.1"
  6. from . import _flapack
  7. PREFIX = ''
  8. def get_func(name, variant):
  9. """get_func('gesv', 'c') -> cgesv etc."""
  10. return getattr(_flapack, PREFIX + variant + name)