We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bccb69f commit d222607Copy full SHA for d222607
src/codegen/lower_memory_common.jl
@@ -407,12 +407,12 @@ function add_memory_mask!(memopexpr::Expr, op::Operation, td::UnrollArgs, mask::
407
else
408
push!(memopexpr.args, condvar)
409
end
410
- elseif u₁i == 0# !condbroadcast && !vecunrolled
+ elseif u₁ᵢ == 0# !condbroadcast && !vecunrolled
411
push!(memopexpr.args, Expr(:call, lv(:and_last), condvar, MASKSYMBOL))
412
- elseif u₁i == u₁ # mask
413
- push!(memopexpr.args, Expr(:call, lv(:&), :($getfield($getfield(condvar,1),$u₁i,false)), MASKSYMBOL))
+ elseif u₁ᵢ == u₁ # mask
+ push!(memopexpr.args, Expr(:call, lv(:&), :($getfield($getfield(condvar,1),$u₁ᵢ,false)), MASKSYMBOL))
414
415
- push!(memopexpr.args, Expr(:call, lv(:&), :($getfield($getfield(condvar,1),$u₁i,false))))
+ push!(memopexpr.args, Expr(:call, lv(:&), :($getfield($getfield(condvar,1),$u₁ᵢ,false))))
416
417
elseif mask && isvectorized(op)
418
push!(memopexpr.args, MASKSYMBOL)
0 commit comments