Thanks to visit codestin.com Credit goes to github.com
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.
2 parents 23622ee + 03e346d commit 6aa081bCopy full SHA for 6aa081b
src/uTensor/allocators/arenaAllocator.hpp
@@ -13,7 +13,7 @@
13
namespace uTensor {
14
15
//#define MSB_SET ~( ~( (T)0 ) >> 1 )
16
-#define MSB_SET (1 << (sizeof(uint32_t) * 8 - 1))
+#define MSB_SET ((uint32_t)1 << (sizeof(uint32_t) * 8 - 1))
17
#define BLOCK_INACTIVE ~MSB_SET
18
#define BLOCK_LENGTH_MASK ~MSB_SET
19
#define BLOCK_ACTIVE MSB_SET
0 commit comments