Go to the source code of this file.
|
#define | ZOLTAN2_PRINT_INFO(proc, yo, str) |
|
#define | ZOLTAN2_TRACE(proc, where, yo, str) |
|
#define | ZOLTAN2_TRACE_IN(proc, yo, str) ZOLTAN2_TRACE((proc),"Entering",(yo),(str)); |
|
#define | ZOLTAN2_TRACE_OUT(proc, yo, str) ZOLTAN2_TRACE((proc),"Exiting",(yo),(str)); |
|
#define | ZOLTAN2_DD_FIND_MSG_TAG 29137 /* needs 3 consecutive values */ |
|
#define | ZOLTAN2_DD_UPDATE_MSG_TAG 29140 /* needs 2 consecutive values */ |
|
#define | ZOLTAN2_DD_REMOVE_MSG_TAG 29142 /* needs 2 consecutive values */ |
|
#define | ZOLTAN2_DD_RESIZE_MSG_TAG 29150 /* */ |
|
#define | ZOLTAN2_ROTL32(x, r) |
|
#define ZOLTAN2_PRINT_INFO |
( |
|
proc, |
|
|
|
yo, |
|
|
|
str |
|
) |
| |
Value:printf("ZOLTAN2 (Processor %d) %s: %s\n", (proc), (yo), \
((str) != NULL ? (char *)(str) : " "));
Definition at line 59 of file Zoltan2_Directory_Impl.hpp.
#define ZOLTAN2_TRACE |
( |
|
proc, |
|
|
|
where, |
|
|
|
yo, |
|
|
|
str |
|
) |
| |
Value:printf("ZOLTAN (Processor %d) %s %s %s\n", (proc), (where), (yo), \
((str) != NULL ? (char *)(str) : " "));
Definition at line 63 of file Zoltan2_Directory_Impl.hpp.
#define ZOLTAN2_TRACE_IN |
( |
|
proc, |
|
|
|
yo, |
|
|
|
str |
|
) |
| ZOLTAN2_TRACE((proc),"Entering",(yo),(str)); |
#define ZOLTAN2_TRACE_OUT |
( |
|
proc, |
|
|
|
yo, |
|
|
|
str |
|
) |
| ZOLTAN2_TRACE((proc),"Exiting",(yo),(str)); |
#define ZOLTAN2_DD_FIND_MSG_TAG 29137 /* needs 3 consecutive values */ |
#define ZOLTAN2_DD_UPDATE_MSG_TAG 29140 /* needs 2 consecutive values */ |
#define ZOLTAN2_DD_REMOVE_MSG_TAG 29142 /* needs 2 consecutive values */ |
#define ZOLTAN2_DD_RESIZE_MSG_TAG 29150 /* */ |
#define ZOLTAN2_ROTL32 |
( |
|
x, |
|
|
|
r |
|
) |
| |
Value:(uint32_t) \
(((uint32_t)(x) << (int8_t)(r)) | ((uint32_t)(x) >> (32 - (int8_t)(r))))