coneoproject / COFFEE

COFFEE - A COmpiler For Fast Expression Evaluation
Other
9 stars 6 forks source link

COFFEE is not aligning some arrays #115

Open FabioLuporini opened 7 years ago

FabioLuporini commented 7 years ago

@dham Can you re-write here the minimal failing example? Thanks

miklos1 commented 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")
FabioLuporini commented 7 years ago

Let's monitor progress in PR #116