This is an automated email from the ASF dual-hosted git repository. echuraev pushed a commit to branch echuraev/remove_use_micro_from_doc in repository https://gitbox.apache.org/repos/asf/tvm.git
commit 6f0ed41828c47f15b79b4a9461f45c14d76b4189 Author: Egor Churaev <[email protected]> AuthorDate: Tue Nov 29 08:17:32 2022 +0300 [docs][Adreno] Remove unnecessary compilation flag Flag `-DUSE_MICRO=OFF` was added to avoid this issue #13482. In #13503 these changes were reverted. Removed unnecessary compilation flag to avoid user confusing. --- docs/how_to/deploy/adreno.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/how_to/deploy/adreno.rst b/docs/how_to/deploy/adreno.rst index af613aa5cb..7f4616fbf7 100644 --- a/docs/how_to/deploy/adreno.rst +++ b/docs/how_to/deploy/adreno.rst @@ -94,7 +94,7 @@ folder of TVM: mkdir build_android cd build_android - cmake .. -DUSE_OPENCL=ON -DUSE_MICRO=OFF -DCMAKE_TOOLCHAIN_FILE=${ANDROID_NDK_HOME}/build/cmake/android.toolchain.cmake -DANDROID_ABI=arm64-v8a -DANDROID_NATIVE_API_LEVEL=android-28 -DCMAKE_FIND_ROOT_PATH_MODE_PACKAGE=ON -DANDROID_STL=c++_static -DUSE_CPP_RPC=ON + cmake .. -DUSE_OPENCL=ON -DCMAKE_TOOLCHAIN_FILE=${ANDROID_NDK_HOME}/build/cmake/android.toolchain.cmake -DANDROID_ABI=arm64-v8a -DANDROID_NATIVE_API_LEVEL=android-28 -DCMAKE_FIND_ROOT_PATH_MODE_PACKAGE=ON -DANDROID_STL=c++_static -DUSE_CPP_RPC=ON make -jN tvm_runtime tvm_rpc where **N** is the number of cores available on your *CPU*.
