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
6 changes: 3 additions & 3 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ new_git_repository = use_repo_rule("@bazel_tools//tools/build_defs/repo:git.bzl"

local_torch = use_repo_rule("//toolchains:local_torch.bzl", "local_torch")

# Pinned to the ExecuTorch release/1.3 branch head.
# Pinned to the ExecuTorch release/1.4 branch head.
new_git_repository(
name = "executorch",
build_file = "@//third_party/executorch:BUILD",
# latest commit in release/1.3 branch
commit = "6118688a095fd9697224f5cad72ce42db641c9cd",
# latest commit in release/1.4 branch
commit = "cd380e7aefd18c171271cc228d3a155455095219",
patch_cmds = [
"find . -mindepth 2 \\( -name BUILD -o -name BUILD.bazel \\) -delete",
"mkdir executorch && find . -mindepth 1 -maxdepth 1 ! -name executorch ! -name BUILD ! -name BUILD.bazel ! -name REPO.bazel -exec cp -a {} executorch/ \\;",
Expand Down
6 changes: 3 additions & 3 deletions docker/MODULE.bazel.docker
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ new_local_repository(
build_file = "third_party/libtorch/BUILD"
)

# Pinned to the ExecuTorch release/1.3 branch head.
# Pinned to the ExecuTorch release/1.4 branch head.
new_git_repository(
name = "executorch",
build_file = "@//third_party/executorch:BUILD",
# latest commit in release/1.3 branch
commit = "6118688a095fd9697224f5cad72ce42db641c9cd",
# latest commit in release/1.4 branch
commit = "cd380e7aefd18c171271cc228d3a155455095219",
patch_cmds = [
"find . -mindepth 2 \\( -name BUILD -o -name BUILD.bazel \\) -delete",
"mkdir executorch && find . -mindepth 1 -maxdepth 1 ! -name executorch ! -name BUILD ! -name BUILD.bazel ! -name REPO.bazel -exec cp -a {} executorch/ \\;",
Expand Down
6 changes: 3 additions & 3 deletions docker/MODULE.bazel.ngc
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ new_local_repository(
build_file = "third_party/libtorch/BUILD"
)

# Pinned to the ExecuTorch release/1.3 branch head.
# Pinned to the ExecuTorch release/1.4 branch head.
new_git_repository(
name = "executorch",
build_file = "@//third_party/executorch:BUILD",
# latest commit in release/1.3 branch
commit = "6118688a095fd9697224f5cad72ce42db641c9cd",
# latest commit in release/1.4 branch
commit = "cd380e7aefd18c171271cc228d3a155455095219",
recursive_init_submodules = True,
patch_cmds = [
"find . -mindepth 2 \\( -name BUILD -o -name BUILD.bazel \\) -delete",
Expand Down
6 changes: 3 additions & 3 deletions toolchains/ci_workspaces/MODULE.bazel.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -182,12 +182,12 @@ new_local_repository(
build_file = "third_party/libtorch/BUILD"
)

# Pinned to the ExecuTorch release/1.3 branch head.
# Pinned to the ExecuTorch release/1.4 branch head.
new_git_repository(
name = "executorch",
build_file = "@//third_party/executorch:BUILD",
# latest commit in release/1.3 branch
commit = "6118688a095fd9697224f5cad72ce42db641c9cd",
# latest commit in release/1.4 branch
commit = "cd380e7aefd18c171271cc228d3a155455095219",
recursive_init_submodules = True,
patch_cmds = [
"find . -mindepth 2 \\( -name BUILD -o -name BUILD.bazel \\) -delete",
Expand Down
Loading