/usr/share/perl5/MCE/Util.pm is in libmce-perl 1.608-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 | ###############################################################################
## ----------------------------------------------------------------------------
## MCE::Util - Utility functions for Many-Core Engine.
##
###############################################################################
package MCE::Util;
use strict;
use warnings;
## no critic (BuiltinFunctions::ProhibitStringyEval)
use Socket qw( PF_UNIX PF_UNSPEC SOCK_STREAM );
use base qw( Exporter );
use bytes;
our $VERSION = '1.608';
my $_is_winenv = ($^O eq 'cygwin' || $^O eq 'MSWin32') ? 1 : 0;
our $LF = "\012"; Internals::SvREADONLY($LF, 1);
our @EXPORT_OK = qw( $LF get_ncpu );
our %EXPORT_TAGS = ( all => \@EXPORT_OK );
###############################################################################
## ----------------------------------------------------------------------------
## The get_ncpu subroutine, largely adopted from Test::Smoke::Util.pm,
## returns the number of logical (online/active/enabled) CPU cores;
## never smaller than one.
##
## A warning is emitted to STDERR when it cannot recognize the operating
## system or the external command failed.
##
###############################################################################
my $g_ncpu;
sub get_ncpu {
return $g_ncpu if (defined $g_ncpu);
local $ENV{PATH} = "/usr/sbin:/sbin:/usr/bin:/bin:$ENV{PATH}";
$ENV{PATH} =~ /(.*)/; $ENV{PATH} = $1; ## Remove tainted'ness
my $ncpu = 1;
OS_CHECK: {
local $_ = lc $^O;
/linux/ && do {
my ($count, $fh);
if ( open $fh, '<', '/proc/stat' ) {
$count = grep { /^cpu\d/ } <$fh>;
close $fh;
}
$ncpu = $count if $count;
last OS_CHECK;
};
/bsd|darwin|dragonfly/ && do {
chomp( my @output = `sysctl -n hw.ncpu 2>/dev/null` );
$ncpu = $output[0] if @output;
last OS_CHECK;
};
/aix/ && do {
my @output = `pmcycles -m 2>/dev/null`;
if (@output) {
$ncpu = scalar @output;
} else {
@output = `lsdev -Cc processor -S Available 2>/dev/null`;
$ncpu = scalar @output if @output;
}
last OS_CHECK;
};
/gnu/ && do {
chomp( my @output = `nproc 2>/dev/null` );
$ncpu = $output[0] if @output;
last OS_CHECK;
};
/hp-?ux/ && do {
my $count = grep { /^processor/ } `ioscan -fkC processor 2>/dev/null`;
$ncpu = $count if $count;
last OS_CHECK;
};
/irix/ && do {
my @out = grep { /\s+processors?$/i } `hinv -c processor 2>/dev/null`;
$ncpu = (split ' ', $out[0])[0] if @out;
last OS_CHECK;
};
/osf|solaris|sunos|svr5|sco/ && do {
if (-x '/usr/sbin/psrinfo') {
my $count = grep { /on-?line/ } `psrinfo 2>/dev/null`;
$ncpu = $count if $count;
}
else {
my @output = grep { /^NumCPU = \d+/ } `uname -X 2>/dev/null`;
$ncpu = (split ' ', $output[0])[2] if @output;
}
last OS_CHECK;
};
/mswin|mingw|cygwin/ && do {
if (exists $ENV{NUMBER_OF_PROCESSORS}) {
$ncpu = $ENV{NUMBER_OF_PROCESSORS};
}
last OS_CHECK;
};
warn "MCE::Util::get_ncpu: command failed or unknown operating system\n";
}
$ncpu = 1 if (!$ncpu || $ncpu < 1);
return $g_ncpu = $ncpu;
}
###############################################################################
## ----------------------------------------------------------------------------
## Private methods.
##
###############################################################################
sub _destroy_sockets {
my ($_obj, @_params) = @_;
local ($!, $?);
for my $_p (@_params) {
if (defined $_obj->{$_p}) {
if (ref $_obj->{$_p} eq 'ARRAY') {
for my $_i (0 .. @{ $_obj->{$_p} } - 1) {
## an empty socket may not close immediately in Windows/Cygwin
syswrite $_obj->{$_p}->[$_i], '0' if ($_is_winenv); # hack
CORE::shutdown $_obj->{$_p}->[$_i], 2;
close $_obj->{$_p}->[$_i];
undef $_obj->{$_p}->[$_i];
}
}
else {
syswrite $_obj->{$_p}, '0' if ($_is_winenv); # ditto
CORE::shutdown $_obj->{$_p}, 2;
close $_obj->{$_p};
}
undef $_obj->{$_p};
}
}
return;
}
sub _make_socket_pair {
my ($_obj, $_r_sock, $_w_sock, $_i) = @_;
local $!; my $_old_hndl;
if (defined $_i) {
socketpair( $_obj->{$_r_sock}->[$_i], $_obj->{$_w_sock}->[$_i],
PF_UNIX, SOCK_STREAM, PF_UNSPEC ) or die "socketpair: $!\n";
binmode $_obj->{$_r_sock}->[$_i];
binmode $_obj->{$_w_sock}->[$_i];
## Autoflush handles.
$_old_hndl = select $_obj->{$_r_sock}->[$_i]; $| = 1;
select $_obj->{$_w_sock}->[$_i]; $| = 1;
}
else {
socketpair( $_obj->{$_r_sock}, $_obj->{$_w_sock},
PF_UNIX, SOCK_STREAM, PF_UNSPEC ) or die "socketpair: $!\n";
binmode $_obj->{$_r_sock};
binmode $_obj->{$_w_sock};
## Autoflush handles.
$_old_hndl = select $_obj->{$_r_sock}; $| = 1;
select $_obj->{$_w_sock}; $| = 1;
}
select $_old_hndl;
return;
}
sub _parse_max_workers {
my ($_max_workers) = @_;
@_ = ();
return $_max_workers unless (defined $_max_workers);
if ($_max_workers =~ /^auto(?:$|\s*([\-\+\/\*])\s*(.+)$)/i) {
my ($_ncpu_ul, $_ncpu);
$_ncpu_ul = $_ncpu = get_ncpu();
$_ncpu_ul = 8 if ($_ncpu_ul > 8);
if ($1 && $2) {
local $@; $_max_workers = eval "int($_ncpu_ul $1 $2 + 0.5)";
$_max_workers = 1 if (!$_max_workers || $_max_workers < 1);
$_max_workers = $_ncpu if ($_max_workers > $_ncpu);
}
else {
$_max_workers = $_ncpu_ul;
}
}
return $_max_workers;
}
sub _parse_chunk_size {
my ($_chunk_size, $_max_workers, $_params, $_input_data, $_array_size) = @_;
@_ = ();
return $_chunk_size if (!defined $_chunk_size || !defined $_max_workers);
if (defined $_params && exists $_params->{chunk_size}) {
$_chunk_size = $_params->{chunk_size};
}
if ($_chunk_size =~ /([0-9\.]+)K\z/i) {
$_chunk_size = int($1 * 1024 + 0.5);
}
elsif ($_chunk_size =~ /([0-9\.]+)M\z/i) {
$_chunk_size = int($1 * 1024 * 1024 + 0.5);
}
if ($_chunk_size eq 'auto') {
if ( (defined $_params && ref $_params->{input_data} eq 'CODE') ||
(defined $_input_data && ref $_input_data eq 'CODE')
) {
return 1;
}
my $_size = (defined $_input_data && ref $_input_data eq 'ARRAY')
? scalar @{ $_input_data } : $_array_size;
my $_is_file;
if (defined $_params && exists $_params->{sequence}) {
my ($_begin, $_end, $_step);
if (ref $_params->{sequence} eq 'HASH') {
$_begin = $_params->{sequence}->{begin};
$_end = $_params->{sequence}->{end};
$_step = $_params->{sequence}->{step} || 1;
}
else {
$_begin = $_params->{sequence}->[0];
$_end = $_params->{sequence}->[1];
$_step = $_params->{sequence}->[2] || 1;
}
if (!defined $_input_data && !$_array_size) {
$_size = abs($_end - $_begin) / $_step + 1;
}
}
elsif (defined $_params && exists $_params->{_file}) {
my $_ref = ref $_params->{_file};
if ($_ref eq 'SCALAR') {
$_size = length ${ $_params->{_file} };
} elsif ($_ref eq '') {
$_size = -s $_params->{_file};
} else {
$_size = 0; $_chunk_size = 245_760;
}
$_is_file = 1;
}
elsif (defined $_input_data) {
if (ref $_input_data eq 'GLOB' || ref($_input_data) =~ /^IO::/) {
$_is_file = 1; $_size = 0; $_chunk_size = 245_760;
}
elsif (ref $_input_data eq 'SCALAR') {
$_is_file = 1; $_size = length ${ $_input_data };
}
}
if (defined $_is_file) {
if ($_size) {
$_chunk_size = int($_size / $_max_workers / 24 + 0.5);
$_chunk_size = 4_194_304 if $_chunk_size > 4_194_304; ## 4M
$_chunk_size = 2 if $_chunk_size <= 8192;
}
}
else {
$_chunk_size = int($_size / $_max_workers / 24 + 0.5);
$_chunk_size = 8000 if $_chunk_size > 8000;
$_chunk_size = 2 if $_chunk_size < 2;
}
}
return $_chunk_size;
}
1;
__END__
###############################################################################
## ----------------------------------------------------------------------------
## Module usage.
##
###############################################################################
=head1 NAME
MCE::Util - Utility functions for Many-Core Engine
=head1 VERSION
This document describes MCE::Util version 1.608
=head1 SYNOPSIS
use MCE::Util;
=head1 DESCRIPTION
A utility module for MCE. Nothing is exported by default. Exportable is
get_ncpu.
=head2 get_ncpu()
Returns the number of logical (online/active/enabled) CPU cores; never smaller
than one.
my $ncpu = MCE::Util::get_ncpu();
Specifying 'auto' for max_workers calls MCE::Util::get_ncpu automatically.
MCE 1.521 sets an upper-limit when specifying 'auto'. The reason is mainly
to safeguard apps from spawning 100 workers on a box having 100 cores.
This is important for apps which are IO-bound.
use MCE;
## 'Auto' is the total # of logical cores (lcores) (8 maximum, MCE 1.521).
## The computed value will not exceed the # of logical cores on the box.
my $mce = MCE->new(
max_workers => 'auto', ## 1 on HW with 1-lcores; 2 on 2-lcores
max_workers => 16, ## 16 on HW with 4-lcores; 16 on 32-lcores
max_workers => 'auto', ## 4 on HW with 4-lcores; 8 on 16-lcores
max_workers => 'auto*1.5', ## 4 on HW with 4-lcores; 12 on 16-lcores
max_workers => 'auto*2.0', ## 4 on HW with 4-lcores; 16 on 16-lcores
max_workers => 'auto/2.0', ## 2 on HW with 4-lcores; 4 on 16-lcores
max_workers => 'auto+3', ## 4 on HW with 4-lcores; 11 on 16-lcores
max_workers => 'auto-1', ## 3 on HW with 4-lcores; 7 on 16-lcores
max_workers => MCE::Util::get_ncpu, ## run on all lcores
);
In summary:
1. Auto has an upper-limit of 8 in MCE 1.521 (# of lcores, 8 maximum)
2. Math can be applied with auto (*/+-) to change the upper limit
3. The computed value for auto will not exceed the total # of lcores
4. One can specify max_workers explicity to a hard value
5. MCE::Util::get_ncpu returns the actual # of lcores
=head1 ACKNOWLEDGEMENTS
The portable code for detecting the number of processors was adopted from
L<Test::Smoke::SysInfo|Test::Smoke::SysInfo>.
=head1 INDEX
L<MCE|MCE>
=head1 AUTHOR
Mario E. Roy, S<E<lt>marioeroy AT gmail DOT comE<gt>>
=cut
|