forbenchmark.f90 Source File


This file depends on

sourcefile~~forbenchmark.f90~~EfferentGraph sourcefile~forbenchmark.f90 forbenchmark.f90 sourcefile~forbenchmark_coarray.f90 forbenchmark_coarray.f90 sourcefile~forbenchmark.f90->sourcefile~forbenchmark_coarray.f90 sourcefile~forbenchmark_default.f90 forbenchmark_default.f90 sourcefile~forbenchmark.f90->sourcefile~forbenchmark_default.f90

Files dependent on this one

sourcefile~~forbenchmark.f90~~AfferentGraph sourcefile~forbenchmark.f90 forbenchmark.f90 sourcefile~demo.f90 demo.f90 sourcefile~demo.f90->sourcefile~forbenchmark.f90

Source Code

module forbenchmark
   !! author: Seyed Ali Ghasemi
   !! license: BSD 3-Clause License
   !! This module is used to switch between the default and coarray versions of the benchmark
   !!

#if defined(USE_COARRAY)
   use forbenchmark_coarray
#else
   use forbenchmark_default
#endif

   public benchmark

end module forbenchmark