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.
return
1 parent f01adb8 commit df27e4aCopy full SHA for df27e4a
src/vectorizationbase_compat/contract_pass.jl
@@ -25,8 +25,8 @@ function mulexpr(
25
)::Tuple{ProdArg,ProdArg}
26
a = (mulexargs[1])::ProdArg
27
Nexpr = length(mulexargs)
28
- Nexpr == 2 && (a, mulexargs[2]::ProdArg)
29
- Nexpr != 3 && (a, mul_fast_expr(mulexargs))
+ Nexpr == 2 && return (a, mulexargs[2]::ProdArg)
+ Nexpr != 3 && return (a, mul_fast_expr(mulexargs))
30
# We'll calc the product between the guesstimated cheaper two args first, for better out of order execution
31
b = (mulexargs[2])::ProdArg
32
c = (mulexargs[3])::ProdArg
0 commit comments