functorch icon indicating copy to clipboard operation
functorch copied to clipboard

functorch is JAX-like composable function transforms for PyTorch.

Results 162 functorch issues
Sort by recently updated
recently updated
newest added

```python def foo(a:torch.Tensor, b:torch.Tensor): bool_mat = (a & b) print(bool_mat) return bool_mat.nonzero_static(size=bool_mat.shape[0]) a = torch.zeros((5,5), dtype=torch.bool, device="cuda") b = a.clone() res = torch.func.vmap(foo)(a, b) ``` ErrorCode: ``` NotImplementedError: Could not...

Hello, according to https://docs.pytorch.org/docs/stable/func.migrating.html functorch is no longer actively developed but was merged into PyTorch? If so, I kindly ask that the documentation is updated to reflect this. Thanks