added script to assist in memory and cputime estimations

This commit is contained in:
Stephen Mardson McQuay
2011-05-24 18:41:56 -06:00
parent 621e4c5303
commit 779608f13e
+9
View File
@@ -0,0 +1,9 @@
import sys
from interp.grid.gmsh import *
import time
s = time.time()
g = ggrid(sys.argv[1])
e = time.time()
print "time to parse mesh:", e-s