Zoltan2
Loading...
Searching...
No Matches
Zoltan2_Directory_Impl.hpp File Reference
Include dependency graph for Zoltan2_Directory_Impl.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

namespace  Zoltan2
 Created by mbenlioglu on Aug 31, 2020.

Macros

#define ZOLTAN2_PRINT_INFO(proc, yo, str)
#define ZOLTAN2_TRACE(proc, where, yo, str)
#define ZOLTAN2_TRACE_IN(proc, yo, str)
#define ZOLTAN2_TRACE_OUT(proc, 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)

Macro Definition Documentation

◆ ZOLTAN2_PRINT_INFO

#define ZOLTAN2_PRINT_INFO ( proc,
yo,
str )
Value:
printf("ZOLTAN2 (Processor %d) %s: %s\n", (proc), (yo), \
((str) != NULL ? (char *)(str) : " "));

Definition at line 22 of file Zoltan2_Directory_Impl.hpp.

◆ ZOLTAN2_TRACE

#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 26 of file Zoltan2_Directory_Impl.hpp.

◆ ZOLTAN2_TRACE_IN

#define ZOLTAN2_TRACE_IN ( proc,
yo,
str )
Value:
ZOLTAN2_TRACE((proc),"Entering",(yo),(str));
#define ZOLTAN2_TRACE(proc, where, yo, str)

Definition at line 30 of file Zoltan2_Directory_Impl.hpp.

◆ ZOLTAN2_TRACE_OUT

#define ZOLTAN2_TRACE_OUT ( proc,
yo,
str )
Value:
ZOLTAN2_TRACE((proc),"Exiting",(yo),(str));

Definition at line 33 of file Zoltan2_Directory_Impl.hpp.

◆ ZOLTAN2_DD_FIND_MSG_TAG

#define ZOLTAN2_DD_FIND_MSG_TAG   29137 /* needs 3 consecutive values */

Definition at line 38 of file Zoltan2_Directory_Impl.hpp.

◆ ZOLTAN2_DD_UPDATE_MSG_TAG

#define ZOLTAN2_DD_UPDATE_MSG_TAG   29140 /* needs 2 consecutive values */

Definition at line 39 of file Zoltan2_Directory_Impl.hpp.

◆ ZOLTAN2_DD_REMOVE_MSG_TAG

#define ZOLTAN2_DD_REMOVE_MSG_TAG   29142 /* needs 2 consecutive values */

Definition at line 40 of file Zoltan2_Directory_Impl.hpp.

◆ ZOLTAN2_DD_RESIZE_MSG_TAG

#define ZOLTAN2_DD_RESIZE_MSG_TAG   29150 /* */

Definition at line 41 of file Zoltan2_Directory_Impl.hpp.

◆ ZOLTAN2_ROTL32

#define ZOLTAN2_ROTL32 ( x,
r )
Value:
(uint32_t) \
(((uint32_t)(x) << (int8_t)(r)) | ((uint32_t)(x) >> (32 - (int8_t)(r))))