Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. insung

    Large Array as a Subroutine Input/Output

    Thank you for so many kind replies. So this memory problem is nothing to do with subroutine then. I must optimize main routine maybe.
  2. insung

    Large Array as a Subroutine Input/Output

    Either "SUBROUTINE MySubroutine(isize,array) IMPLICIT NONE INTEGER, INTENT(IN) :: isize REAL, DIMENSION(isize), INTENT(INOUT) :: array" or "REAL, DIMENSION(:), INTENT(INOUT) :: array" do not work. If I specify the size of array, it gives errors due to memory restriction. One possible solution...
  3. insung

    Large Array as a Subroutine Input/Output

    I have a large array which need to be allocatable due to its size. (Allocatable memory can exeed 2GB in my machine.) And this array need to be input and output of some subroutine. If I declare in the subroutine "REAL, DIMENSION(:), INTENT(INOUT), ALLOCATABLE :: array" then error occurs. (This...

Part and Inventory Search

Back
Top