AlphaBetaGamma96
AlphaBetaGamma96
Hi @patrick-kidger, Apologises for opening an issue as this is probably something I've missed, but is it at all possible to separate an `eqx.Module` object into a pure function and...
TL;DR - `torch.linalg.slogdet` is over one order of magnitude slower in computing per-sample gradients in the latest nightly version of PyTorch/FuncTorch (`1.13.0.dev20220721` / ` 0.3.0a0+e8a68f4`) than a previous version of...
Hi All, I've been trying to get per-sample gradients of a simple feed-forward network that contains a `torch.slogdet` as its final layer. When I go to apply `vmap` to `jacrev`...
Hi All, I've been trying to get the forward activations and backward sensitivies for layers within my model. The `forward_pre_hook` works as expected but `backward_full_hook` fails to get called. A...
Hi All, I've tried improving the speed of my code via using `memory_efficient_fusion`, however, it leads to `Tensor.requires_grad_()` error and I have no idea why. The error is as follows,...
Hi All, I've been trying to use `memory_efficient_fusion` to see if I can speed up a main bottleneck in my code, but I hit a `RuntimeError`. This issue continues from...