Recent content by alcantara_20

  1. A

    Fortran Troubleshooting Fortran Errors: How to Fix Code Compilation Issues

    Your suggestion really help me. Thank you very much
  2. A

    Fortran Troubleshooting Fortran Errors: How to Fix Code Compilation Issues

    I still can't find the solution. I post my code and tried your solution but still can't find the solution of my problem. This the main program of my code : READ (nin,*) READ (nin,*) n, nrhs lda = n ldb = n ALLOCATE (a(lda,n),b(ldb,nrhs),ipiv(n))...
  3. A

    Fortran Troubleshooting Fortran Errors: How to Fix Code Compilation Issues

    I tried your suggestion moreover I found the new documentation for f07aef but I still can't find the solution.
  4. A

    Fortran Troubleshooting Fortran Errors: How to Fix Code Compilation Issues

    Yes I still figured out the problem. Because I tried check again and I still got the same error massage.
  5. A

    Fortran Troubleshooting Fortran Errors: How to Fix Code Compilation Issues

    I still figure out the error base from your suggestion Mark44
  6. A

    Fortran Troubleshooting Fortran Errors: How to Fix Code Compilation Issues

    I forgot that I'm not use division. When I try put for if else end if, I still get error. This is my line code: Factorize A Factorize A call cpu_time(start) CALL dgetrf(n,n,a,lda,ipiv,info) IF (info==0) THEN ...
  7. A

    Fortran Troubleshooting Fortran Errors: How to Fix Code Compilation Issues

    Yes I doing any division in my code. I tried to put flags in my code the error messages still same.
  8. A

    Fortran Troubleshooting Fortran Errors: How to Fix Code Compilation Issues

    Dear all, I'm write code in Fortran language when compile my program I got error message : forrtl: severe (71): integer divide by zero Image PC Routine Line Source f0511 00000000007536A5 Unknown...
Back
Top