Ignore:
Timestamp:
Aug 21, 2019 2:37:54 PM (5 years ago)
Author:
scharf
Message:

removed comments in 'Former revisions' section that are older than 01.01.2019

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/poisfft_mod.f90

    r3690 r4180  
    2727! OpenACC port for SPEC
    2828!
    29 ! 3241 2018-09-12 15:02:00Z raasch
    30 ! unused variables removed,
    31 ! declarations of omp_get_thread_num now as omp-directive
    32 !
    33 ! 2718 2018-01-02 08:49:38Z maronga
    34 ! Corrected "Former revisions" section
    35 !
    36 ! 2696 2017-12-14 17:12:51Z kanani
    37 ! Change in file header (GPL part)
    38 !
    39 ! 2300 2017-06-29 13:31:14Z raasch
    40 ! settings depending on host variable removed or replaced by loop_optimization
    41 !
    42 ! 2119 2017-01-17 16:51:50Z raasch
    43 !
    44 ! 2118 2017-01-17 16:38:49Z raasch
    45 ! OpenACC directives and related code removed
    46 !
    47 ! 2000 2016-08-20 18:09:15Z knoop
    48 ! Forced header and separation lines into 80 columns
    49 !
    50 ! 1850 2016-04-08 13:29:27Z maronga
    51 ! Module renamed
    52 !
    53 !
    54 ! 1804 2016-04-05 16:30:18Z maronga
    55 ! Removed code for parameter file check (__check)
    56 !
    57 ! 1682 2015-10-07 23:56:08Z knoop
    58 ! Code annotations made doxygen readable
    59 !
    60 ! 1482 2014-10-18 12:34:45Z raasch
    61 ! use 2d-decomposition, if accelerator boards are used
    62 !
    63 ! 1406 2014-05-16 13:47:01Z raasch
    64 ! bugfix for pgi 14.4: declare create moved after array declaration
    65 !
    66 ! 1320 2014-03-20 08:40:49Z raasch
    67 ! ONLY-attribute added to USE-statements,
    68 ! kind-parameters added to all INTEGER and REAL declaration statements,
    69 ! kinds are defined in new module kinds,
    70 ! old module precision_kind is removed,
    71 ! revision history before 2012 removed,
    72 ! comment fields (!:) to be used for variable explanations added to
    73 ! all variable declaration statements
    74 !
    75 ! 1318 2014-03-17 13:35:16Z raasch
    76 ! module interfaces removed
    77 !
    78 ! 1306 2014-03-13 14:30:59Z raasch
    79 ! openmp sections removed from the overlap branch,
    80 ! second argument removed from parameter list
    81 !
    82 ! 1216 2013-08-26 09:31:42Z raasch
    83 ! resorting of arrays moved to separate routines resort_for_...,
    84 ! one argument, used as temporary work array, removed from all transpose
    85 ! routines
    86 ! overlapping fft / transposition implemented
    87 !
    88 ! 1212 2013-08-15 08:46:27Z raasch
    89 ! tridia routines moved to seperate module tridia_solver
    90 !
    91 ! 1208 2013-08-13 06:41:49Z raasch
    92 ! acc-update clauses added for "ar" so that ffts other than cufft can also be
    93 ! used (although they are not ported and will give a poor performance)
    94 !
    95 ! 1111 2013-03-08 23:54:10Z raasch
    96 ! further openACC porting of non-parallel (MPI) branch:
    97 ! tridiagonal routines split into extermal subroutines (instead using CONTAINS),
    98 ! no distinction between parallel/non-parallel in poisfft and tridia any more,
    99 ! tridia routines moved to end of file because of probable bug in PGI compiler 12.5
    100 ! (otherwise "invalid device function" is indicated during runtime),
    101 ! optimization of tridia routines: constant elements and coefficients of tri are
    102 ! stored in seperate arrays ddzuw and tric, last dimension of tri reduced from 5
    103 ! to 2,
    104 ! poisfft_init is now called internally from poisfft, maketri is called from
    105 ! poisfft_init,
    106 ! ibc_p_b = 2 removed
    107 !
    108 ! 1106 2013-03-04 05:31:38Z raasch
    109 ! routines fftx, ffty, fftxp, fftyp removed, calls replaced by fft_x, fft_y,
    110 ! in the 1D-decomposition routines fft_x, ffty are replaced by fft_x_1d,
    111 ! fft_y_1d
    112 !
    113 ! 1103 2013-02-20 02:15:53Z raasch
    114 ! tri, ar, and ar1 arguments in tridia-routines (2d) are removed because they
    115 ! sometimes cause segmentation faults with intel 12.1 compiler
    116 !
    117 ! 1092 2013-02-02 11:24:22Z raasch
    118 ! unused variables removed
    119 !
    120 ! 1036 2012-10-22 13:43:42Z raasch
    121 ! code put under GPL (PALM 3.9)
    122 !
    123 ! 2012-09-21 07:03:55Z raasch
    124 ! FLOAT type conversion replaced by REAL
    125 !
    126 ! 1003 2012-09-14 14:35:53Z raasch
    127 ! indices nxa, nya, etc. replaced by nx, ny, etc.
    128 !
    129 ! 940 2012-07-09 14:31:00Z raasch
    130 ! special handling of tri-array as an argument in tridia_1dd routines switched
    131 ! off because it caused segmentation faults with intel 12.1 compiler
    132 !
    133 ! 877 2012-04-03 11:21:44Z suehring
    134 ! Bugfix: Avoid divisions by zero in case of using a 'neumann' bc for the
    135 ! pressure at the top of the model domain.
    136 !
    137 ! 809 2012-01-30 13:32:58Z maronga
    138 ! Bugfix: replaced .AND. and .NOT. with && and ! in the preprocessor directives
    139 !
    140 ! 807 2012-01-25 11:53:51Z maronga
    141 ! New cpp directive "__check" implemented which is used by check_namelist_files
    142 ! (most of the code is unneeded by check_namelist_files).
    143 !
    144 ! Revision 1.1  1997/07/24 11:24:14  raasch
    145 ! Initial revision
    146 !
    14729!
    14830! Description:
Note: See TracChangeset for help on using the changeset viewer.