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
|
Source: libmce-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Florian Schlichting <fsfs@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: libscalar-list-utils-perl <!nocheck>,
libsereal-decoder-perl (>= 3.015) <!nocheck>,
libsereal-encoder-perl (>= 3.015) <!nocheck>,
libsocket-perl <!nocheck>,
libtest-simple-perl <!nocheck>,
perl
Standards-Version: 4.5.0
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libmce-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libmce-perl.git
Homepage: https://metacpan.org/release/MCE
Rules-Requires-Root: no
Package: libmce-perl
Architecture: all
Depends: ${misc:Depends},
${perl:Depends},
libscalar-list-utils-perl,
libsocket-perl
Recommends: libsereal-decoder-perl (>= 3.015),
libsereal-encoder-perl (>= 3.015)
Description: Many-Core Engine for Perl providing parallel processing capabilities
Many-core Engine (MCE) for Perl helps enable a new level of performance
by maximizing all available cores. MCE spawns a pool of workers and
therefore does not fork a new process per each element of data. Instead,
MCE follows a bank queuing model. Imagine the line being the data and
bank-tellers the parallel workers. MCE enhances that model by adding the
ability to chunk the next n elements from the input stream to the next
available worker.
.
Chunking and input data are optional in MCE. One may use MCE to run many
workers in parallel without specifying input data.
|