-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeasure.py
35 lines (27 loc) · 1.03 KB
/
measure.py
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
import math
import numpy as np
from firedrake import *
from pyop2 import MPI
from pyop2.profiling import Timer
parameters["pyop2_options"]["profiling"] = True
def measure(name, thunk):
if MPI.comm.rank == 0:
print "name:", name
mesh = thunk()
mesh.init()
timer = Timer("Mesh: cell_closure (quadrilateral)")
runtime = timer._timings[-1]
sendbuf = np.array([runtime, runtime * runtime], dtype=float)
recvbuf = MPI.comm.reduce(sendbuf)
if MPI.comm.rank == 0:
M1, M2 = recvbuf
m = M1 / MPI.comm.size
s = math.sqrt((M2 - M1*M1 / MPI.comm.size) / (MPI.comm.size - 1))
print "cell_closure seconds %s: %g +- %g" % (name, m, s)
if __name__ == "__main__":
measure("s_square", lambda: UnitSquareMesh(512, 512, quadrilateral=True))
measure("s_sphere", lambda: UnitCubedSphereMesh(9))
measure("u_square", lambda: Mesh("square.msh"))
measure("u_sphere", lambda: Mesh("sphere.msh"))
measure("t10", lambda: Mesh("t10.msh"))
measure("t11", lambda: Mesh("t11.msh"))