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 1da2626 commit 691af33Copy full SHA for 691af33
src/costs.jl
@@ -253,6 +253,7 @@ Base.convert(::Type{Instruction}, instr::Symbol) = Instruction(instr)
253
# instruction(f::Symbol, m) = f ∈ keys(COST) ? Instruction(f) : Instruction(m, f)
254
# instruction(f::Symbol) = f ∈ keys(COST) ? Instruction(:LoopVectorization, f) : Instruction(Symbol(""), f)
255
function instruction(f::Symbol)
256
+ f === :ifelse && return Instruction(:LoopVectorization, :vifelse)
257
# @assert f ∈ keys(COST)
258
f ∈ keys(COST) ? Instruction(:LoopVectorization, f) : Instruction(Symbol(""), f)
259
end
0 commit comments