This is an automated email from the ASF dual-hosted git repository. ruihangl pushed a commit to branch metal-ci in repository https://gitbox.apache.org/repos/asf/tvm.git
commit 745dd1c971971bfb9dd93b7917d5c7800936f0f1 Author: Ruihang Lai <[email protected]> AuthorDate: Mon Sep 8 21:33:15 2025 -0400 [CI] Enable Metal support in TVM build process This PR enables `USE_METAL=ON` in the MacOS test, so that it will report errors in metal runtime in time. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d1934eade4..b26f3660e1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -52,7 +52,7 @@ jobs: shell: bash -l {0} run: | pip install scikit-build-core - export CMAKE_ARGS="-DUSE_LLVM=ON -DBUILD_TESTING=OFF" + export CMAKE_ARGS="-DUSE_LLVM=ON -DUSE_METAL=ON -DBUILD_TESTING=OFF" pip wheel --no-deps -w dist . -v - name: Install TVM from wheel shell: bash -l {0}
