From 3333c96da354f4dbc5cde9a5250464fc1fb75d5e Mon Sep 17 00:00:00 2001 From: Jon Soifer Date: Fri, 6 Mar 2020 15:54:03 -0800 Subject: [PATCH] [Runtime] Export GraphRuntime in tvm_runtime.dll (#5002) Co-authored-by: Jon Soifer --- src/runtime/graph/graph_runtime.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/graph/graph_runtime.h b/src/runtime/graph/graph_runtime.h index 9adced5db4b0..4f7dc1f633d9 100644 --- a/src/runtime/graph/graph_runtime.h +++ b/src/runtime/graph/graph_runtime.h @@ -70,7 +70,7 @@ struct TVMOpParam { * This runtime can be acccesibly in various language via * TVM runtime PackedFunc API. */ -class GraphRuntime : public ModuleNode { +class TVM_DLL GraphRuntime : public ModuleNode { struct OpArgs { std::vector args; std::vector arg_values;