Changes between Version 5 and Version 6 of PortageGpu


Ignore:
Timestamp:
Apr 29, 2022, 5:28:39 PM (2 years ago)
Author:
Laurent Fairhead
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PortageGpu

    v5 v6  
    1919   * déclarer en {{{ !$acc data copyout (...) }}} les tableaux en argument qui sont {{{ intent(OUT) }}}
    2020   * déclarer en {{{ !$acc data copy (...) }}} les tableaux en argument qui sont {{{ intent(INOUT) }}}
     21* Pour les variables de modules:
     22   * On peut rajouter systématiquement après un {{{ !$OMP THREADPRIVATE(...)}}} le {{{!$acc declare create()}}} correspondant, e.g.
     23{{{
     24       REAL, SAVE, ALLOCATABLE :: t_seri(:,:), q_seri(:,:)
     25      !$OMP THREADPRIVATE(t_seri, q_seri)
     26      !$acc declare create(t_seri, q_seri)
     27}}}
    2128
    2229[[BR]]