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
|
/*
* Copyright (c) 1997-1999, 2003 Massachusetts Institute of Technology
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include "fftw_f77_mpi.h"
#include "rfftw_mpi.h"
#ifdef F77_FUNC_ /* only compile wrappers if fortran mangling is known */
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/************************************************************************/
extern void fftw_reverse_int_array(int *a, int n);
void F77_FUNC_(rfftwnd_f77_mpi_create_plan,RFFTWND_F77_MPI_CREATE_PLAN)
(rfftwnd_mpi_plan *p, void *comm, int *rank, int *n, int *idir, int *flags)
{
fftw_direction dir = *idir < 0 ? FFTW_FORWARD : FFTW_BACKWARD;
fftw_reverse_int_array(n,*rank); /* column-major -> row-major */
*p = rfftwnd_mpi_create_plan(FFTW_MPI_COMM_F2C(comm),
*rank, n, dir, *flags);
fftw_reverse_int_array(n,*rank); /* reverse back */
}
void F77_FUNC_(rfftw2d_f77_mpi_create_plan,RFFTW2D_F77_MPI_CREATE_PLAN)
(rfftwnd_mpi_plan *p, void *comm, int *nx, int *ny, int *idir, int *flags)
{
fftw_direction dir = *idir < 0 ? FFTW_FORWARD : FFTW_BACKWARD;
*p = rfftw2d_mpi_create_plan(FFTW_MPI_COMM_F2C(comm), *ny,*nx,dir,*flags);
}
void F77_FUNC_(rfftw3d_f77_mpi_create_plan,RFFTW3D_F77_MPI_CREATE_PLAN)
(rfftwnd_mpi_plan *p, void *comm,
int *nx, int *ny, int *nz, int *idir, int *flags)
{
fftw_direction dir = *idir < 0 ? FFTW_FORWARD : FFTW_BACKWARD;
*p = rfftw3d_mpi_create_plan(FFTW_MPI_COMM_F2C(comm),
*nz,*ny,*nx,dir,*flags);
}
void F77_FUNC_(rfftwnd_f77_mpi_destroy_plan,RFFTWND_F77_MPI_DESTROY_PLAN)
(rfftwnd_mpi_plan *p)
{
rfftwnd_mpi_destroy_plan(*p);
}
void F77_FUNC_(rfftwnd_f77_mpi,RFFTWND_F77_MPI)
(rfftwnd_mpi_plan *p, int *n_fields, fftw_real *local_data,
fftw_real *work, int *use_work, int *ioutput_order)
{
fftwnd_mpi_output_order output_order = *ioutput_order ?
FFTW_TRANSPOSED_ORDER : FFTW_NORMAL_ORDER;
rfftwnd_mpi(*p, *n_fields, local_data, *use_work ? work : NULL,
output_order);
}
void F77_FUNC_(rfftwnd_f77_mpi_local_sizes,RFFTWND_F77_MPI_LOCAL_SIZES)
(rfftwnd_mpi_plan *p,
int *local_nx, int *local_x_start,
int *local_ny_after_transform,
int *local_y_start_after_transform,
int *total_local_size)
{
rfftwnd_mpi_local_sizes(*p, local_nx, local_x_start,
local_ny_after_transform,
local_y_start_after_transform,
total_local_size);
}
/****************************************************************************/
#ifdef __cplusplus
} /* extern "C" */
#endif /* __cplusplus */
#endif /* defined(F77_FUNC_) */
|