Unverified Commit 9db632fb by Jon Soifer Committed by GitHub

[Runtime] Fix TVM_DLL_EXPORT_TYPED_FUNC to work on Windows (#4955)

* [Runtime] Fixed TVM_DLL_EXPORT_TYPED_FUNC to work on Windows

* fix style

Co-authored-by: Jon Soifer <jonso@microsoft.com>
parent 81ff0613
......@@ -919,7 +919,12 @@ class TVMRetValue : public TVMPODValue_ {
int* type_code, \
int num_args, \
TVMValue* out_value, \
int* out_type_code) { \
int* out_type_code); \
int ExportName(TVMValue* args, \
int* type_code, \
int num_args, \
TVMValue* out_value, \
int* out_type_code) { \
try { \
::tvm::runtime::TVMRetValue rv; \
Function(::tvm::runtime::TVMArgs( \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment