diff --git a/exir/__init__.py b/exir/__init__.py index 4b6d68488e7..96dfd78074b 100644 --- a/exir/__init__.py +++ b/exir/__init__.py @@ -28,6 +28,9 @@ from executorch.exir.serde.serialize import load, save from executorch.exir.tracer import ExirDynamoConfig from torch.export import ExportedProgram, ExportGraphSignature +import torch + + Value = Any @@ -55,3 +58,9 @@ "load", "save", ] + + +def func(*args, **kwargs): + return True + +torch._utils_internal.export_training_ir_rollout_check = func diff --git a/install_requirements.py b/install_requirements.py index 90acb9467ce..8b68bd770d5 100644 --- a/install_requirements.py +++ b/install_requirements.py @@ -106,7 +106,7 @@ def python_is_compatible(): # NOTE: If a newly-fetched version of the executorch repo changes the value of # NIGHTLY_VERSION, you should re-run this script to install the necessary # package versions. -NIGHTLY_VERSION = "dev20241007" +NIGHTLY_VERSION = "dev20241102" # The pip repository that hosts nightly torch packages. TORCH_NIGHTLY_URL = "https://download.pytorch.org/whl/nightly/cpu"