Skip to content

Commit 247d518

Browse files
committed
Excise vjpfull and deprecated make_functional APIs
1 parent c2a64d4 commit 247d518

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

functorch/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010
from . import _C
1111

1212
from ._src.vmap import vmap
13-
from ._src.eager_transforms import grad, grad_and_value, vjp, jacrev, vjpfull
14-
from ._src.make_functional import make_functional_deprecated_v1, make_functional_with_buffers_deprecated_v1
13+
from ._src.eager_transforms import grad, grad_and_value, vjp, jacrev
1514
from ._src.make_functional import (
1615
make_functional_with_buffers,
1716
make_functional,

test/test_pythonkey.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import functorch
2424
from functorch import (
2525
grad, vjp, vmap, jacrev, grad_and_value,
26-
make_functional_deprecated_v1, make_functional_with_buffers_deprecated_v1, make_fx, nnc_jit, compiled_function, compiled_module,
26+
make_fx, nnc_jit, compiled_function, compiled_module,
2727
partition_with_recompute_fwd_in_bwd
2828
)
2929

0 commit comments

Comments
 (0)