_distributor_init.py 421 B

123456789101112131415
  1. """ Distributor init file
  2. Distributors: you can add custom code here to support particular distributions
  3. of numpy.
  4. For example, this is a good place to put any BLAS/LAPACK initialization code.
  5. The numpy standard source distribution will not put code in this file, so you
  6. can safely replace this file with your own version.
  7. """
  8. try:
  9. from . import _distributor_init_local # noqa: F401
  10. except ImportError:
  11. pass