ktongue commited on
Commit
4a39604
·
verified ·
1 Parent(s): ab335dd

Upload hf_env/lib/python3.14/site-packages/numpy/_distributor_init.py with huggingface_hub

Browse files
hf_env/lib/python3.14/site-packages/numpy/_distributor_init.py ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """ Distributor init file
2
+
3
+ Distributors: you can add custom code here to support particular distributions
4
+ of numpy.
5
+
6
+ For example, this is a good place to put any BLAS/LAPACK initialization code.
7
+
8
+ The numpy standard source distribution will not put code in this file, so you
9
+ can safely replace this file with your own version.
10
+ """
11
+
12
+ try:
13
+ from . import _distributor_init_local # noqa: F401
14
+ except ImportError:
15
+ pass