Path: utzoo!attcan!uunet!know!zaphod.mps.ohio-state.edu!wuarchive!emory!hubcap!Scott From: galuska@udel.edu (Scott Galuska) Newsgroups: comp.parallel Subject: Re: C 3L utility Message-ID: <11263@hubcap.clemson.edu> Date: 30 Oct 90 17:57:23 GMT References: <11259@hubcap.clemson.edu> Sender: fpst@hubcap.clemson.edu Organization: University of Delaware Lines: 19 Approved: parallel@hubcap.clemson.edu In article <11259@hubcap.clemson.edu> touzene@alize.imag.fr () writes: >There are some problems in using the t8c, t8ctask, t8cstask of 3L >Parallel C V2.1 Release. When large amount of memory is declared >as a global data for a task, the time taken by those utilities is >very long. >In waiting your suggetions to overcome that trouble, many thanks. One way to overcome the problem is NOT to declare a large amount of memory as global data! I know, I have had the same problem as you. What I did was to allocate the global data during run-time, and declare the pointer to that allocated memory in global data. That works out quite well- especially since both global data and run-time allocated data are both placed in the heap portion of the code. -- Scott Galuska Dept. of Computer & Info. Science Univ of Delaware galuska@dewey.udel.edu