Skip to content

Commit

Permalink
comment and remove 4th method
Browse files Browse the repository at this point in the history
  • Loading branch information
oscardssmith committed Nov 6, 2023
1 parent f8cd198 commit 876bc5f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/norecompile.jl
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ function wrapfun_iip(ff,
dualT2 = ArrayInterface.promote_eltype(T2, dualT)
dualT4 = dualgen(T4)

iip_arglists = (Tuple{T1, T2, T3, T4},
Tuple{dualT1, dualT2, T3, T4},
Tuple{dualT1, T2, T3, dualT4},
Tuple{dualT1, dualT2, T3, dualT4})
iip_arglists = (Tuple{T1, T2, T3, T4}, # primal
Tuple{dualT1, dualT2, T3, T4}, # vjp
Tuple{dualT1, T2, T3, dualT4}, # tgrad
)

iip_returnlists = ntuple(x -> Nothing, 4)

Expand Down

0 comments on commit 876bc5f

Please sign in to comment.