On 2010-03-03 13:13-0800 David MacMahon wrote:

> Hi, Alan,
>
> On Mar 3, 2010, at 12:05 , Alan W. Irwin wrote:
>
>> For source trees with and without the patch
>> 
>> time make -j4 -k test_noninteractive >& make_testnoninteractive.out
>> time make -j4 -k test_interactive >& make_testinteractive.out
>
> I assume you would like, for example,...
>
> make && time make -k test_noninteractive

In general,

make -j4 -k test_noninteractive >& make_testnoninteractive.out
and
make -j4 -k test_interactive >& make_testinteractive.out

are preferred when they are being done separately since they just build only
the necessary unbuilt dependencies.

However, to improve the precision of the timing, I agree with you that you
could build everything first.  But I would do it like this.

make -j4 all >& make_all.out

then follow with

time make -j4 -k test_noninteractive >& make_testnoninteractive.out
and
time make -j4 -k test_interactive >& make_testinteractive.out

Of course, for any of these make invocations, add VERBOSE=1 if you run
into into issues.

> [...] Tonight I will rolls all of these patches into one patch that can be 
> applied 
> to svn/trunk and send it out.

Thanks.

>
>> Would you be also willing to do the above tests on Mac OS X with and 
>> without
>> your corrected patch?  If so, and assuming there are no regressions please
>> send me a column following the format in README.release describing the 
>> test.
>
> Yes, I will do this both to provide the results and to make sure no further 
> corrections are needed.  I think I still need to add a plfshades or 
> plfshade1...

Thanks.

Alan
__________________________
Alan W. Irwin

Astronomical research affiliation with Department of Physics and Astronomy,
University of Victoria (astrowww.phys.uvic.ca).

Programming affiliations with the FreeEOS equation-of-state implementation
for stellar interiors (freeeos.sf.net); PLplot scientific plotting software
package (plplot.org); the libLASi project (unifont.org/lasi); the Loads of
Linux Links project (loll.sf.net); and the Linux Brochure Project
(lbproject.sf.net).
__________________________

Linux-powered Science
__________________________

------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Plplot-devel mailing list
Plplot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/plplot-devel

Reply via email to