Open FabioLuporini opened 7 years ago
@FabioLuporini:
from firedrake import *
parameters['coffee']['optlevel'] = 'O3'
parameters['pyop2_options']['opt_level'] = 'O3'
parameters['pyop2_options']['simd_isa'] = 'avx'
m = UnitSquareMesh(2, 2, quadrilateral=True)
fs = FunctionSpace(m, "Q", 5)
u = TrialFunction(fs)
v = TestFunction(fs)
print tsfc_interface.compile_form(u * v * dx, "foo")
Let's monitor progress in PR #116
@dham Can you re-write here the minimal failing example? Thanks