mpidi_ch3_post.h

来自「fortran并行计算包」· C头文件 代码 · 共 37 行

H
37
字号
/* -*- Mode: C; c-basic-offset:4 ; -*- *//* *  (C) 2001 by Argonne National Laboratory. *      See COPYRIGHT in top-level directory. */#if !defined(MPICH_MPIDI_CH3_POST_H_INCLUDED)#define MPICH_MPIDI_CH3_POST_H_INCLUDED/* FIXME: We need to document all of these parameters.  There should be no    ifdef that is not documented, other than those set by configure *//* * MPIDI_CH3_EAGER_MAX_MSG_SIZE - threshold for switch between the eager and  * rendezvous protocolsa */#if !defined(MPIDI_CH3_EAGER_MAX_MSG_SIZE)#   define MPIDI_CH3_EAGER_MAX_MSG_SIZE (256 * 1024)#endif/* * CH3 Progress routines (implemented as macros for performanace) */#define MPIDI_CH3_Progress_start(progress_state_)			\{									\    (progress_state_)->ch.completion_count = MPIDI_CH3I_progress_completion_count;\}#define MPIDI_CH3_Progress_end(progress_state_)#define MPIDI_CH3_Progress_poke() (MPIDI_CH3_Progress_test())int MPIDI_CH3I_Progress(int blocking, MPID_Progress_state *state);#define MPIDI_CH3_Progress_test() MPIDI_CH3I_Progress(FALSE, NULL)#define MPIDI_CH3_Progress_wait(state) MPIDI_CH3I_Progress(TRUE, state)#endif /* !defined(MPICH_MPIDI_CH3_POST_H_INCLUDED) */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?