SyFi 0.3
runtests.py
Go to the documentation of this file.
00001 
00002 from dolfin_utils.pjobs import submit
00003 
00004 jobs  = []
00005 names = []
00006 for q in (3, 5, 7):
00007     name = "sfc_quad%d" % q
00008     cmd  = "python test.py "
00009     cmd += " -u ufl/functionals/"
00010     cmd += " -r reference/"
00011     cmd += " -j options/quad%d.py" % q
00012     cmd += " -w1 -d0 -e1 -n1 -b1"
00013     jobs.append(cmd)
00014     names.append(name)
00015 
00016 submit(jobs, name=names, nodes=3, ppn=8, walltime=5)
00017 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines