From: <ai...@us...> - 2011-11-26 20:34:51
|
Revision: 12052 http://plplot.svn.sourceforge.net/plplot/?rev=12052&view=rev Author: airwin Date: 2011-11-26 20:34:45 +0000 (Sat, 26 Nov 2011) Log Message: ----------- By default use -j8 parallel build option rather than -j4. It doesn't seem to slow anything down to have all those tasks contending for my two processors (and I think that would also pertain to the single processor case), and there may be an advantage because if some process is waiting for i/o, others can use the cpu(s). In any case, with -j8, the "top" application shows %wa almost always at 0 per cent, i.e., the cpu's are kept busy with no pauses waiting for i/o to finish. That is the ideal result. Modified Paths: -------------- trunk/scripts/comprehensive_test.sh Modified: trunk/scripts/comprehensive_test.sh =================================================================== --- trunk/scripts/comprehensive_test.sh 2011-11-26 07:23:37 UTC (rev 12051) +++ trunk/scripts/comprehensive_test.sh 2011-11-26 20:34:45 UTC (rev 12052) @@ -254,8 +254,8 @@ 'MinGW Makefiles' where it is necessary to limit the PATH for the cmake invocation to exclude MSYS. Otherwise this option is completely ignored)] - [--ctest_command (defaults to 'ctest -j4')] - [--build_command (defaults to 'make -j4')] + [--ctest_command (defaults to 'ctest -j8')] + [--build_command (defaults to 'make -j8')] The next four control what kind of builds and tests are done. [--cmake_added_options (defaults to none, but can be used to specify any @@ -304,8 +304,8 @@ generator_string="Unix Makefiles" path_excluding_msys= -ctest_command="ctest -j4" -build_command="make -j4" +ctest_command="ctest -j8" +build_command="make -j8" cmake_added_options= do_shared=yes This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |