You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by zh...@apache.org on 2020/03/18 17:21:20 UTC

[incubator-tvm] branch master updated: [RELAY] Codegen_c.h should include relay.function (#5093)

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

zhic 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 e5c24d7  [RELAY] Codegen_c.h should include relay.function (#5093)
e5c24d7 is described below

commit e5c24d7e79961b47d309ca2fdae3ba143fd1fae6
Author: lhutton1 <35...@users.noreply.github.com>
AuthorDate: Wed Mar 18 17:21:05 2020 +0000

    [RELAY] Codegen_c.h should include relay.function (#5093)
    
    Change-Id: I015b2c66a50b64d0eb2e9efe336f6c18ea1fdc67
---
 src/relay/backend/contrib/codegen_c/codegen_c.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/relay/backend/contrib/codegen_c/codegen_c.h b/src/relay/backend/contrib/codegen_c/codegen_c.h
index 4929819..f003d22 100644
--- a/src/relay/backend/contrib/codegen_c/codegen_c.h
+++ b/src/relay/backend/contrib/codegen_c/codegen_c.h
@@ -26,6 +26,7 @@
 
 #include <tvm/relay/expr.h>
 #include <tvm/relay/op.h>
+#include <tvm/relay/function.h>
 #include <sstream>
 #include <string>
 #include <utility>