remove allow-untyped-defs from torch/_lazy/config.py (#143603)

Pull Request resolved: https://github.com/pytorch/pytorch/pull/143603
Approved by: https://github.com/aorenste
This commit is contained in:
bobrenjc93
2024-12-19 16:15:31 -08:00
committed by PyTorch MergeBot
parent cb4e9888df
commit 78d294379a

View File

@ -1,17 +1,16 @@
# mypy: allow-untyped-defs
import torch._C._lazy
def get_force_fallback():
def get_force_fallback() -> str:
"""Get the config used to force LTC fallback"""
return torch._C._lazy._get_force_fallback()
def set_force_fallback(configval):
def set_force_fallback(configval: str) -> None:
"""Set the config used to force LTC fallback"""
torch._C._lazy._set_force_fallback(configval)
def set_reuse_ir(val: bool):
def set_reuse_ir(val: bool) -> None:
"""Set the config to reuse IR nodes for faster tracing"""
torch._C._lazy._set_reuse_ir(val)