From de19ea8d3f16506fbcbc00cd112bf8645ef25778 Mon Sep 17 00:00:00 2001 From: Jack-Khuu Date: Thu, 23 Jan 2025 17:17:55 -0800 Subject: [PATCH] Explicitly turning off pybindings for ExecuTorch unless requested ExecuTorch now has XNN pybinding built by default https://github.com/pytorch/executorch/pull/7473 Previously it was not built by default --- torchchat/utils/scripts/install_utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torchchat/utils/scripts/install_utils.sh b/torchchat/utils/scripts/install_utils.sh index 94378960a..57dcc77bf 100644 --- a/torchchat/utils/scripts/install_utils.sh +++ b/torchchat/utils/scripts/install_utils.sh @@ -88,7 +88,7 @@ install_executorch_python_libs() { echo "Building and installing python libraries" if [ "${ENABLE_ET_PYBIND}" = false ]; then echo "Not installing pybind" - bash ./install_requirements.sh + bash ./install_requirements.sh --pybind off else echo "Installing pybind" bash ./install_requirements.sh --pybind xnnpack