You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by le...@apache.org on 2022/07/29 06:47:13 UTC

[tvm] branch main updated: Removing header arm_math.h which has disappeared after CMSIS upgrade (#12217)

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

leandron 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 9a4d80c5fe Removing header arm_math.h which has disappeared after CMSIS upgrade (#12217)
9a4d80c5fe is described below

commit 9a4d80c5fe7d756baa83708fd9679c7ae0fac195
Author: Ashutosh Parkhi <86...@users.noreply.github.com>
AuthorDate: Fri Jul 29 07:47:07 2022 +0100

    Removing header arm_math.h which has disappeared after CMSIS upgrade (#12217)
    
    Change-Id: I51a852321296aa6ac3e74eb44f37e8e693cb3f8f
---
 apps/microtvm/zephyr/template_project/microtvm_api_server.py | 1 -
 python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel/common.py  | 1 -
 2 files changed, 2 deletions(-)

diff --git a/apps/microtvm/zephyr/template_project/microtvm_api_server.py b/apps/microtvm/zephyr/template_project/microtvm_api_server.py
index 7b9538f6ce..94bf51d1e5 100644
--- a/apps/microtvm/zephyr/template_project/microtvm_api_server.py
+++ b/apps/microtvm/zephyr/template_project/microtvm_api_server.py
@@ -449,7 +449,6 @@ class Handler(server.ProjectAPIHandler):
                     header in lib_content
                     for header in [
                         "<arm_nnsupportfunctions.h>",
-                        "<arm_math.h>",
                         "arm_nn_types.h",
                         "arm_nnfunctions.h",
                     ]
diff --git a/python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel/common.py b/python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel/common.py
index a37b297ffd..df54c10177 100644
--- a/python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel/common.py
+++ b/python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel/common.py
@@ -24,7 +24,6 @@ common_includes = """
 #include <stdlib.h>
 #include <string.h>
 
-#include <arm_math.h>
 #include <arm_nnsupportfunctions.h>
 
 #include <tvm/runtime/crt/error_codes.h>