1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
|
/*
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
* Copyright (c) 2004-2005 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
* reserved.
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
* University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
/*
* This file is almost a complete re-write for Open MPI compared to the
* original mpiJava package. Its license and copyright are listed below.
* See <path to ompi/mpi/java/README> for more information.
*/
/*
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
/*
* File : mpi_CartComm.c
* Headerfile : mpi_CartComm.h
* Author : Sung-Hoon Ko, Xinying Li
* Created : Thu Apr 9 12:22:15 1998
* Revision : $Revision: 1.6 $
* Updated : $Date: 2003/01/16 16:39:34 $
* Copyright: Northeast Parallel Architectures Center
* at Syracuse University 1998
*/
#include "ompi_config.h"
#include <stdlib.h>
#ifdef HAVE_TARGETCONDITIONALS_H
#include <TargetConditionals.h>
#endif
#include "mpi.h"
#include "mpi_CartComm.h"
#include "mpiJava.h"
JNIEXPORT void JNICALL Java_mpi_CartComm_init(JNIEnv *env, jclass clazz)
{
ompi_java.CartParmsInit = (*env)->GetMethodID(env,
ompi_java.CartParmsClass, "<init>", "([I[Z[I)V");
ompi_java.ShiftParmsInit = (*env)->GetMethodID(env,
ompi_java.ShiftParmsClass, "<init>", "(II)V");
}
JNIEXPORT jobject JNICALL Java_mpi_CartComm_getTopo(
JNIEnv *env, jobject jthis, jlong comm)
{
int maxdims;
int rc = MPI_Cartdim_get((MPI_Comm)comm, &maxdims);
if(ompi_java_exceptionCheck(env, rc))
return NULL;
jintArray dims = (*env)->NewIntArray(env, maxdims);
jbooleanArray periods = (*env)->NewBooleanArray(env, maxdims);
jintArray coords = (*env)->NewIntArray(env, maxdims);
if(maxdims != 0)
{
jint *jDims, *jCoords;
jboolean *jPeriods;
int *cDims, *cCoords, *cPeriods;
ompi_java_getIntArray(env, dims, &jDims, &cDims);
ompi_java_getIntArray(env, coords, &jCoords, &cCoords);
ompi_java_getBooleanArray(env, periods, &jPeriods, &cPeriods);
rc = MPI_Cart_get((MPI_Comm)comm, maxdims, cDims, cPeriods, cCoords);
ompi_java_exceptionCheck(env, rc);
ompi_java_releaseIntArray(env, dims, jDims, cDims);
ompi_java_releaseIntArray(env, coords, jCoords, cCoords);
ompi_java_releaseBooleanArray(env, periods, jPeriods, cPeriods);
}
return (*env)->NewObject(env, ompi_java.CartParmsClass,
ompi_java.CartParmsInit, dims, periods, coords);
}
JNIEXPORT jobject JNICALL Java_mpi_CartComm_shift(
JNIEnv *env, jobject jthis, jlong comm, jint direction, jint disp)
{
int sr, dr;
int rc = MPI_Cart_shift((MPI_Comm)comm, direction, disp, &sr, &dr);
ompi_java_exceptionCheck(env, rc);
return (*env)->NewObject(env, ompi_java.ShiftParmsClass,
ompi_java.ShiftParmsInit, sr, dr);
}
JNIEXPORT jintArray JNICALL Java_mpi_CartComm_getCoords(
JNIEnv *env, jobject jthis, jlong comm, jint rank)
{
int maxdims;
int rc = MPI_Cartdim_get((MPI_Comm)comm, &maxdims);
if(ompi_java_exceptionCheck(env, rc))
return NULL;
jintArray coords = (*env)->NewIntArray(env, maxdims);
jint *jCoords;
int *cCoords;
ompi_java_getIntArray(env, coords, &jCoords, &cCoords);
rc = MPI_Cart_coords((MPI_Comm)comm, rank, maxdims, cCoords);
ompi_java_exceptionCheck(env, rc);
ompi_java_releaseIntArray(env, coords, jCoords, cCoords);
return coords;
}
JNIEXPORT jint JNICALL Java_mpi_CartComm_map(
JNIEnv *env, jobject jthis, jlong comm,
jintArray dims, jbooleanArray periods)
{
int nDims = (*env)->GetArrayLength(env, dims);
jint *jDims;
jboolean *jPeriods;
int *cDims, *cPeriods;
ompi_java_getIntArray(env, dims, &jDims, &cDims);
ompi_java_getBooleanArray(env, periods, &jPeriods, &cPeriods);
int newrank;
int rc = MPI_Cart_map((MPI_Comm)comm, nDims, cDims, cPeriods, &newrank);
ompi_java_exceptionCheck(env, rc);
ompi_java_forgetIntArray(env, dims, jDims, cDims);
ompi_java_forgetBooleanArray(env, periods, jPeriods, cPeriods);
return newrank;
}
JNIEXPORT jint JNICALL Java_mpi_CartComm_getRank(
JNIEnv *env, jobject jthis, jlong comm, jintArray coords)
{
jint *jCoords;
int *cCoords;
ompi_java_getIntArray(env, coords, &jCoords, &cCoords);
int rank;
int rc = MPI_Cart_rank((MPI_Comm)comm, cCoords, &rank);
ompi_java_exceptionCheck(env, rc);
ompi_java_forgetIntArray(env, coords, jCoords, cCoords);
return rank;
}
JNIEXPORT jlong JNICALL Java_mpi_CartComm_sub(
JNIEnv *env, jobject jthis, jlong comm, jbooleanArray remainDims)
{
jboolean *jRemainDims;
int *cRemainDims;
ompi_java_getBooleanArray(env, remainDims, &jRemainDims, &cRemainDims);
MPI_Comm newcomm;
int rc = MPI_Cart_sub((MPI_Comm)comm, cRemainDims, &newcomm);
ompi_java_exceptionCheck(env, rc);
ompi_java_forgetBooleanArray(env, remainDims, jRemainDims, cRemainDims);
return (jlong)newcomm;
}
JNIEXPORT void JNICALL Java_mpi_CartComm_createDims_1jni(
JNIEnv *env, jclass jthis, jint nNodes, jintArray dims)
{
int nDims = (*env)->GetArrayLength(env, dims);
jint *jDims;
int *cDims;
ompi_java_getIntArray(env, dims, &jDims, &cDims);
int rc = MPI_Dims_create(nNodes, nDims, cDims);
ompi_java_exceptionCheck(env, rc);
ompi_java_releaseIntArray(env, dims, jDims, cDims);
}
|