Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions exir/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -55,3 +58,9 @@
"load",
"save",
]


def func(*args, **kwargs):
return True

torch._utils_internal.export_training_ir_rollout_check = func
2 changes: 1 addition & 1 deletion install_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading