We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
f
f!
1 parent 9442d3f commit e8de3f5Copy full SHA for e8de3f5
1 file changed
src/factorizations/adjoint.jl
@@ -47,11 +47,11 @@ for (left_f, right_f) in zip(
47
)
48
left_f! = Symbol(left_f, :!)
49
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)))
+ @eval function MAK.copy_input(::typeof($left_f), t::AdjointTensorMap)
+ return adjoint(MAK.copy_input($right_f, adjoint(t)))
52
end
53
- @eval function MAK.copy_input(::typeof($right_f!), t::AdjointTensorMap)
54
- return adjoint(MAK.copy_input($left_f!, adjoint(t)))
+ @eval function MAK.copy_input(::typeof($right_f), t::AdjointTensorMap)
+ return adjoint(MAK.copy_input($left_f, adjoint(t)))
55
56
57
@eval function MAK.initialize_output(
0 commit comments