From d1f79729ba29e7a6e177ea16970856b0a6c2dad4 Mon Sep 17 00:00:00 2001 From: Giuseppe Rossini Date: Fri, 9 Apr 2021 16:20:11 +0100 Subject: [PATCH] Naming of the AOT executor function Spin off from PR https://github.com/apache/tvm/pull/7785 to decide the correct name to use for the AOT main executor function Change-Id: I62b29e809a88d797afbb0c155fdc7be80659f7cf --- include/tvm/runtime/module.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/tvm/runtime/module.h b/include/tvm/runtime/module.h index 04a5cf8bf25d..689fe6fa53fc 100644 --- a/include/tvm/runtime/module.h +++ b/include/tvm/runtime/module.h @@ -230,6 +230,8 @@ constexpr const char* tvm_module_main = "__tvm_main__"; constexpr const char* tvm_param_prefix = "__tvm_param__"; /*! \brief A PackedFunc that looks up linked parameters by storage_id. */ constexpr const char* tvm_lookup_linked_param = "_lookup_linked_param"; +/*! \brief The main AOT executor function */ +constexpr const char* tvm_run_func_prefix = "tvm__run_func"; } // namespace symbol // implementations of inline functions.