We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be8e438 commit 56bfd72Copy full SHA for 56bfd72
include/tvm/runtime/object.h
@@ -77,9 +77,12 @@ struct TypeIndex {
77
/*! \brief runtime::RPCObjectRef */
78
kRuntimeRPCObjectRef = 9,
79
// static assignments that may subject to change.
80
- kStaticIndexEnd,
81
- /*! \brief Type index is allocated during runtime. */
82
- kDynamic = kStaticIndexEnd
+ kStaticIndexEnd = 10,
+ /*!
+ * \brief Type index is allocated during runtime, keeping it as
83
+ * constant for now to ensure compatibility across versions
84
+ */
85
+ kDynamic = 12
86
};
87
}; // namespace TypeIndex
88
0 commit comments