Files
lammps/src/KSPACE/fft3d_wrap.cpp
2023-12-01 15:12:23 -05:00

93 lines
3.5 KiB
C++

// clang-format off
/* ----------------------------------------------------------------------
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
https://www.lammps.org/, Sandia National Laboratories
LAMMPS development team: developers@lammps.org
Copyright (2003) Sandia Corporation. Under the terms of Contract
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
certain rights in this software. This software is distributed under
the GNU General Public License.
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include "fft3d_wrap.h"
#include "error.h"
using namespace LAMMPS_NS;
/* ---------------------------------------------------------------------- */
FFT3d::FFT3d(LAMMPS *lmp, MPI_Comm comm, int nfast, int nmid, int nslow,
int in_ilo, int in_ihi, int in_jlo, int in_jhi,
int in_klo, int in_khi,
int out_ilo, int out_ihi, int out_jlo, int out_jhi,
int out_klo, int out_khi,
int scaled, int permute, int *nbuf, int usecollective) : Pointers(lmp)
{
#ifndef FFT_HEFFTE
plan = fft_3d_create_plan(comm,nfast,nmid,nslow,
in_ilo,in_ihi,in_jlo,in_jhi,in_klo,in_khi,
out_ilo,out_ihi,out_jlo,out_jhi,out_klo,out_khi,
scaled,permute,nbuf,usecollective);
if (plan == nullptr) error->one(FLERR,"Could not create 3d FFT plan");
#else
heffte::plan_options options = heffte::default_options<heffte_backend>();
options.algorithm = (usecollective == 0) ?
heffte::reshape_algorithm::p2p_plined
: heffte::reshape_algorithm::alltoallv;
options.use_reorder = (permute != 0);
hscale = (scaled == 0) ? heffte::scale::none : heffte::scale::full;
heffte_plan = std::unique_ptr<heffte::fft3d<heffte_backend>>(
new heffte::fft3d<heffte_backend>(
heffte::box3d<>({in_ilo,in_jlo,in_klo}, {in_ihi, in_jhi, in_khi}),
heffte::box3d<>({out_ilo,out_jlo,out_klo}, {out_ihi, out_jhi, out_khi}),
comm, options)
);
*nbuf = heffte_plan->size_workspace();
heffte_workspace.resize(heffte_plan->size_workspace());
#endif
}
/* ---------------------------------------------------------------------- */
FFT3d::~FFT3d()
{
#ifndef FFT_HEFFTE
fft_3d_destroy_plan(plan);
#endif
}
/* ---------------------------------------------------------------------- */
void FFT3d::compute(FFT_SCALAR *in, FFT_SCALAR *out, int flag)
{
#ifndef FFT_HEFFTE
fft_3d((FFT_DATA *) in,(FFT_DATA *) out,flag,plan);
#else
if (flag == 1)
heffte_plan->forward(reinterpret_cast<std::complex<FFT_SCALAR>*>(in),
reinterpret_cast<std::complex<FFT_SCALAR>*>(out),
reinterpret_cast<std::complex<FFT_SCALAR>*>(heffte_workspace.data())
);
else
heffte_plan->backward(reinterpret_cast<std::complex<FFT_SCALAR>*>(in),
reinterpret_cast<std::complex<FFT_SCALAR>*>(out),
reinterpret_cast<std::complex<FFT_SCALAR>*>(heffte_workspace.data()),
hscale
);
#endif
}
/* ---------------------------------------------------------------------- */
void FFT3d::timing1d(FFT_SCALAR *in, int nsize, int flag)
{
#ifndef FFT_HEFFTE
fft_1d_only((FFT_DATA *) in,nsize,flag,plan);
#endif
}