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

Bad avals planted into remat #69

Open
jkramar opened this issue Mar 29, 2024 · 0 comments
Open

Bad avals planted into remat #69

jkramar opened this issue Mar 29, 2024 · 0 comments

Comments

@jkramar
Copy link

jkramar commented Mar 29, 2024

When planting into a remat, if the planted object has different aval than the target, the result is an object whose trace-time and runtime avals don't match.

For example, this prints ((3,), dtype('int32')) followed by (2,) float64:

def f(x):
  x = harvest.sow(x, tag='tag', name='x')
  print((x.shape, x.dtype))
  jax.debug.callback(lambda x: print(x.shape, x.dtype), x)
  return x

harvest.plant(jax.remat(f), tag='tag')({'x': np.zeros(2)}, np.zeros(3, int))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant