mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-06 12:20:52 +01:00
Signed-off-by: Edward Z. Yang <ezyangfb.com> Pull Request resolved: https://github.com/pytorch/pytorch/pull/76089 Approved by: https://github.com/albanD
19 lines
589 B
Python
19 lines
589 B
Python
from tools.codegen.api.autograd import NativeFunctionWithDifferentiabilityInfo as NFWDI
|
|
from tools.codegen.context import native_function_manager
|
|
from tools.codegen.utils import T
|
|
|
|
import functools
|
|
from typing import Callable
|
|
|
|
# Like tools.api.context.with_native_function, but for
|
|
# NativeFunctionWithDifferentiabilityInfo.
|
|
def with_native_function_with_differentiability_info(
|
|
func: Callable[[NFWDI], T]
|
|
) -> Callable[[NFWDI], T]:
|
|
@functools.wraps(func)
|
|
def wrapper(f: NFWDI) -> T:
|
|
with native_function_manager(f.func):
|
|
return func(f)
|
|
|
|
return wrapper
|