From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.3 required=5.0 tests=BAYES_00, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,419864ed91cc937d X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news2.google.com!Xl.tags.giganews.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local2.nntp.dca.giganews.com!nntp.bt.com!news.bt.com.POSTED!not-for-mail NNTP-Posting-Date: Sun, 29 Aug 2010 10:07:05 -0500 From: Brian Drummond Newsgroups: comp.lang.ada Subject: Re: heap size exceeded for large matrices Date: Sun, 29 Aug 2010 16:14:52 +0100 Reply-To: brian@shapes.demon.co.uk Message-ID: References: <14007b1b-c290-4c73-a0ec-d3c5195b83d4@t20g2000yqa.googlegroups.com> <4c7a360b$0$10227$ba4acef3@reader.news.orange.fr> X-Newsreader: Forte Agent 1.7/32.534 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Usenet-Provider: http://www.giganews.com X-AuthenticatedUsername: NoAuthUser X-Trace: sv3-bY0BjwQovXBKXtTNRm8wlYnBaGK83SnKQKPzAK23YZvpwVS8cWu9+0Cx17iSYYAfjqa7f4AnVTfFJVk!AB+3nSE2c2se7DBEG8YCs78RJJR0LtODCa5oMpFJfm2/FYmIeDTGwuSR9/LBsn6ZsTo5WB5fNTah!Ztc= X-Complaints-To: abuse@btinternet.com X-DMCA-Complaints-To: abuse@btinternet.com X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.40 Xref: g2news1.google.com comp.lang.ada:13815 Date: 2010-08-29T16:14:52+01:00 List-Id: On Sun, 29 Aug 2010 12:27:37 +0200, Pascal Obry wrote: >John, > >> I wish to process both real and complex large matrices eg (1..10000, >> 1..10000) >> I have no difficulty in increasing the storage size of a task. >> I cannot do the same for matrices within a procedure which reports >> that the heap is exceeded. > >You probably mean stack size and not heap size. In that case you need to >add the proper linker option to increase the stack size for the application. > >Pascal. I have had trouble with this in the past - the documented linker options apparently didn't work (around the 2008 timeframe - may not still be true) and Pragma Storage_Size only worked for new tasks, not the main program.. I resorted to dynamic allocation on the heap, and renaming to hide the pointer dereference. So, given my_array_type is array (positive range <>, positive range <>) of float; I replaced my_array: my_array_type (1..10000, 1..10000); with my_array_ptr : access my_array_type := new my_array_type (1..10000, 1..10000); my_array : my_array_type renames my_array_ptr.all; The rename meant I didn't have to rewrite anything else in the application. - Brian