From 822a05344a9677a8c8875c046f269fe175f38c7a Mon Sep 17 00:00:00 2001 From: Mengwei Liu Date: Wed, 3 Jul 2024 10:55:01 -0700 Subject: [PATCH] Address comments --- README-wheel.md | 1 + build/packaging/env_var_script_m1.sh | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README-wheel.md b/README-wheel.md index 1ba8c6fa0d..e04e6dfa6d 100644 --- a/README-wheel.md +++ b/README-wheel.md @@ -17,6 +17,7 @@ restrictions: * Only the [XNNPACK backend delegate](https://pytorch.org/executorch/main/native-delegates-executorch-xnnpack-delegate.html) is linked into the prebuilt module +* [macOS only] [Core ML](https://pytorch.org/executorch/main/build-run-coreml.html) and [MPS](https://pytorch.org/executorch/main/build-run-mps.html) backend delegates are linked into the prebuilt module. Please visit the [ExecuTorch website](https://pytorch.org/executorch/) for tutorials and documentation. Here are some starting points: diff --git a/build/packaging/env_var_script_m1.sh b/build/packaging/env_var_script_m1.sh index a1a1de154a..da1192455f 100644 --- a/build/packaging/env_var_script_m1.sh +++ b/build/packaging/env_var_script_m1.sh @@ -20,7 +20,5 @@ export CMAKE_ARGS="${CMAKE_ARGS:-}" CMAKE_ARGS="${CMAKE_ARGS} -DEXECUTORCH_BUILD_XNNPACK=ON" # When building for macOS, link additional backends into the pybindings runtime. - -# TODO(dbort): Make these build properly in the CI environment. -# CMAKE_ARGS="${CMAKE_ARGS} -DEXECUTORCH_BUILD_COREML=ON" +CMAKE_ARGS="${CMAKE_ARGS} -DEXECUTORCH_BUILD_COREML=ON" CMAKE_ARGS="${CMAKE_ARGS} -DEXECUTORCH_BUILD_MPS=ON"