diff --git a/doc/release_new_version b/doc/release_new_version index 8fbe192d..2be4fafc 100644 --- a/doc/release_new_version +++ b/doc/release_new_version @@ -171,44 +171,15 @@ cc:Sandro Cazzaniga , Ryoichiro Suzuki , Jesse Alama -Subject: GNU Parallel 20120522 ('Hollande') released +Subject: GNU Parallel 20120622 ('Thailand') released -GNU Parallel 20120522 ('Hollande') has been released. It is +GNU Parallel 20120622 ('Thailand') has been released. It is available for download at: http://ftp.gnu.org/gnu/parallel/ New in this release: -* Timings in --joblog now with milliseconds. - -* Thesis using GNU Parallel (correctly cited; hooray!). - http://scholarworks.sjsu.edu/etd_projects/222/ - -* Package for AIX. - http://www.perzl.org/aix/index.php?n=Main.Parallel - -* Prokka uses GNU Parallel. - http://bioinformatics.net.au/prokka-manual.html - -* GNU Parallel was presented at MUUG. - http://muug.mb.ca/blog/meetings/2012/05/09/may-8th-2012-rtfm-gnu-parallel1/ - -* Blog post: Manipulating many or large files with GNU parallel. - http://compbiously.blogspot.com/2012/05/manipulating-many-or-large-files-with.html - -* Blog post: Running commands in parallel using bash. - http://blog.michaelboman.org/2012/04/running-commands-in-parallel-using-bash.html - -* Blog post: Efficient log processing. - http://www.francoismaillet.com/blog/?p=399 - -* Blog post about GNU Parallel and Amazon EC2. - http://blog.kevinformatics.com/post/4970574713/interested-in-your-experience-using-gnu-parallel-in - -* Blog post in Hungarian. - http://commandline.blog.hu/2012/05/03/gnu_parallel - -* Popularity of GNU Parallel in Debian explodes. - http://qa.debian.org/popcon-graph.php?packages=parallel +* biotoolbox uses GNU Parallel. + https://code.google.com/p/biotoolbox/wiki/Pod_novo_wrapper * Bug fixes and man page updates. diff --git a/src/parallel b/src/parallel index 7bb84934..ac264e6d 100755 --- a/src/parallel +++ b/src/parallel @@ -2588,7 +2588,7 @@ sub no_of_cpus { local $/="\n"; # If delimiter is set, then $/ will be wrong my $no_of_cpus; if ($^O eq 'linux') { - $no_of_cpus = no_of_cpus_gnu_linux(); + $no_of_cpus = no_of_cpus_gnu_linux() || no_of_cores_gnu_linux(); } elsif ($^O eq 'freebsd') { $no_of_cpus = no_of_cpus_freebsd(); } elsif ($^O eq 'solaris') {