Linux server2.hpierson.com 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
Apache
: 162.0.216.123 | : 216.73.216.54
28 Domain
?7.4.33
yvffpqmy
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 /
share /
doc /
python36-Cython-0.28.6 /
Demos /
[ HOME SHELL ]
Name
Size
Permission
Action
?;
benchmarks
[ DIR ]
drwxr-xr-x
?;
callback
[ DIR ]
drwxr-xr-x
?;
embed
[ DIR ]
drwxr-xr-x
?;
freeze
[ DIR ]
drwxr-xr-x
?;
libraries
[ DIR ]
drwxr-xr-x
Makefile
334
B
-rw-r--r--
Makefile.nodistutils
390
B
-rw-r--r--
README.rst
814
B
-rw-r--r--
integrate0.py
148
B
-rw-r--r--
integrate1.pyx
177
B
-rw-r--r--
integrate2.pyx
236
B
-rw-r--r--
integrate_timing.py
427
B
-rw-r--r--
numpy_demo.pyx
191
B
-rw-r--r--
overflow_perf.pyx
4.26
KB
-rw-r--r--
overflow_perf_run.py
1.94
KB
-rw-r--r--
primes.pyx
402
B
-rw-r--r--
pyprimes.py
240
B
-rw-r--r--
run_numeric_demo.py
114
B
-rw-r--r--
run_primes.py
179
B
-rw-r--r--
run_spam.py
184
B
-rw-r--r--
setup.py
660
B
-rw-r--r--
spam.pyx
406
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : integrate_timing.py
from __future__ import absolute_import, print_function import timeit import integrate0, integrate1, integrate2 number = 10 py_time = None for m in ('integrate0', 'integrate1', 'integrate2'): print(m) t = min(timeit.repeat("integrate_f(0.0, 10.0, 100000)", "from %s import integrate_f" % m, number=number)) if py_time is None: py_time = t print(" ", t / number, "s") print(" ", py_time / t)
Close