Skip to content
Snippets Groups Projects
Commit 5cf09682 authored by Marcel Koch's avatar Marcel Koch
Browse files

fixes blockstructured basis shape

parent 2887edaa
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ def name_localbasis(leaf_element):
@kernel_cached
def evaluate_basis(leaf_element, name, restriction):
temporary_variable(name, shape=(leaf_element.degree(), 1), decl_method=declare_cache_temporary(leaf_element, restriction, 'Function'))
temporary_variable(name, shape=((leaf_element.degree()+1)**world_dimension(), 1), decl_method=declare_cache_temporary(leaf_element, restriction, 'Function'))
cache = name_localbasis_cache(leaf_element)
qp = pymbolic_quadrature_position_in_cell(restriction)
localbasis = name_localbasis(leaf_element)
......@@ -94,7 +94,7 @@ def pymbolic_basis(leaf_element, restriction, number, context=''):
@kernel_cached
def evaluate_reference_gradient(leaf_element, name, restriction):
temporary_variable(name, shape=(leaf_element.degree(), 1, world_dimension()), decl_method=declare_cache_temporary(leaf_element, restriction, 'Jacobian'))
temporary_variable(name, shape=((leaf_element.degree()+1)**world_dimension(), 1, world_dimension()), decl_method=declare_cache_temporary(leaf_element, restriction, 'Jacobian'))
cache = name_localbasis_cache(leaf_element)
qp = pymbolic_quadrature_position_in_cell(restriction)
localbasis = name_localbasis(leaf_element)
......
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