Skip to content

Commit 7d5418f

Browse files
committed
Bug fix on tiled lowering.
1 parent eafd1d2 commit 7d5418f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lowering.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ function lower_tiled(ls::LoopSet, U::Int, T::Int)
656656
# Expr(:block, Expr(:(=), unrolled, 0))
657657
# end
658658
lower_unrolled!(tiledloopbody, ls, U, Tt, W, static_unroll, unrolled_iter, unrolled_itersym)
659-
tiledloopbody = lower_nest(ls, nloops, U, T, tiledloopbody, 0, W, nothing, :block)
659+
tiledloopbody = lower_nest(ls, nloops, U, Tt, tiledloopbody, 0, W, nothing, :block)
660660
push!(q.args, Texprtype === :block ? tiledloopbody : Expr(Texprtype, looprange(ls, tiled, Tt, tiledsym(tiled)), tiledloopbody))
661661
if static_tile
662662
Tt = if Tt == T

0 commit comments

Comments
 (0)