LCOV - code coverage report
Current view: top level - test/Fortran/elpa2/legacy_interface - legacy_complex_api.F90 (source / functions) Hit Total Coverage
Test: coverage_50ab7a7628bba174fc62cee3ab72b26e81f87fe5.info Lines: 60 76 78.9 %
Date: 2018-01-10 09:29:53 Functions: 2 2 100.0 %

          Line data    Source code
       1             : !    This file is part of ELPA.
       2             : !
       3             : !    The ELPA library was originally created by the ELPA consortium,
       4             : !    consisting of the following organizations:
       5             : !
       6             : !    - Max Planck Computing and Data Facility (MPCDF), formerly known as
       7             : !      Rechenzentrum Garching der Max-Planck-Gesellschaft (RZG),
       8             : !    - Bergische Universität Wuppertal, Lehrstuhl für angewandte
       9             : !      Informatik,
      10             : !    - Technische Universität München, Lehrstuhl für Informatik mit
      11             : !      Schwerpunkt Wissenschaftliches Rechnen ,
      12             : !    - Fritz-Haber-Institut, Berlin, Abt. Theorie,
      13             : !    - Max-Plack-Institut für Mathematik in den Naturwissenschaften,
      14             : !      Leipzig, Abt. Komplexe Strukutren in Biologie und Kognition,
      15             : !      and
      16             : !    - IBM Deutschland GmbH
      17             : !
      18             : !
      19             : !    More information can be found here:
      20             : !    http://elpa.mpcdf.mpg.de/
      21             : !
      22             : !    ELPA is free software: you can redistribute it and/or modify
      23             : !    it under the terms of the version 3 of the license of the
      24             : !    GNU Lesser General Public License as published by the Free
      25             : !    Software Foundation.
      26             : !
      27             : !    ELPA is distributed in the hope that it will be useful,
      28             : !    but WITHOUT ANY WARRANTY; without even the implied warranty of
      29             : !    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      30             : !    GNU Lesser General Public License for more details.
      31             : !
      32             : !    You should have received a copy of the GNU Lesser General Public License
      33             : !    along with ELPA.  If not, see <http://www.gnu.org/licenses/>
      34             : !
      35             : !    ELPA reflects a substantial effort on the part of the original
      36             : !    ELPA consortium, and we ask you to respect the spirit of the
      37             : !    license that we chose: i.e., please contribute any changes you
      38             : !    may have back to the original ELPA library distribution, and keep
      39             : !    any derivatives of ELPA under the same license that we chose for
      40             : !    the original distribution, the GNU Lesser General Public License.
      41             : !
      42             : !
      43             : #include "config-f90.h"
      44             : !>
      45             : !> Fortran test programm to demonstrates the use of
      46             : !> ELPA 2 complex case library.
      47             : !> If "HAVE_REDIRECT" was defined at build time
      48             : !> the stdout and stderr output of each MPI task
      49             : !> can be redirected to files if the environment
      50             : !> variable "REDIRECT_ELPA_TEST_OUTPUT" is set
      51             : !> to "true".
      52             : !>
      53             : !> By calling executable [arg1] [arg2] [arg3] [arg4]
      54             : !> one can define the size (arg1), the number of
      55             : !> Eigenvectors to compute (arg2), and the blocking (arg3).
      56             : !> If these values are not set default values (500, 150, 16)
      57             : !> are choosen.
      58             : !> If these values are set the 4th argument can be
      59             : !> "output", which specifies that the EV's are written to
      60             : !> an ascii file.
      61             : !>
      62             : !> The complex ELPA 2 kernel is set in this program via
      63             : !> the API call. However, this can be overriden by setting
      64             : !> the environment variable "COMPLEX_ELPA_KERNEL" to an
      65             : !> appropiate value.
      66             : !>
      67         288 : program test_complex2_choose_kernel_with_api_double_precision
      68             : 
      69             : !-------------------------------------------------------------------------------
      70             : ! Standard eigenvalue problem - COMPLEX version
      71             : !
      72             : ! This program demonstrates the use of the ELPA module
      73             : ! together with standard scalapack routines
      74             : !
      75             : ! Copyright of the original code rests with the authors inside the ELPA
      76             : ! consortium. The copyright of any additional modifications shall rest
      77             : ! with their original authors, but shall adhere to the licensing terms
      78             : ! distributed along with the original code in the file "COPYING".
      79             : !-------------------------------------------------------------------------------
      80             : 
      81         288 :    use elpa1
      82             :    use elpa2
      83             : 
      84             :    use elpa_utilities, only : error_unit
      85             :    use elpa2_utilities
      86             :    use test_read_input_parameters
      87             :    use test_check_correctness
      88             :    use test_setup_mpi
      89             :    use test_blacs_infrastructure
      90             :    use test_prepare_matrix
      91             :    use test_util
      92             : 
      93             : #ifdef HAVE_REDIRECT
      94             :   use test_redirect
      95             : #endif
      96             : 
      97             :  use test_output_type
      98             : 
      99             :    implicit none
     100             : 
     101             :    !-------------------------------------------------------------------------------
     102             :    ! Please set system size parameters below!
     103             :    ! na:   System size
     104             :    ! nev:  Number of eigenvectors to be calculated
     105             :    ! nblk: Blocking factor in block cyclic distribution
     106             :    !-------------------------------------------------------------------------------
     107             : 
     108             :    integer(kind=ik)              :: nblk
     109             :    integer(kind=ik)              :: na, nev
     110             :    integer(kind=ik)              :: np_rows, np_cols, na_rows, na_cols
     111             : 
     112             :    integer(kind=ik)              :: myid, nprocs, my_prow, my_pcol, mpi_comm_rows, mpi_comm_cols
     113             :    integer(kind=ik)              :: i, mpierr, my_blacs_ctxt, sc_desc(9), info, nprow, npcol
     114             : 
     115             :    integer(kind=ik), external    :: numroc
     116             : 
     117         288 :    real(kind=rk8), allocatable    :: ev(:)
     118             : 
     119         576 :    complex(kind=ck8), allocatable :: a(:,:), z(:,:), as(:,:)
     120             : 
     121             :    complex(kind=ck8), parameter   :: CZERO = (0._rk8,0._rk8), CONE = (1._rk8,0._rk8)
     122             : 
     123             :    integer(kind=ik)              :: STATUS
     124             : #ifdef WITH_OPENMP
     125             :    integer(kind=ik)              :: omp_get_max_threads,  required_mpi_thread_level, provided_mpi_thread_level
     126             : #endif
     127             :    logical                       :: successELPA, success
     128             :    logical                       :: gpuAvailable
     129             :    type(output_t)                :: write_to_file
     130             :    character(len=8)              :: task_suffix
     131             :    integer(kind=ik)              :: j
     132             : 
     133             : #define DOUBLE_PRECISION_COMPLEX 1
     134             : 
     135         288 :    successELPA   = .true.
     136         288 :    gpuAvailable  = .false.
     137             : 
     138         288 :    call read_input_parameters(na, nev, nblk, write_to_file)
     139             : 
     140             :    !-------------------------------------------------------------------------------
     141             :    !  MPI Initialization
     142         288 :    call setup_mpi(myid, nprocs)
     143             : 
     144         288 :    STATUS = 0
     145             : 
     146             : #define COMPLEXCASE
     147             : #include "../../elpa_print_headers.F90"
     148             : 
     149             :    !-------------------------------------------------------------------------------
     150             :    ! Selection of number of processor rows/columns
     151             :    ! We try to set up the grid square-like, i.e. start the search for possible
     152             :    ! divisors of nprocs with a number next to the square root of nprocs
     153             :    ! and decrement it until a divisor is found.
     154             : 
     155         288 :    do np_cols = NINT(SQRT(REAL(nprocs))),2,-1
     156           0 :       if(mod(nprocs,np_cols) == 0 ) exit
     157             :    enddo
     158             :    ! at the end of the above loop, nprocs is always divisible by np_cols
     159             : 
     160         288 :    np_rows = nprocs/np_cols
     161             : 
     162         288 :    if(myid==0) then
     163         192 :       print *
     164         192 :       print '(a)','Standard eigenvalue problem - COMPLEX version'
     165             : #ifdef WITH_GPU_VERSION
     166             :         print *," with GPU version"
     167             : #endif
     168         192 :       print *
     169         192 :       print '(3(a,i0))','Matrix size=',na,', Number of eigenvectors=',nev,', Block size=',nblk
     170         192 :       print '(3(a,i0))','Number of processor rows=',np_rows,', cols=',np_cols,', total=',nprocs
     171         192 :       print *
     172         192 :       print *, "This is an example how to determine the ELPA2 kernel with"
     173         192 :       print *, "an api call. Note, however, that setting the kernel via"
     174         192 :       print *, "an environment variable will always take precedence over"
     175         192 :       print *, "everything else! "
     176         192 :       print *
     177             : #ifndef HAVE_ENVIRONMENT_CHECKING
     178             :       print *, " Notice that it is not possible with this build to set the "
     179             :       print *, " kernel via an environment variable! To change this re-install"
     180             :       print *, " the library and have a look at the log files"
     181             : #endif
     182             : #ifndef WITH_FIXED_COMPLEX_KERNEL
     183         192 :       print *, " The settings are: COMPLEX_ELPA_KERNEL_GENERIC_SIMPLE"
     184             : #else /* WITH_FIXED_COMPLEX_KERNEL */
     185             : 
     186             : #ifdef WITH_COMPLEX_GENERIC_KERNEL
     187             :       print *, " The settings are: COMPLEX_ELPA_KERNEL_GENERIC"
     188             : #endif
     189             : 
     190             : #ifdef WITH_COMPLEX_GENERIC_SIMPLE_KERNEL
     191             :       print *, " The settings are: COMPLEX_ELPA_KERNEL_GENERIC_SIMPLE"
     192             : #endif
     193             : 
     194             : #ifdef WITH_COMPLEX_SSE_ASSEMBLY_KERNEL
     195             :       print *, " The settings are: COMPLEX_ELPA_KERNEL_SSE"
     196             : #endif
     197             : #ifdef WITH_COMPLEX_SSE_BLOCK1_KERNEL
     198             :       print *, " The settings are: COMPLEX_ELPA_KERNEL_SSE_BLOCK1"
     199             : #endif
     200             : 
     201             : #ifdef WITH_COMPLEX_SSE_BLOCK2_KERNEL
     202             :       print *, " The settings are: COMPLEX_ELPA_KERNEL_SSE_BLOCK2"
     203             : #endif
     204             : 
     205             : 
     206             : #ifdef WITH_COMPLEX_AVX_BLOCK1_KERNEL
     207             :       print *, " The settings are: COMPLEX_ELPA_KERNEL_AVX_BLOCK1"
     208             : #endif
     209             : 
     210             : #ifdef WITH_COMPLEX_AVX_BLOCK2_KERNEL
     211             :       print *, " The settings are: COMPLEX_ELPA_KERNEL_AVX_BLOCK2"
     212             : #endif
     213             : 
     214             : #ifdef WITH_COMPLEX_AVX2_BLOCK1_KERNEL
     215             :       print *, " The settings are: COMPLEX_ELPA_KERNEL_AVX2_BLOCK1"
     216             : #endif
     217             : 
     218             : #ifdef WITH_COMPLEX_AVX2_BLOCK2_KERNEL
     219             :       print *, " The settings are: COMPLEX_ELPA_KERNEL_AVX2_BLOCK2"
     220             : #endif
     221             : 
     222             : #ifdef WITH_COMPLEX_AVX512_BLOCK1_KERNEL
     223             :       print *, " The settings are: COMPLEX_ELPA_KERNEL_AVX512_BLOCK1"
     224             : #endif
     225             : 
     226             : #ifdef WITH_COMPLEX_AVX512_BLOCK2_KERNEL
     227             :       print *, " The settings are: COMPLEX_ELPA_KERNEL_AVX512_BLOCK2"
     228             : #endif
     229             : 
     230             : #ifdef WITH_GPU_VERSION
     231             :       print *, " The settings are: COMPLEX_ELPA_KERNEL_GPU"
     232             : #endif
     233             : 
     234             : #endif /* WITH_FIXED_COMPLEX_KERNEL */
     235             : 
     236             : 
     237             : 
     238         192 :       print *
     239             :    endif
     240             : 
     241             :    !-------------------------------------------------------------------------------
     242             :    ! Set up BLACS context and MPI communicators
     243             :    !
     244             :    ! The BLACS context is only necessary for using Scalapack.
     245             :    !
     246             :    ! For ELPA, the MPI communicators along rows/cols are sufficient,
     247             :    ! and the grid setup may be done in an arbitrary way as long as it is
     248             :    ! consistent (i.e. 0<=my_prow<np_rows, 0<=my_pcol<np_cols and every
     249             :    ! process has a unique (my_prow,my_pcol) pair).
     250             : 
     251             :    call set_up_blacsgrid(mpi_comm_world, np_rows, np_cols, 'C', &
     252         288 :                          my_blacs_ctxt, my_prow, my_pcol)
     253             : 
     254         288 :    if (myid==0) then
     255         192 :      print '(a)','| Past BLACS_Gridinfo.'
     256             :    end if
     257             : 
     258             :    ! All ELPA routines need MPI communicators for communicating within
     259             :    ! rows or columns of processes, these are set in elpa_get_communicators
     260             : 
     261             :    mpierr = elpa_get_communicators(mpi_comm_world, my_prow, my_pcol, &
     262         288 :                                    mpi_comm_rows, mpi_comm_cols)
     263             : 
     264         288 :    if (myid==0) then
     265         192 :      print '(a)','| Past split communicator setup for rows and columns.'
     266             :    end if
     267             : 
     268             :    ! Determine the necessary size of the distributed matrices,
     269             :    ! we use the Scalapack tools routine NUMROC for that.
     270             : 
     271             :    call set_up_blacs_descriptor(na ,nblk, my_prow, my_pcol, np_rows, np_cols, &
     272         288 :                                 na_rows, na_cols, sc_desc, my_blacs_ctxt, info)
     273             : 
     274             : 
     275         288 :    if (myid==0) then
     276         192 :      print '(a)','| Past scalapack descriptor setup.'
     277             :    end if
     278             :    !-------------------------------------------------------------------------------
     279             :    ! Allocate matrices and set up a test matrix for the eigenvalue problem
     280         288 :    allocate(a (na_rows,na_cols))
     281         288 :    allocate(z (na_rows,na_cols))
     282         288 :    allocate(as(na_rows,na_cols))
     283             : 
     284         288 :    allocate(ev(na))
     285             : 
     286         288 :    call prepare_matrix_random(na, myid, sc_desc, a, z, as)
     287             : 
     288             :    ! set print flag in elpa1
     289         288 :    elpa_print_times = .true.
     290             : 
     291             :    !-------------------------------------------------------------------------------
     292             :    ! Calculate eigenvalues/eigenvectors
     293             : 
     294         288 :    if (myid==0) then
     295         192 :      print '(a)','| Entering two-stage ELPA solver ... '
     296         192 :      print *
     297             :    end if
     298             : 
     299             : 
     300             :    ! ELPA is called a kernel specification in the API
     301             : #ifdef WITH_MPI
     302         192 :    call mpi_barrier(mpi_comm_world, mpierr) ! for correct timings only
     303             : #endif
     304             :    successELPA = elpa_solve_evp_complex_2stage_double(na, nev, a, na_rows, ev, z, na_rows, nblk, &
     305             :                                  na_cols, mpi_comm_rows, mpi_comm_cols, mpi_comm_world, &
     306             : #ifndef WITH_FIXED_COMPLEX_KERNEL
     307         288 :                                  COMPLEX_ELPA_KERNEL_GENERIC_SIMPLE)
     308             : #else /* WITH_FIXED_COMPLEX_KERNEL */
     309             : 
     310             : #ifdef  WITH_COMPLEX_GENERIC_KERNEL
     311             :                                  COMPLEX_ELPA_KERNEL_GENERIC)
     312             : #endif
     313             : 
     314             : #ifdef  WITH_COMPLEX_GENERIC_SIMPLE_KERNEL
     315             :                                  COMPLEX_ELPA_KERNEL_GENERIC_SIMPLE)
     316             : #endif
     317             : 
     318             : #ifdef  WITH_COMPLEX_SSE_ASSEMBLY_KERNEL
     319             :                                  COMPLEX_ELPA_KERNEL_SSE)
     320             : #endif
     321             : 
     322             : #ifdef  WITH_COMPLEX_SSE_BLOCK2_KERNEL
     323             :                                  COMPLEX_ELPA_KERNEL_SSE_BLOCK2)
     324             : #else
     325             : #ifdef  WITH_COMPLEX_SSE_BLOCK1_KERNEL
     326             :                                  COMPLEX_ELPA_KERNEL_SSE_BLOCK1)
     327             : #endif
     328             : #endif
     329             : 
     330             : #ifdef  WITH_COMPLEX_AVX_BLOCK2_KERNEL
     331             :                                  COMPLEX_ELPA_KERNEL_AVX_BLOCK2)
     332             : #else
     333             : #ifdef  WITH_COMPLEX_AVX_BLOCK1_KERNEL
     334             :                                  COMPLEX_ELPA_KERNEL_AVX_BLOCK1)
     335             : #endif
     336             : #endif
     337             : 
     338             : #ifdef  WITH_COMPLEX_AVX2_BLOCK2_KERNEL
     339             :                                  COMPLEX_ELPA_KERNEL_AVX2_BLOCK2)
     340             : #else
     341             : #ifdef  WITH_COMPLEX_AVX2_BLOCK1_KERNEL
     342             :                                  COMPLEX_ELPA_KERNEL_AVX2_BLOCK1)
     343             : #endif
     344             : #endif
     345             : 
     346             : #ifdef  WITH_COMPLEX_AVX512_BLOCK2_KERNEL
     347             :                                  COMPLEX_ELPA_KERNEL_AVX512_BLOCK2)
     348             : #else
     349             : #ifdef  WITH_COMPLEX_AVX512_BLOCK1_KERNEL
     350             :                                  COMPLEX_ELPA_KERNEL_AVX512_BLOCK1)
     351             : #endif
     352             : #endif
     353             : 
     354             : #ifdef  WITH_GPU_VERSION
     355             :                                  COMPLEX_ELPA_KERNEL_GPU)
     356             : #endif
     357             : 
     358             : #endif /* WITH_FIXED_COMPLEX_KERNEL */
     359             : 
     360         288 :    if (.not.(successELPA)) then
     361           0 :       write(error_unit,*) "solve_evp_complex_2stage produced an error! Aborting..."
     362             : #ifdef WITH_MPI
     363           0 :       call MPI_ABORT(mpi_comm_world, 1, mpierr)
     364             : #else
     365           0 :       call exit(1)
     366             : #endif
     367             :    endif
     368             : 
     369         288 :    if(myid == 0) print *,'Time transform to tridi :',time_evp_fwd
     370         288 :    if(myid == 0) print *,'Time solve tridi        :',time_evp_solve
     371         288 :    if(myid == 0) print *,'Time transform back EVs :',time_evp_back
     372         288 :    if(myid == 0) print *,'Total time (sum above)  :',time_evp_back+time_evp_solve+time_evp_fwd
     373             : 
     374         288 :    if(write_to_file%eigenvectors) then
     375           0 :      write(unit = task_suffix, fmt = '(i8.8)') myid
     376           0 :      open(17,file="EVs_complex2_out_task_"//task_suffix(1:8)//".txt",form='formatted',status='new')
     377           0 :      write(17,*) "Part of eigenvectors: na_rows=",na_rows,"of na=",na," na_cols=",na_cols," of na=",na
     378             : 
     379           0 :      do i=1,na_rows
     380           0 :        do j=1,na_cols
     381           0 :          write(17,*) "row=",i," col=",j," element of eigenvector=",z(i,j)
     382             :        enddo
     383             :      enddo
     384           0 :      close(17)
     385             :    endif
     386             : 
     387         288 :    if(write_to_file%eigenvalues) then
     388           0 :       if (myid == 0) then
     389           0 :          open(17,file="Eigenvalues_complex2_out.txt",form='formatted',status='new')
     390           0 :          do i=1,na
     391           0 :             write(17,*) i,ev(i)
     392             :          enddo
     393           0 :          close(17)
     394             :       endif
     395             :    endif
     396             : 
     397             : 
     398             :    !-------------------------------------------------------------------------------
     399             :    ! Test correctness of result (using plain scalapack routines)
     400         288 :    status = check_correctness_evp_numeric_residuals(na, nev, as, z, ev, sc_desc, nblk, myid, np_rows, np_cols, my_prow, my_pcol)
     401             : 
     402         288 :    deallocate(a)
     403         288 :    deallocate(as)
     404             : 
     405         288 :    deallocate(z)
     406         288 :    deallocate(ev)
     407             : 
     408             : #ifdef WITH_MPI
     409         192 :    call blacs_gridexit(my_blacs_ctxt)
     410         192 :    call mpi_finalize(mpierr)
     411             : #endif
     412         288 :    call EXIT(STATUS)
     413             : end
     414             : 
     415             : !-------------------------------------------------------------------------------

Generated by: LCOV version 1.12