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.