You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by tq...@apache.org on 2020/07/25 15:14:09 UTC

[incubator-tvm] branch master updated: add attr option mfloat-abi for arm32 (#6123)

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

tqchen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git


The following commit(s) were added to refs/heads/master by this push:
     new 21be7bb  add attr option mfloat-abi for arm32 (#6123)
21be7bb is described below

commit 21be7bbe7700f7612802c72d1ceaedfa4f9bd69f
Author: qunluo <lu...@gmail.com>
AuthorDate: Sat Jul 25 23:13:55 2020 +0800

    add attr option mfloat-abi for arm32 (#6123)
    
    * add attr option mfloat-abi for arm32
    
    * retrigger
---
 src/target/target_id.cc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/target/target_id.cc b/src/target/target_id.cc
index 1841ee8..735ec16 100644
--- a/src/target/target_id.cc
+++ b/src/target/target_id.cc
@@ -357,6 +357,7 @@ TVM_REGISTER_TARGET_ID("llvm")
     .add_attr_option<String>("mcpu")
     .add_attr_option<Array<String>>("mattr")
     .add_attr_option<String>("mtriple")
+    .add_attr_option<String>("mfloat-abi")
     .set_default_keys({"cpu"})
     .set_device_type(kDLCPU);