Skip to content

Commit

Permalink
fix: missing qualifier
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal committed Sep 24, 2024
1 parent a3d9872 commit aa1229b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/SciMLJacobianOperators/src/SciMLJacobianOperators.jl
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ for op in (:adjoint, :transpose)
@eval function Base.$(op)(operator::JacobianOperator{iip, T}) where {iip, T}
return JacobianOperator{iip, T}(
flip_mode(operator.mode), operator.jvp_op, operator.vjp_op,
reverse(operator.size), input_cache, output_cache)
reverse(operator.size), operator.input_cache, operator.output_cache)
end
end

Expand Down

0 comments on commit aa1229b

Please sign in to comment.