📄 mpidi_ch3_post.h
字号:
/* -*- 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: These sizes need to be documented at least, and it should be easier to change them, at least at configure/build time *//* #define MPIDI_CH3_EAGER_MAX_MSG_SIZE (1500 - sizeof(MPIDI_CH3_Pkt_t)) */#define MPIDI_CH3_EAGER_MAX_MSG_SIZE 128000/* * 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())/* FIXME: Are these the same definitions used by all channels? If so, they should be defined in the same place (and it would make sense for the progress routines in the ch3 device to have the same interface independent of channel) */#if defined(USE_FIXED_SPIN_WAITS) || !defined(MPID_CPU_TICK) || defined(USE_FIXED_ACTIVE_PROGRESS)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#endif /* !defined(MPICH_MPIDI_CH3_POST_H_INCLUDED) */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -