Understanding linear_transpose #9612
-
What exactly does the
What exactly does the result mean? Is it the inverse of the function? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Transpose a function that is promised to be linear. |
Beta Was this translation helpful? Give feedback.
-
Thank you very much @YouJiacheng . I also have a related question about
In the docs , they say that linearize and jvp are equivalent as
How can the two provide the same numerical result when Thanks for your help. |
Beta Was this translation helpful? Give feedback.
Transpose a function that is promised to be linear.
Namely, given a linear function f, it can be written in matrix form:
f(x) == A @ x
, thenjax.linear_transpose(f, *place_holder_args)(y) == A.T @ y