@@ -73,27 +73,27 @@ typedef enum cuBool_Status {
7373/** Generic lib hits for matrix processing */
7474typedef enum cuBool_Hint {
7575 /** No hints passed */
76- CUBOOL_HINT_NO = 0x0 ,
76+ CUBOOL_HINT_NO = 0 ,
7777 /** Force Cpu based backend usage */
78- CUBOOL_HINT_CPU_BACKEND = 0x1 ,
78+ CUBOOL_HINT_CPU_BACKEND = 1 ,
7979 /** Use managed gpu memory type instead of default (device) memory */
80- CUBOOL_HINT_GPU_MEM_MANAGED = 0x2 ,
80+ CUBOOL_HINT_GPU_MEM_MANAGED = 2 ,
8181 /** Mark input data as row-col sorted */
82- CUBOOL_HINT_VALUES_SORTED = 0x4 ,
82+ CUBOOL_HINT_VALUES_SORTED = 4 ,
8383 /** Accumulate result of the operation in the result matrix */
84- CUBOOL_HINT_ACCUMULATE = 0x8 ,
84+ CUBOOL_HINT_ACCUMULATE = 8 ,
8585 /** Finalize library state, even if not all resources were explicitly released */
86- CUBOOL_HINT_RELAXED_FINALIZE = 0x16 ,
86+ CUBOOL_HINT_RELAXED_FINALIZE = 16 ,
8787 /** Logging hint: log includes error message */
88- CUBOOL_HINT_LOG_ERROR = 0x32 ,
88+ CUBOOL_HINT_LOG_ERROR = 32 ,
8989 /** Logging hint: log includes warning message */
90- CUBOOL_HINT_LOG_WARNING = 0x64 ,
90+ CUBOOL_HINT_LOG_WARNING = 64 ,
9191 /** Logging hint: log includes all types of messages */
92- CUBOOL_HINT_LOG_ALL = 0x128 ,
92+ CUBOOL_HINT_LOG_ALL = 128 ,
9393 /** No duplicates in the build data */
94- CUBOOL_HINT_NO_DUPLICATES = 0x256 ,
94+ CUBOOL_HINT_NO_DUPLICATES = 256 ,
9595 /** Performs time measurement and logs elapsed operation time */
96- CUBOOL_HINT_TIME_CHECK = 0x512
96+ CUBOOL_HINT_TIME_CHECK = 512
9797} cuBool_Hint ;
9898
9999/** Hit mask */
0 commit comments