mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/76275 In preparation for addressing https://github.com/pytorch/pytorch/issues/73212 Diff was generated with: ``` git mv tools/codegen torchgen git grep -l 'tools.codegen' | xargs sed -i 's/tools.codegen/torchgen/g' sed -i "s/\${TOOLS_PATH}\/codegen/\${TORCH_ROOT}\/torchgen/g" caffe2/CMakeLists.txt ``` and a manual edits to: * tools/test/test_gen_backend_stubs.py * torchgen/build.bzl * torchgen/gen_backend_stubs.py aka this diff: ``` diff --git a/tools/test/test_gen_backend_stubs.py b/tools/test/test_gen_backend_stubs.py index 3dc26c6d2d..104054575e 100644 --- a/tools/test/test_gen_backend_stubs.py +++ b/tools/test/test_gen_backend_stubs.py @@ -9,7 +9,7 @@ from torchgen.gen_backend_stubs import run from torchgen.gen import _GLOBAL_PARSE_NATIVE_YAML_CACHE # noqa: F401 path = os.path.dirname(os.path.realpath(__file__)) -gen_backend_stubs_path = os.path.join(path, '../torchgen/gen_backend_stubs.py') +gen_backend_stubs_path = os.path.join(path, '../../torchgen/gen_backend_stubs.py') # gen_backend_stubs.py is an integration point that is called directly by external backends. # The tests here are to confirm that badly formed inputs result in reasonable error messages. diff --git a/torchgen/build.bzl b/torchgen/build.bzl index ed04e35a43..d00078a3cf 100644 --- a/torchgen/build.bzl +++ b/torchgen/build.bzl @@ -1,6 +1,6 @@ def define_targets(rules): rules.py_library( - name = "codegen", + name = "torchgen", srcs = rules.glob(["**/*.py"]), deps = [ rules.requirement("PyYAML"), @@ -11,6 +11,6 @@ def define_targets(rules): rules.py_binary( name = "gen", - srcs = [":codegen"], + srcs = [":torchgen"], visibility = ["//visibility:public"], ) diff --git a/torchgen/gen_backend_stubs.py b/torchgen/gen_backend_stubs.py index c1a672a655..beee7a15e0 100644 --- a/torchgen/gen_backend_stubs.py +++ b/torchgen/gen_backend_stubs.py @@ -474,7 +474,7 @@ def run( ) -> None: # Assumes that this file lives at PYTORCH_ROOT/torchgen/gen_backend_stubs.py - pytorch_root = pathlib.Path(__file__).parent.parent.parent.absolute() + pytorch_root = pathlib.Path(__file__).parent.parent.absolute() template_dir = os.path.join(pytorch_root, "aten/src/ATen/templates") def make_file_manager(install_dir: str) -> FileManager: ``` run_all_fbandroid_tests Test Plan: sandcastle Reviewed By: albanD, ngimel Differential Revision: D35770317 fbshipit-source-id: 153ac4a7fef15b1e750812a90bfafdbc8f1ebcdf (cherry picked from commit c6d485d1d4648fa1c8a4c14c5bf3d8e899b9b4dd)
112 lines
3.4 KiB
Python
112 lines
3.4 KiB
Python
from torchgen.utils import S, T, context
|
|
from torchgen.model import (
|
|
NativeFunction,
|
|
NativeFunctionsGroup,
|
|
NativeFunctionsViewGroup,
|
|
BackendIndex,
|
|
DispatchKey,
|
|
)
|
|
import torchgen.local as local
|
|
|
|
import functools
|
|
from typing import TypeVar, Union, Iterator, Callable, Dict, Optional
|
|
import contextlib
|
|
|
|
# Helper functions for defining generators on things in the model
|
|
|
|
F = TypeVar(
|
|
"F",
|
|
NativeFunction,
|
|
NativeFunctionsGroup,
|
|
NativeFunctionsViewGroup,
|
|
Union[NativeFunction, NativeFunctionsGroup],
|
|
Union[NativeFunction, NativeFunctionsViewGroup],
|
|
)
|
|
|
|
F2 = TypeVar(
|
|
"F2",
|
|
NativeFunction,
|
|
Optional[NativeFunction],
|
|
bool,
|
|
)
|
|
|
|
|
|
@contextlib.contextmanager
|
|
def native_function_manager(
|
|
g: Union[NativeFunctionsGroup, NativeFunctionsViewGroup, NativeFunction]
|
|
) -> Iterator[None]:
|
|
if isinstance(g, NativeFunctionsGroup):
|
|
# By default, we associate all errors with structured native functions
|
|
# with the out variant. In some cases, it might be better to have
|
|
# a more specific place to hang things; if so, use
|
|
# native_function_manager again on the inside
|
|
f = g.out
|
|
elif isinstance(g, NativeFunctionsViewGroup):
|
|
# We associate errors with the view operator
|
|
f = g.view
|
|
else:
|
|
f = g
|
|
with context(lambda: f"in native_functions.yaml line {f.loc}:\n {f.func}"):
|
|
with local.parametrize(
|
|
use_const_ref_for_mutable_tensors=f.use_const_ref_for_mutable_tensors
|
|
):
|
|
yield
|
|
|
|
|
|
# Given a function that operates on NativeFunction, wrap it into a new function
|
|
# that sets some appropriate context managers for that native function.
|
|
# YOU MUST WRAP FUNCTIONS IN THIS for calls to api modules to be sound
|
|
# (you will get an error if we try to access the local variables without having
|
|
# set them).
|
|
def with_native_function(func: Callable[[F], T]) -> Callable[[F], T]:
|
|
@functools.wraps(func)
|
|
def wrapper(f: F) -> T:
|
|
with native_function_manager(f):
|
|
return func(f)
|
|
|
|
return wrapper
|
|
|
|
|
|
def with_native_function_and(func: Callable[[F, F2], T]) -> Callable[[F, F2], T]:
|
|
@functools.wraps(func)
|
|
def wrapper(f: F, f2: F2) -> T:
|
|
# The first native_function is assumed to be the one with the appropriate context.
|
|
with native_function_manager(f):
|
|
return func(f, f2)
|
|
|
|
return wrapper
|
|
|
|
|
|
def method_with_native_function(func: Callable[[S, F], T]) -> Callable[[S, F], T]:
|
|
@functools.wraps(func)
|
|
def wrapper(slf: S, f: F) -> T:
|
|
with native_function_manager(f):
|
|
return func(slf, f)
|
|
|
|
return wrapper
|
|
|
|
|
|
# Convenience decorator for functions that explicitly take in a BackendIndex,
|
|
# instead of indirectly taking one in as a closure
|
|
def with_native_function_and_index(
|
|
func: Callable[[F, BackendIndex], T]
|
|
) -> Callable[[F, BackendIndex], T]:
|
|
@functools.wraps(func)
|
|
def wrapper(f: F, backend_index: BackendIndex) -> T:
|
|
with native_function_manager(f):
|
|
return func(f, backend_index)
|
|
|
|
return wrapper
|
|
|
|
|
|
# Convenience decorator for functions that explicitly take in a Dict of BackendIndices
|
|
def with_native_function_and_indices(
|
|
func: Callable[[F, Dict[DispatchKey, BackendIndex]], T]
|
|
) -> Callable[[F, Dict[DispatchKey, BackendIndex]], T]:
|
|
@functools.wraps(func)
|
|
def wrapper(f: F, backend_indices: Dict[DispatchKey, BackendIndex]) -> T:
|
|
with native_function_manager(f):
|
|
return func(f, backend_indices)
|
|
|
|
return wrapper
|