-
Notifications
You must be signed in to change notification settings - Fork 143
Closed
Labels
Description
Please describe the purpose of filing this issue
Would be a nice addition
import pytensor.tensor as pt
x = pt.matrix("x")
y = pt.linalg.svd(x, compute_uv=False)
y_grad = pt.grad(y.sum(), x) # NotImplementedError
Some code can be found in old Theano issues:
More context in aesara-devs/aesara#836
galenseilis