Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement vectorized jacobian and allow arbitrary expression shapes #1228

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

ricardoV94
Copy link
Member

@ricardoV94 ricardoV94 commented Feb 20, 2025

Seeing about a 3.5x, (2x for larger x) time speedup for this trivial case:

from pytensor.gradient import jacobian
from pytensor import function
import pytensor.tensor as pt

x = pt.vector("x", shape=(3,))
y = pt.outer(x, x)
print(y.type.shape)

jac_y = jacobian(y, x, vectorize=False)
print(jac_y.type.shape)

fn = function([x], jac_y, profile=True)
fn.dprint(print_type=True)

%timeit fn([0, 1, 2])
fn([0, 1, 2])

Memory footprint will grow though, specially if intermediate operations are much larger than the final jacobian. Also not all graphs will be safely vectorizable, so I would leave the Scan option as a default for a while.

Related Issue

Also allow arbitrary expression dimensionality
Comment on lines +2089 to +2098
# row_index = scalar("idx", dtype="int64")
# jacobian_rows = grad(
# expression.ravel()[row_index],
# wrt=wrt,
# **grad_kwargs
# )
# rows_indices = arange(expression.size)
# jacobian_matrices = vectorize_graph(
# jacobian_rows, replace={row_index: rows_indices}
# )
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is equivalent, but we sidestep the implicit eye that shows up in the gradient of expr[idx] and pass it to the Lop directly. Otherwise there is a Blockwise(IncSubtensor) that is not pretty

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant