Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.
Merged
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
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ add_subdirectory(tokenizer)
# include et_run executable
include(runner/et.cmake)
if(TARGET et_run)
target_link_libraries(et_run PUBLIC tokenizer)
target_link_libraries(et_run PUBLIC tokenizer microkernels-prod)
endif()

# include aoti_run executable
Expand Down
2 changes: 1 addition & 1 deletion install/.pins/et-pin.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
286799c9c844ce6427b8eca260f9b2f28be03291
72b3bb3194c611f7c4861e6f3b24af5de868af72
2 changes: 1 addition & 1 deletion install/.pins/torchao-pin.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ae3e7c68eae7085e13241cb3d6b39481868dd162
49b1fb61c8b8eceda755579a2fd92c756d822de2
6 changes: 3 additions & 3 deletions install/install_requirements.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ fi
# NOTE: If a newly-fetched version of the executorch repo changes the value of
# PYTORCH_NIGHTLY_VERSION, you should re-run this script to install the necessary
# package versions.
PYTORCH_NIGHTLY_VERSION=dev20240901
PYTORCH_NIGHTLY_VERSION=dev20241002

# Nightly version for torchvision
VISION_NIGHTLY_VERSION=dev20240901
VISION_NIGHTLY_VERSION=dev20241002

# Nightly version for torchtune
TUNE_NIGHTLY_VERSION=dev20240928
Expand All @@ -76,7 +76,7 @@ fi

# pip packages needed by exir.
REQUIREMENTS_TO_INSTALL=(
torch=="2.5.0.${PYTORCH_NIGHTLY_VERSION}"
torch=="2.6.0.${PYTORCH_NIGHTLY_VERSION}"
torchvision=="0.20.0.${VISION_NIGHTLY_VERSION}"
torchtune=="0.3.0.${TUNE_NIGHTLY_VERSION}"
)
Expand Down
1 change: 1 addition & 0 deletions runner/et.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ if(executorch_FOUND)
optimized_native_cpu_ops_lib
quantized_ops_lib
xnnpack_backend
microkernels-prod
XNNPACK
pthreadpool
cpuinfo
Expand Down
2 changes: 1 addition & 1 deletion torchchat/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def export_for_server(
from executorch.backends.xnnpack.partition.xnnpack_partitioner import (
XnnpackDynamicallyQuantizedPartitioner,
)
from executorch.backends.xnnpack.passes.convert_to_linear import (
from executorch.backends.xnnpack._passes.convert_to_linear import (
ConvertToLinearPass,
)
from executorch.exir import EdgeProgramManager, to_edge
Expand Down
Loading