You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by mo...@apache.org on 2022/06/30 14:53:45 UTC

[tvm] branch main updated: [VM] class Executable does not export symbols to dll (#11963)

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

moreau 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 3425ed8463 [VM] class Executable does not export symbols to dll (#11963)
3425ed8463 is described below

commit 3425ed846308a456f98404c79f6df1693bed6377
Author: Valery Chernov <bl...@gmail.com>
AuthorDate: Thu Jun 30 17:53:36 2022 +0300

    [VM] class Executable does not export symbols to dll (#11963)
    
    * class Executable of VM exports symbols to dll
    
    * restart CI
    
    Co-authored-by: Valery Chernov <va...@deelvin.com>
---
 include/tvm/runtime/vm/executable.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/tvm/runtime/vm/executable.h b/include/tvm/runtime/vm/executable.h
index 774bca1e2d..2405b3c0ba 100644
--- a/include/tvm/runtime/vm/executable.h
+++ b/include/tvm/runtime/vm/executable.h
@@ -54,7 +54,7 @@ struct VMFunction;
  *  used by the virtual machine.
  *  - Code section, handling the VM functions and bytecode.
  */
-class Executable : public ModuleNode {
+class TVM_DLL Executable : public ModuleNode {
  public:
   /*!
    * \brief Get a PackedFunc from an executable module.