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 f00035c commit 001587aCopy full SHA for 001587a
src/compiler/interface.jl
@@ -50,7 +50,9 @@ function conventionalize(crules::Tuple)
50
function(∇)
51
ntuple(length(crules) + 1) do ii
52
# first arg is nothing. See TODO above.
53
- ii==1 ? nothing : conventionalize1(crule(∇))
+ ii==1 && return nothing
54
+ crule = crules[ii - 1]
55
+ conventionalize1(crule(∇))
56
end
57
58
0 commit comments