Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib64 /
python2.7 /
site-packages /
numpy /
linalg /
Delete
Unzip
Name
Size
Permission
Date
Action
tests
[ DIR ]
drwxr-xr-x
2021-09-16 10:54
__init__.py
2.13
KB
-rw-r--r--
2013-04-07 01:04
__init__.pyc
2.32
KB
-rw-r--r--
2018-04-10 19:40
__init__.pyo
2.32
KB
-rw-r--r--
2018-04-10 19:40
info.py
1.11
KB
-rw-r--r--
2013-04-07 01:04
info.pyc
1.27
KB
-rw-r--r--
2018-04-10 19:40
info.pyo
1.27
KB
-rw-r--r--
2018-04-10 19:40
lapack_lite.so
27.91
KB
-rwxr-xr-x
2018-04-10 19:40
linalg.py
61.44
KB
-rw-r--r--
2013-04-07 01:04
linalg.pyc
60.05
KB
-rw-r--r--
2018-04-10 19:40
linalg.pyo
60.05
KB
-rw-r--r--
2018-04-10 19:40
setup.py
1.31
KB
-rw-r--r--
2013-04-07 01:04
setup.pyc
1.47
KB
-rw-r--r--
2018-04-10 19:40
setup.pyo
1.47
KB
-rw-r--r--
2018-04-10 19:40
setupscons.py
704
B
-rw-r--r--
2013-04-07 01:04
setupscons.pyc
957
B
-rw-r--r--
2018-04-10 19:40
setupscons.pyo
957
B
-rw-r--r--
2018-04-10 19:40
Save
Rename
import sys def configuration(parent_package='',top_path=None): from numpy.distutils.misc_util import Configuration from numpy.distutils.system_info import get_info config = Configuration('linalg',parent_package,top_path) config.add_data_dir('tests') # Configure lapack_lite lapack_info = get_info('lapack_opt',0) # and {} def get_lapack_lite_sources(ext, build_dir): if not lapack_info: print("### Warning: Using unoptimized lapack ###") return ext.depends[:-1] else: if sys.platform=='win32': print("### Warning: python_xerbla.c is disabled ###") return ext.depends[:1] return ext.depends[:2] config.add_extension('lapack_lite', sources = [get_lapack_lite_sources], depends= ['lapack_litemodule.c', 'python_xerbla.c', 'zlapack_lite.c', 'dlapack_lite.c', 'blas_lite.c', 'dlamch.c', 'f2c_lite.c','f2c.h'], extra_info = lapack_info ) return config if __name__ == '__main__': from numpy.distutils.core import setup setup(configuration=configuration)