From 9094ef9436be6f90dbc23d1300a0deff0b8ee85e Mon Sep 17 00:00:00 2001 From: Gus Smith Date: Tue, 28 May 2019 10:18:36 -0700 Subject: [PATCH] kCustomBegin overlapped with kExtEnd; incr by 1 This was a typo in the original custom datatypes PR. --- include/tvm/runtime/c_runtime_api.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/tvm/runtime/c_runtime_api.h b/include/tvm/runtime/c_runtime_api.h index ee3542f90255..fd1b877f6d4c 100644 --- a/include/tvm/runtime/c_runtime_api.h +++ b/include/tvm/runtime/c_runtime_api.h @@ -115,7 +115,7 @@ typedef enum { kExtReserveEnd = 64U, kExtEnd = 128U, // The rest of the space is used for custom, user-supplied datatypes - kCustomBegin = 128U, + kCustomBegin = 129U, } TVMTypeCode; /*!