Skip to content

Commit

Permalink
examples: Update expected output once Uncached
Browse files Browse the repository at this point in the history
  • Loading branch information
FabioLuporini committed Apr 29, 2022
1 parent 6320596 commit 7b61c6b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/compiler/04_iet-B.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
"text": [
"<Expression a = b + c[i] + 5.0>\n",
"<Expression d[j, k] = e[t0, t1, i] - f[t, x, y]>\n",
"<Expression a = 4*a*b>\n",
"<Expression a = 4*b*a>\n",
"<Expression a = 8.0*a + 6.0/b>\n"
]
}
Expand Down Expand Up @@ -184,7 +184,7 @@
" <Iteration j::j::(0, 5, 1)>\n",
" <Iteration k::k::(0, 7, 1)>\n",
" <Expression d[j, k] = e[t0, t1, i] - f[t, x, y]>\n",
" <Expression a = 4*a*b>\n",
" <Expression a = 4*b*a>\n",
" <Iteration t1::t1::(0, 4, 1)>\n",
" <Expression a = 8.0*a + 6.0/b>\n"
]
Expand Down Expand Up @@ -293,7 +293,7 @@
" for (int k = 0; k <= 7; k += 1)\n",
" {\n",
" d[j][k] = e[t0][t1][i] - f[t][x][y];\n",
" a = 4*a*b;\n",
" a = 4*b*a;\n",
" }\n",
" }\n",
" for (int t1 = 0; t1 <= 4; t1 += 1)\n",
Expand Down

0 comments on commit 7b61c6b

Please sign in to comment.