Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/wapython
Path: blob/main/python/bench/src/all.py
1067 views
1
import misc
2
import brython
3
import numbers
4
import pystone
5
import p1list
6
import nbody
7
import uuid_
8
import fib
9
import lambda_
10
import call
11
#import mandel
12
import mypyc_micro
13
import parse_int
14
15
from time import time
16
from bench import all
17
18
19
def run_all_benchmarks():
20
t = time()
21
all()
22
print("=" * 20)
23
print("Grand total time: ", int((time() - t) * 1000), "ms")
24
25
26
if __name__ == '__main__':
27
run_all_benchmarks()
28
29