Skip to content
Snippets Groups Projects
Commit 83578018 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Merge branch 'distribute-function-symbol' into 'master'

Distribute FunctionSymbol over Object Arrays

See merge request !65
parents b7aece21 d3b3d04e
No related branches found
No related tags found
1 merge request!65Distribute FunctionSymbol over Object Arrays
Pipeline #27481 passed with warnings
......@@ -362,6 +362,11 @@ class FunctionSymbol(ExpressionBase, VariableBase):
:class:`~pymbolic.primitives.Call`.
"""
def __call__(self, *exprs):
from pytools.obj_array import with_object_array_or_scalar_n_args
return with_object_array_or_scalar_n_args(
super(FunctionSymbol, self).__call__, *exprs)
mapper_method = "map_function_symbol"
......
......@@ -30,7 +30,7 @@ import pyopencl as cl
import pyopencl.array
import pyopencl.clmath
from pytools.obj_array import join_fields
from pytools.obj_array import join_fields, make_obj_array
import pytest # noqa
......@@ -618,6 +618,36 @@ def test_external_call(ctx_factory):
assert (result == 5).get().all()
@pytest.mark.parametrize("array_type", ["scalar", "vector"])
def test_function_symbol_array(ctx_factory, array_type):
ctx = ctx_factory()
queue = cl.CommandQueue(ctx)
from meshmode.mesh.generation import generate_regular_rect_mesh
dim = 2
mesh = generate_regular_rect_mesh(
a=(-0.5,)*dim, b=(0.5,)*dim,
n=(8,)*dim, order=4)
discr = DGDiscretizationWithBoundaries(ctx, mesh, order=4)
nnodes = discr.discr_from_dd(sym.DD_VOLUME).nnodes
import pyopencl.clrandom # noqa: F401
if array_type == "scalar":
sym_x = sym.var("x")
x = cl.clrandom.rand(queue, nnodes, dtype=np.float)
elif array_type == "vector":
sym_x = sym.make_sym_array("x", dim)
x = make_obj_array([
cl.clrandom.rand(queue, nnodes, dtype=np.float)
for _ in range(dim)
])
else:
raise ValueError("unknown array type")
norm = bind(discr, sym.norm(2, sym_x))(queue, x=x)
assert isinstance(norm, float)
# You can test individual routines by typing
# $ python test_grudge.py 'test_routine()'
......
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