Skip to content

Commit e8de3f5

Browse files
committed
copy_input uses f instead of f!
1 parent 9442d3f commit e8de3f5

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/factorizations/adjoint.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ for (left_f, right_f) in zip(
4747
)
4848
left_f! = Symbol(left_f, :!)
4949
right_f! = Symbol(right_f, :!)
50-
@eval function MAK.copy_input(::typeof($left_f!), t::AdjointTensorMap)
51-
return adjoint(MAK.copy_input($right_f!, adjoint(t)))
50+
@eval function MAK.copy_input(::typeof($left_f), t::AdjointTensorMap)
51+
return adjoint(MAK.copy_input($right_f, adjoint(t)))
5252
end
53-
@eval function MAK.copy_input(::typeof($right_f!), t::AdjointTensorMap)
54-
return adjoint(MAK.copy_input($left_f!, adjoint(t)))
53+
@eval function MAK.copy_input(::typeof($right_f), t::AdjointTensorMap)
54+
return adjoint(MAK.copy_input($left_f, adjoint(t)))
5555
end
5656

5757
@eval function MAK.initialize_output(

0 commit comments

Comments
 (0)