dtfft_interface_mkl_native_m.F90 Source File


Files dependent on this one

sourcefile~~dtfft_interface_mkl_native_m.f90~~AfferentGraph sourcefile~dtfft_interface_mkl_native_m.f90 dtfft_interface_mkl_native_m.F90 sourcefile~dtfft_executor_mkl_m.f90 dtfft_executor_mkl_m.F90 sourcefile~dtfft_executor_mkl_m.f90->sourcefile~dtfft_interface_mkl_native_m.f90 sourcefile~dtfft_plan.f90 dtfft_plan.F90 sourcefile~dtfft_plan.f90->sourcefile~dtfft_executor_mkl_m.f90 sourcefile~dtfft.f90 dtfft.F90 sourcefile~dtfft.f90->sourcefile~dtfft_plan.f90 sourcefile~dtfft_api.f90 dtfft_api.F90 sourcefile~dtfft_api.f90->sourcefile~dtfft_plan.f90

Source Code

!------------------------------------------------------------------------------------------------
! Copyright (c) 2021, Oleg Shatrov
! All rights reserved.
! This file is part of dtFFT library.

! dtFFT 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 3 of the License, or
! (at your option) any later version.

! dtFFT 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, see <https://www.gnu.org/licenses/>.
!------------------------------------------------------------------------------------------------
#include "mkl_dfti.f90"
module dtfft_interface_mkl_native_m
!! This module creates native interface with MKL library
use MKL_DFTI
implicit none
private
public :: DFTI_NO_ERROR,                &
          DFTI_DOUBLE, DFTI_SINGLE,     &
          DFTI_NUMBER_OF_TRANSFORMS,    &
          DFTI_PLACEMENT,               &
          DFTI_INPUT_DISTANCE,          &
          DFTI_OUTPUT_DISTANCE,         &
          DFTI_CONJUGATE_EVEN_STORAGE,  &
          DFTI_COMPLEX_COMPLEX,         &
          DFTI_COMPLEX,                 &
          DFTI_REAL,                    &
          DFTI_INPLACE,                 &
          DFTI_NOT_INPLACE,             &
          DFTI_INPUT_STRIDES,           &
          DFTI_OUTPUT_STRIDES
end module dtfft_interface_mkl_native_m