Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
numpy /
f2py /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
__init__.py
5.63
KB
-rw-r--r--
__init__.pyi
292
B
-rw-r--r--
__main__.py
85
B
-rw-r--r--
__version__.py
34
B
-rw-r--r--
auxfuncs.py
21.33
KB
-rw-r--r--
capi_maps.py
30.67
KB
-rw-r--r--
cb_rules.py
23.68
KB
-rw-r--r--
cfuncs.py
45.85
KB
-rw-r--r--
common_rules.py
4.81
KB
-rw-r--r--
crackfortran.py
128.89
KB
-rw-r--r--
diagnose.py
5.11
KB
-rw-r--r--
f2py2e.py
23.77
KB
-rw-r--r--
f2py_testing.py
1.42
KB
-rw-r--r--
f90mod_rules.py
9.58
KB
-rw-r--r--
func2subr.py
9.14
KB
-rw-r--r--
rules.py
57.39
KB
-rw-r--r--
setup.py
2.4
KB
-rw-r--r--
use_rules.py
3.5
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : f2py_testing.py
import sys import re from numpy.testing import jiffies, memusage def cmdline(): m = re.compile(r'\A\d+\Z') args = [] repeat = 1 for a in sys.argv[1:]: if m.match(a): repeat = eval(a) else: args.append(a) f2py_opts = ' '.join(args) return repeat, f2py_opts def run(runtest, test_functions, repeat=1): l = [(t, repr(t.__doc__.split('\n')[1].strip())) for t in test_functions] start_memusage = memusage() diff_memusage = None start_jiffies = jiffies() i = 0 while i < repeat: i += 1 for t, fname in l: runtest(t) if start_memusage is None: continue if diff_memusage is None: diff_memusage = memusage() - start_memusage else: diff_memusage2 = memusage() - start_memusage if diff_memusage2 != diff_memusage: print('memory usage change at step %i:' % i, diff_memusage2 - diff_memusage, fname) diff_memusage = diff_memusage2 current_memusage = memusage() print('run', repeat * len(test_functions), 'tests', 'in %.2f seconds' % ((jiffies() - start_jiffies) / 100.0)) if start_memusage: print('initial virtual memory size:', start_memusage, 'bytes') print('current virtual memory size:', current_memusage, 'bytes')
Close