topo.h
来自「刚才是说明 现在是安装程序在 LINUX环境下进行编程的MPICH安装文件」· C头文件 代码 · 共 35 行
H
35 行
/* -*- Mode: C; c-basic-offset:4 ; -*- *//* * * (C) 2001 by Argonne National Laboratory. * See COPYRIGHT in top-level directory. */typedef struct { int nnodes; int nedges; int *index; int *edges;} MPIR_Graph_topology;typedef struct { int nnodes; /* Product of dims[*], gives the size of the topology */ int ndims; int *dims; int *periodic; int *position;} MPIR_Cart_topology;typedef struct { MPIR_Topo_type kind; union { MPIR_Graph_topology graph; MPIR_Cart_topology cart; } topo;} MPIR_Topology;MPIR_Topology *MPIR_Topology_get( MPID_Comm * );int MPIR_Topology_put( MPID_Comm *, MPIR_Topology * );#define MAX_CART_DIM 16
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?