Skip to content
Snippets Groups Projects
Commit 433e3262 authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Small fixes needed in dune-perftool-hyperbolic

parent fd030532
No related branches found
No related tags found
No related merge requests found
...@@ -100,7 +100,7 @@ def read_ufl(uflfile): ...@@ -100,7 +100,7 @@ def read_ufl(uflfile):
data.object_by_name[name] = namespace.get(name, None) data.object_by_name[name] = namespace.get(name, None)
formdatas = [] formdatas = []
forms = data.forms forms = list(data.forms)
for index, form in enumerate(forms): for index, form in enumerate(forms):
formdatas.append(preprocess_form(form)) formdatas.append(preprocess_form(form))
forms[index] = formdatas[index].preprocessed_form forms[index] = formdatas[index].preprocessed_form
......
...@@ -6,7 +6,6 @@ from dune.perftool.generation import (class_member, ...@@ -6,7 +6,6 @@ from dune.perftool.generation import (class_member,
generator_factory, generator_factory,
include_file, include_file,
preamble, preamble,
backend,
) )
from dune.perftool.pdelab.restriction import restricted_name from dune.perftool.pdelab.restriction import restricted_name
from dune.perftool.ufl.modified_terminals import Restriction from dune.perftool.ufl.modified_terminals import Restriction
...@@ -20,19 +19,8 @@ from functools import partial ...@@ -20,19 +19,8 @@ from functools import partial
import numpy import numpy
@preamble
def define_lfs_bound(lfs, bound):
return 'auto {} = {}.size();'.format(bound, lfs)
def name_lfs_bound(lfs): def name_lfs_bound(lfs):
# LFS might either be given by an UFL element or by a string describing its name
from ufl import FiniteElementBase
if isinstance(lfs, FiniteElementBase):
return name_lfs_bound(name_lfs(lfs))
bound = '{}_size'.format(lfs) bound = '{}_size'.format(lfs)
define_lfs_bound(lfs, bound)
return bound return bound
...@@ -78,7 +66,9 @@ def available_gfs_names(element, restriction, name=None): ...@@ -78,7 +66,9 @@ def available_gfs_names(element, restriction, name=None):
@preamble @preamble
def define_lfs(name, father, child): def define_lfs(name, father, child):
using_indices() using_indices()
return "auto {} = child({}, _{});".format(name, father, child) bound = name_lfs_bound(name)
return ["auto {} = child({}, _{});".format(name, father, child),
"auto {} = {}.size();".format(bound, name)]
@class_member(classtag="operator") @class_member(classtag="operator")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment