-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathbenchmarks.py
More file actions
71 lines (39 loc) · 964 Bytes
/
benchmarks.py
File metadata and controls
71 lines (39 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import math
def makeArray(n, func):
return [func(i) for i in range(int(n))]
def pow_bench(n):
n_int = int(n)
res = 0
for i in range(n_int):
res = 3 ** 2
return res
def floor_bench(n):
n_int = int(n)
res = 0
for i in range(n_int):
res = math.floor(10.99999)
return res
def ceil_bench(n):
n_int = int(n)
res = 0
for i in range(n_int):
res = math.ceil(10.99999)
return res
def sqrt_bench(n):
n_int = int(n)
res = 0
for i in range(n_int):
res = math.sqrt(16)
return res
def filter_bench(n):
n_int = int(n)
return [x for x in range(1, n_int + 1) if x % 2 == 0]
def map_bench(n):
n_int = int(n)
return [x * x for x in range(1, n_int + 1)]
def filter_bench(n):
n_int = int(n)
return [x for x in range(1, n_int + 1) if x % 2 == 0]
def map_bench(n):
n_int = int(n)
return [x * x for x in range(1, n_int + 1)]