Re: Error message

2022-10-17 Thread Salvatore Filippone via Fortran
-Andrew > > On Monday, October 17, 2022 2:28:33 AM PDT Salvatore Filippone via Fortran > wrote: > > Dear all > > I am getting the following error message, which I find quite confusing > > > >68 | use amg_prec_mod > > > > | 1 >

Error message

2022-10-17 Thread Salvatore Filippone via Fortran
Dear all I am getting the following error message, which I find quite confusing 68 | use amg_prec_mod | 1 Fatal Error: Mismatch in components of derived type '__vtype_psb_c_par_mat_mod_Psb_c_par_mat_type' from 'psb_c_par_mat_mod' at (1): expecting 'bldext', but got 'aclsum' compil

Re: FINAL subroutines

2022-01-28 Thread Salvatore Filippone via Fortran
>>> >>> I'll keep an eye on the state of the branch. By and large, release >>> occurs 3-4 months after the start of stage 4. I will leave 2 months maximum. >>> >>> Best regards >>> >>> Paul >>> >>> >>> On

Re: FINAL subroutines

2022-01-26 Thread Salvatore Filippone via Fortran
Is there any reason these patches can not be applied and use this test >> as a test case? >> >> Regards, >> >> Jerry >> >> On 1/24/22 8:11 AM, Salvatore Filippone via Fortran wrote: >> > Thanks a lot >> > (yes, I suspected both gfortran and

Re: FINAL subroutines

2022-01-24 Thread Salvatore Filippone via Fortran
; memory). > > Your code compiled with gfortran (with Paul's patches in place) shows no > errors or leaks from valgrind. > > So, in summary, in this case I think the current gfortran is missing some > finalizations (which are fixed by Paul's patches), and ifort is likely >

Re: FINAL subroutines

2022-01-24 Thread Salvatore Filippone via Fortran
And here is the code embedded as text sorry about sending an attachment that was purged - testfinal.f90 - module test_type_mod type :: my_test_type integer, allocatable :: i contains final :: delete_test_type end type my_test_t

FINAL subroutines

2022-01-24 Thread Salvatore Filippone via Fortran
Hi all The attached code compiles and runs fine under both GNU and Intel, but it produces different results, in particular the FINAL subroutine is invoked just once with GNU, three times with Intel. It seems to me that they cannot both be right; I am not sure what the standard is mandating in this