⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mpikeywordsandfunctions.java

📁 基于JAVA的并行程序编辑器研究与设计 并行编程在高性能计算领域的应用越来越广泛。国家863计划项目“网格服务环境结点建设及其支撑技术研究”的子课题 “用户开发环境研究”
💻 JAVA
字号:
/*
 * MpiKeyWordsAndFunctions.java
 *
 * Created on 2007年6月1日, 下午12:48
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package lxz;

/**
 *
 * @author lxz
 */
public class MpiKeyWordsAndFunctions {
    
    public static String[] mpiKeyWords = {
        "MPI_CHAR", 		"MPI_BYTE",
        "MPI_SHORT",		"MPI_INT",
        "MPI_LONG",             "MPI_FLOAT",
        "MPI_DOUBLE",		"MPI_UNSIGNED_CHAR",
        "MPI_UNSIGNED_SHORT",	"MPI_UNSIGNED",
        "MPI_UNSIGNED_LONG",	"MPI_LONG_DOUBLE",
        "MPI_FLOAT_INT",        "MPI_LONG_INT",
        "MPI_DOUBLE_INT",       "MPI_SHORT_INT",
        "MPI_LONG_DOUBLE_INT",  "MPI_SUM",
        "MPI_LONG_LONG_INT",	"MPI_COMM_WORLD",
        "MPI_COMM_SELF",        "MPI_GROUP_EMPTY",
        "MPI_MAX",              "MPI_MIN",
        "MPI_LAND", 		"MPI_BAND",
        "MPI_LOR",  		"MPI_BOR",
        "MPI_LXOR",             "MPI_BXOR",
        "MPI_MINLOC",		"MPI_MAXLOC"   
    };
    public static String[] mpiFunctions = {
        "MPI_Comm_size",                    "MPI_Finalize",  
        "MPI_Comm_rank",                    "MPI_Init",
        "MPI_Rsend",                        "MPI_Send",
        "MPI_Group_range_incl",             "MPI_Group_rank",
        "MPI_Group_size",                   "MPI_Get_processor_name",
        "MPI_Group_union",                  "MPI_Ibsend",   
        "MPI_Info_delete",                  "MPI_Info_dup",
        "MPI_Info_free",                    "MPI_Request_free",
        "MPI_Info_get",                     "MPI_Info_get_nkeys",
        "MPI_Info_get_nthkey",              "MPI_Info_get_valuelen",
        "MPI_Info_set",                     "MPI_Scatterv",
        "MPI_Init_thread",                  "MPI_Initialized",
        "MPI_Intercomm_create",             "MPI_Info_create",
        "MPI_Intercomm_merge",              "MPI_Iprobe",
        "MPI_Irecv",                        "MPI_Irsend",
        "MPI_Isend",                        "MPI_Issend",
        "MPI_Keyval_create",                "MPI_Keyval_free",
        "MPI_NULL_COPY_FN",                 "MPI_NULL_DELETE_FN",
        "MPI_Op_create",                    "MPI_Op_free",
        "MPI_Pack",                         "MPI_Pack_size",
        "MPI_Pcontrol",                     "MPI_Probe",
        "MPI_Recv",                         "MPI_Recv_init",
        "MPI_Reduce",                       "MPI_Reduce_scatter", 
        "MPI_Rsend_init",                   "MPI_Scan",
        "MPI_Scatter"
    };       
}

⌨️ 快捷键说明

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