You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by me...@apache.org on 2023/03/24 19:04:54 UTC

[tvm] branch main updated: [CI][microTVM] Enable USE_MICRO for mac and windows CI builds (#14393)

This is an automated email from the ASF dual-hosted git repository.

mehrdadh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/main by this push:
     new 0d0d2f0bd3 [CI][microTVM] Enable USE_MICRO for mac and windows CI builds (#14393)
0d0d2f0bd3 is described below

commit 0d0d2f0bd33667316a255212e89a408a5f541817
Author: Alan MacDonald <al...@users.noreply.github.com>
AuthorDate: Fri Mar 24 12:04:46 2023 -0700

    [CI][microTVM] Enable USE_MICRO for mac and windows CI builds (#14393)
    
    Enable USE_MICRO for mac and windows CI builds to ensure code building doesn't break for those platforms.
---
 conda/recipe/bld.bat  | 1 +
 conda/recipe/build.sh | 1 +
 2 files changed, 2 insertions(+)

diff --git a/conda/recipe/bld.bat b/conda/recipe/bld.bat
index 6af4a9bacf..f8988b1357 100644
--- a/conda/recipe/bld.bat
+++ b/conda/recipe/bld.bat
@@ -27,6 +27,7 @@ cmake ^
       -DUSE_LLVM=ON ^
       -DUSE_RPC=ON ^
       -DUSE_CPP_RPC=ON ^
+      -DUSE_MICRO=ON ^
       -DUSE_SORT=ON ^
       -DUSE_RANDOM=ON ^
       -DUSE_PROFILER=ON ^
diff --git a/conda/recipe/build.sh b/conda/recipe/build.sh
index 0131fd65a4..3422c4d8f1 100755
--- a/conda/recipe/build.sh
+++ b/conda/recipe/build.sh
@@ -49,6 +49,7 @@ cmake -DCMAKE_INSTALL_PREFIX="${PREFIX}" \
       -DCMAKE_BUILD_TYPE=Release \
       -DUSE_RPC=ON \
       -DUSE_CPP_RPC=OFF \
+      -DUSE_MICRO=ON \
       -DUSE_SORT=ON \
       -DUSE_RANDOM=ON \
       -DUSE_PROFILER=ON \