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 <[email protected]>
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);