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

tqchen 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 e334942  Fix builtin_fp16.h path according to: 
https://discuss.tvm.apache.org/… (#8705)
e334942 is described below

commit e334942db002019979438971440d33ece16585a3
Author: Natan Kaminsky 
<[email protected]>
AuthorDate: Mon Aug 16 15:35:03 2021 +0300

    Fix builtin_fp16.h path according to: https://discuss.tvm.apache.org/… 
(#8705)
---
 src/runtime/contrib/sort/sort.cc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/runtime/contrib/sort/sort.cc b/src/runtime/contrib/sort/sort.cc
index 4aa8c92..cee723c 100644
--- a/src/runtime/contrib/sort/sort.cc
+++ b/src/runtime/contrib/sort/sort.cc
@@ -21,13 +21,14 @@
  * \file Use standard C library call.
  */
 
-#include <builtin_fp16.h>
 #include <dlpack/dlpack.h>
 #include <tvm/runtime/registry.h>
 
 #include <algorithm>
 #include <vector>
 
+#include "../../../../3rdparty/compiler-rt/builtin_fp16.h"
+
 namespace tvm {
 namespace contrib {
 

Reply via email to