Skip to content
Snippets Groups Projects
Commit eb273bb2 authored by Matt Wala's avatar Matt Wala
Browse files

Revert "More reduction fixes."

This reverts commit 7913e68a.
parent 7913e68a
Branches
Tags
1 merge request!103Tuple typed reductions
...@@ -115,8 +115,8 @@ def test_generate_c_snippet(): ...@@ -115,8 +115,8 @@ def test_generate_c_snippet():
knl = lp.make_kernel( knl = lp.make_kernel(
"{[I, k]: 0<=I<nSpace and 0<=k<nQuad}", "{[I, k]: 0<=I<nSpace and 0<=k<nQuad}",
[ [
Instr(f[I], l_sum(k, (q_v[k, I]*u,))), Instr(f[I], l_sum(k, q_v[k, I]*u)),
Instr(df[I], l_sum(k, (q_v[k, I],))), Instr(df[I], l_sum(k, q_v[k, I])),
], ],
[ [
lp.GlobalArg("q_v", np.float64, shape="nQuad, nSpace"), lp.GlobalArg("q_v", np.float64, shape="nQuad, nSpace"),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment