Changes between Initial Version and Version 1 of Ticket #831


Ignore:
Timestamp:
11/17/19 01:32:01 (5 years ago)
Author:
arango
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #831

    • Property ResolutionFixed
    • Property Status newclosed
  • Ticket #831 – Description

    initial v1  
    99}}}
    1010
    11 when using '''mp_reduce''' from '''distribute.F''' module.  Obviously, it is a bug in the compiler because the variable op_handle is a dummy argument to the module interface:
     11when using '''mp_reduce''' from '''distribute.F''' module.  It is a bug in the '''ifort''' compiler because the variable op_handle is a dummy argument to the module interface:
    1212
    1313{{{
     
    2323}}}
    2424
    25 An easy solution is to rename the routine argument from '''op_handle''' to '''handle_op''' in '''distribute.F'''.  The compiler thinks that the variable is was declared in the module part.
     25An easy solution is to rename the routine argument from '''op_handle''' to '''handle_op''' in '''distribute.F'''.  The compiler thinks that the variable is declared in the module part. Anyway, it a simple variable rename that makes the compiling more robust.